/* ============================================================
   KUMO IZAKAYA — Brunswick East. POC by Hey Sage.
   warm black / champagne gold / DM Mono. kumo means cloud.
   ============================================================ */

:root {
  --char: #0a0908;
  --char-2: #131110;
  --char-3: #1b1815;
  --gold: #c9ab81;
  --gold-bright: #e0c69c;
  --white: #ffffff;
  --cream: #ffffff;   /* primary text: white */
  --soft: #e7e6e4;    /* secondary text */
  --muted: #c9c7c4;
  --faint: #9d9b97;
  --line: rgba(201, 171, 129, 0.18);
  --line-soft: rgba(201, 171, 129, 0.1);
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 80px;
  --r-lg: 16px;
  --r-md: 10px;
  --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(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--char);
  -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, 92vw); margin-inline: auto; }

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

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

/* film grain, static and quiet */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 300;
  background: var(--gold);
  color: var(--char);
  padding: 10px 18px;
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--char);
  display: grid;
  place-items: center;
  transition: transform 0.8s var(--ease-out), visibility 0s 0.8s;
}
.loader-inner { text-align: center; }
.loader-kanji {
  display: block;
  font-family: var(--serif);
  font-size: clamp(64px, 12vw, 110px);
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  transform: translateY(12px);
  animation: loaderKanji 0.8s var(--ease-out) 0.1s forwards;
}
.loader-word {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  animation: loaderFade 0.6s ease 0.4s forwards;
}
.loader-word em { font-style: normal; color: var(--gold); }
.loader-line {
  display: block;
  width: 110px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--line);
  overflow: hidden;
}
.loader-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderLine 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 { transform: translateY(-100%); visibility: hidden; }
body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-gold { background: var(--gold); color: var(--char); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-line { border-color: var(--line); color: var(--cream); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav-in {
  width: min(1300px, 94vw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-brand img { width: 92px; height: 46px; transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out); }
.nav.is-scrolled .nav-brand img { width: 76px; height: 38px; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s 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.35s var(--ease-out);
}
.nav-links a:hover { color: var(--gold-bright); }
.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);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), top 0.35s 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: 95;
  background: var(--char);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
  overflow: hidden;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity 0.4s ease; }
.mm-link {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1.6;
  color: var(--cream);
  text-decoration: none;
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.55s ease, color 0.2s ease;
}
.mm-link:hover { color: var(--gold-bright); }
.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; }
body.menu-open .mm-link:nth-child(7) { transition-delay: 0.42s; }
.mm-foot {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 13.5px;
  opacity: 0;
  transition: opacity 0.55s ease 0.48s;
}
body.menu-open .mm-foot { opacity: 1; }
.mm-foot a { color: var(--cream); text-decoration: none; }
.mm-kanji {
  position: absolute;
  right: -4vw;
  bottom: -6vh;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 26vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 171, 129, 0.12);
  pointer-events: none;
  user-select: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-still,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 30s var(--ease-soft) infinite alternate;
}
.hero-video { opacity: 0; transition: opacity 1.2s ease; }
.hero-video.is-playing { opacity: 1; }
@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.35) 46%, rgba(10, 9, 8, 0.45)),
    linear-gradient(to right, rgba(10, 9, 8, 0.5), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 40px) 0 96px;
}
.hero-over {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-over i { width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 17ch;
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(10, 9, 8, 0.5);
}
.hero-sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--soft);
  margin-bottom: 34px;
  text-shadow: 0 1px 20px rgba(10, 9, 8, 0.6);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-ctas .btn-line { background: rgba(10, 9, 8, 0.35); backdrop-filter: blur(4px); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: #d3d1ce;
}
.hero-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 5vw;
  z-index: 1;
  width: 1px;
  height: 68px;
  background: var(--line);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollcue 2.2s var(--ease-soft) infinite;
}
@keyframes scrollcue {
  0% { top: -40%; }
  100% { top: 110%; }
}

/* ---------- Reels carousel ---------- */
.reels {
  padding: 96px 0 84px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.reels-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.reels-intro h2 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 18ch;
}
.reels-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.reel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out),
              color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.reel-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.reel-arrow:hover { border-color: var(--gold); background: var(--gold); color: var(--char); }
.reel-arrow[disabled] { opacity: 0.28; pointer-events: none; }

.reels-track {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px max(4vw, calc((100vw - min(1180px, 92vw)) / 2)) 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reels-track::-webkit-scrollbar { display: none; }
.reels-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.reel {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 372px);
  scroll-snap-align: center;
}
.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: var(--char-2);
  transition: border-color 0.5s var(--ease-out), transform 0.6s var(--ease-out),
              box-shadow 0.6s var(--ease-out);
}
.reel-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  filter: saturate(0.92);
  transition: opacity 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.reel.is-active .reel-frame {
  border-color: var(--line);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.reel.is-active .reel-video { opacity: 1; filter: none; }

.reel-shade {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.5) 0%, rgba(10, 9, 8, 0) 42%);
  opacity: 0.9;
}
.reel-dur {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.reel-sound {
  position: absolute; right: 10px; bottom: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 9, 8, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.reel.is-active .reel-sound { opacity: 1; transform: none; }
.reel-sound:hover { border-color: var(--gold); color: var(--gold-bright); }
.reel-sound svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.reel-sound .ic-on { display: none; }
.reel-sound[aria-pressed="true"] .ic-on { display: block; }
.reel-sound[aria-pressed="true"] .ic-off { display: none; }

.reel-cap {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0.62;
  transition: opacity 0.5s var(--ease-out);
}
.reel.is-active .reel-cap { opacity: 1; }
.reel-cap b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--gold);
}
.reel-cap span { font-size: 14px; color: var(--soft); line-height: 1.45; }

.reels-foot {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.reels-dots { display: none; gap: 8px; }
.reel-dot {
  width: 26px; height: 2px;
  border: 0; padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.4s var(--ease-out), width 0.4s var(--ease-out);
}
.reel-dot:hover { background: rgba(255, 255, 255, 0.5); }
.reel-dot.is-active { background: var(--gold); width: 40px; }
.reels-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--faint);
}

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

.marquee,
.footer-marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--char);
  overflow: hidden;
  padding: 14px 0;
}
.footer-marquee { border-bottom: 0; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track.slow { animation-duration: 55s; }
.marquee-track span {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  color: var(--faint);
  white-space: nowrap;
}
.marquee-track b { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ---------- Shared ---------- */

.overline {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-head { margin-bottom: 48px; max-width: 60ch; }
.sec-head h2,
.xp-copy h2,
.fn-copy h2,
.tk-copy h2 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.sec-note { margin-top: 16px; color: var(--muted); font-size: 16px; max-width: 66ch; }
.lede { font-size: clamp(16.5px, 1.9vw, 19px); line-height: 1.7; color: var(--soft); }
.body { color: var(--muted); }

/* ---------- Experience ---------- */

.experience {
  position: relative;
  overflow: hidden;
  background: var(--char-2);
}
.xp-kanji {
  position: absolute;
  top: -4%;
  right: -6%;
  font-family: var(--serif);
  font-size: clamp(300px, 42vw, 620px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 171, 129, 0.08);
  pointer-events: none;
  user-select: none;
}
.xp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(88px, 11vw, 140px) 0;
}
.xp-copy h2 { margin-bottom: 24px; max-width: 20ch; }
.xp-copy .lede { margin-bottom: 18px; }
.xp-copy .body { max-width: 54ch; }
.xp-facts {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.xp-facts b {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--gold);
}
.xp-facts span { font-size: 13px; color: var(--muted); }

.xp-media { position: relative; min-height: 380px; }
.xp-img-main {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.8);
}
.xp-img-back {
  position: absolute;
  z-index: 1;
  right: -6%;
  bottom: -18%;
  width: 52%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.7);
}

/* ---------- Menus ---------- */

.menus { padding: clamp(88px, 11vw, 140px) 0; background: var(--char); }

.mtabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.mtab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.mtab:hover { color: var(--gold-bright); }
.mtab.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.mpanel { animation: panelIn 0.5s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.menu-grid {
  columns: 2;
  column-gap: clamp(36px, 5vw, 72px);
}
.menu-cat {
  break-inside: avoid;
  margin-bottom: 46px;
}
.cat-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.cat-head h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.02em;
  color: var(--gold);
}
.cat-head h3 small {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-left: 8px;
}
.menu-cat li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 15.5px;
}
.menu-cat li span { color: var(--soft); }
.menu-cat li span em { font-style: normal; font-size: 12.5px; color: var(--faint); display: block; }
.menu-cat li i { flex: 1; border-bottom: 1px dotted rgba(201, 171, 129, 0.28); transform: translateY(-4px); min-width: 24px; }
.menu-cat li b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 15px;
  color: var(--cream);
  white-space: nowrap;
}
.menu-foot {
  margin-top: 12px;
  color: var(--faint);
  font-size: 13.5px;
  max-width: 74ch;
}
.menu-foot a { color: var(--muted); }
.menu-foot a:hover { color: var(--gold-bright); }

/* omakase */
.oma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}
.oma-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--char-2);
}
.oma-card-feature { border-color: var(--gold); background: var(--char-3); }
.oma-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.oma-card h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
}
.oma-price {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 26px;
  color: var(--gold);
}
.oma-price small { font-size: 13px; color: var(--muted); }
.oma-note { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.oma-card ul { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.oma-card li {
  font-size: 14.5px;
  color: var(--soft);
  padding: 5px 0 5px 16px;
  position: relative;
}
.oma-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.oma-track { margin-top: 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; color: var(--faint); }

/* drinks */
.drinks-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.drinks-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.8);
  aspect-ratio: 3 / 4;
  max-width: 440px;
}
.drinks-card img,
.drinks-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drinks-card video { opacity: 0; transition: opacity 1s ease; }
.drinks-card video.is-playing { opacity: 1; }
.drinks-copy h3 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 20px;
}
.drinks-copy .lede { margin-bottom: 16px; }
.drinks-copy .body { max-width: 50ch; }
.drinks-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- Venue explorer ---------- */

.venue { padding: clamp(88px, 11vw, 140px) 0; background: var(--char-2); }
.space-explorer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.space-list { display: flex; flex-direction: column; }
.space-btn {
  appearance: none;
  background: none;
  border: 0;
  border-top: 1px solid var(--line-soft);
  text-align: left;
  padding: 18px 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.space-btn:last-child { border-bottom: 1px solid var(--line-soft); }
.space-btn b {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--muted);
  transition: color 0.3s ease, transform 0.4s var(--ease-out);
}
.space-btn span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--faint);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.4s ease, margin 0.4s ease;
  max-width: 44ch;
}
.space-btn:hover b { color: var(--gold-bright); }
.space-btn.is-active { background: rgba(201, 171, 129, 0.05); }
.space-btn.is-active b { color: var(--gold); transform: translateX(6px); }
.space-btn.is-active span { max-height: 90px; opacity: 1; }
.space-pane {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 420px;
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.8);
}
.space-pane figure {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0s 0.7s;
}
.space-pane figure.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease;
}
.space-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Gallery ---------- */

.gallery {
  padding: clamp(88px, 11vw, 140px) 0;
  background: var(--char-2);
  border-top: 1px solid var(--line-soft);
}
.gal-grid {
  --gap: clamp(12px, 1.6vw, 18px);
  /* One square unit = one column, so every tile is a whole number of units and
     the four bands below always tile the grid exactly. No ragged bottom edge. */
  --unit: calc((min(1180px, 92vw) - 5 * var(--gap)) / 6);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: var(--unit);
  gap: var(--gap);
}
/* The tile is always painted. Wrapping these in the clip-path reveal clipped
   the border and background too, so ten lazy images left a ~2000px black void
   until every one had loaded and revealed. The frame now shows immediately and
   only the photograph fades in. */
.gal-item {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--char-3);
  position: relative;
}
.gal-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(0.94);
}
.gal-item:hover img { transform: scale(1.035); filter: saturate(1); }

/* Only applied once JS is running, so images stay visible if it never does. */
.gal-grid.js-fade .gal-item img { opacity: 0; }
.gal-grid.js-fade .gal-item img.is-loaded {
  opacity: 1;
  transition: opacity 0.7s var(--ease-out), transform 1.1s var(--ease-out), filter 0.6s var(--ease-out);
}

/* bands of 6 columns: 3+3, 2+2+2, 3+3, 2+2+2 */
.g-wide { grid-column: span 3; grid-row: span 2; }
.g-tall { grid-column: span 2; grid-row: span 3; }


/* ---------- Events ---------- */

.events { padding: clamp(88px, 11vw, 140px) 0; background: var(--char); }
.event-feature {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, var(--char-3), var(--char-2) 62%);
  padding: clamp(22px, 2.6vw, 34px);
  margin-bottom: clamp(16px, 2.4vw, 28px);
  position: relative;
  overflow: hidden;
}
.event-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent 70%);
}
.ef-media {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.ef-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ef-copy h3 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--white);
  margin-bottom: 10px;
}
.ef-copy .event-price { margin: 20px 0 24px; }
.ef-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
}
.event-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.6vw, 44px);
  background: var(--char-2);
  overflow: hidden;
}
.event-card-alt { background: var(--char-3); }
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent 70%);
}
.event-day {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}
.event-card h3 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--cream);
  margin-bottom: 10px;
}
.event-lede { color: var(--soft); font-size: 16.5px; margin-bottom: 12px; }
.event-body { color: var(--muted); font-size: 14.5px; max-width: 52ch; }
.event-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.event-price b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 34px;
  color: var(--gold);
}
.event-price span { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; color: var(--faint); }

/* ---------- Functions + gift ---------- */

.functions { padding: clamp(88px, 11vw, 140px) 0 0; background: var(--char-2); }
.fn-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 100px);
}
.fn-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.8);
}
.fn-copy h2 { margin-bottom: 22px; max-width: 18ch; }
.fn-copy .lede { max-width: 54ch; }
.fn-ctas { margin-top: 30px; }

.gift-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  padding: 36px 0 clamp(64px, 8vw, 100px);
}
.gift-copy h3 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--cream);
  margin-bottom: 8px;
}
.gift-copy p { color: var(--muted); font-size: 14.5px; max-width: 56ch; }

/* ---------- Takeaway ---------- */

.takeaway {
  background: var(--char);
  border-top: 1px solid var(--line-soft);
}
.tk-in {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 100px) 0;
}
.tk-copy h2 { margin-bottom: 14px; }
.tk-copy .body { max-width: 50ch; }
.tk-ctas { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.tk-ctas .btn { justify-content: center; }

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

.find {
  background: var(--char-2);
  border-top: 1px solid var(--line-soft);
  padding: clamp(88px, 11vw, 140px) 0;
}
.find-address {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 22ch;
  margin-bottom: 52px;
}
.find-media {
  position: relative;
  margin-bottom: 46px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--char-3);
}
.find-media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 62%;
}
.find-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px 26px 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(to top, rgba(10, 9, 8, 0.82), rgba(10, 9, 8, 0));
}
.find-media figcaption em { font-style: normal; color: var(--gold-bright); }

.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px);
  padding-top: 38px;
  border-top: 1px solid var(--line-soft);
}
.find-block h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 15px;
}
.find-block p { color: var(--muted); font-size: 15px; margin-bottom: 18px; max-width: 34ch; }
.contact li { padding: 5px 0; font-size: 15.5px; }
.contact a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line); transition: color 0.25s ease, border-color 0.25s ease; }
.contact a:hover { color: var(--gold-bright); border-color: var(--gold); }
.contact span { font-size: 12.5px; color: var(--faint); margin-left: 6px; }

/* ---------- Footer ---------- */

.footer { background: var(--char); color: var(--muted); overflow: hidden; }
.footer-marquee span { font-family: var(--serif); letter-spacing: 0.3em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 52px);
  padding: 64px 0 48px;
}
.footer-brand img { width: 108px; height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 28ch; }
.footer-col h3 {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 13px;
}
.footer-col p { font-size: 14.5px; margin-bottom: 12px; line-height: 1.7; }
.footer-col a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line-soft); transition: color 0.25s ease, border-color 0.25s ease; }
.footer-col a:hover { color: var(--gold-bright); border-color: var(--gold); }
.footer-legal { border-top: 1px solid var(--line-soft); padding: 20px 0 28px; }
.footer-legal p { font-size: 12.5px; color: #a5a39f; }
.footer-legal a { color: var(--muted); }

/* ---------- Reveals ---------- */

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

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out) var(--d, 0s);
}
.reveal-img.in { clip-path: inset(0 0 0% 0); }

.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.wi {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.95s var(--ease-out);
}
.in .wi,
.w.in .wi { transform: none; }

.menu-cat li { opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease, transform 0.55s var(--ease-out); }
.menu-cat.in li { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12.5px; }
}


@media (max-width: 1020px) {
  /* Two-up squares: mixed row spans in a 4-col grid leave holes, because the
     desktop order pairs a wide with a tall here. Uniform cells cannot. */
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
  .event-feature { grid-template-columns: 1fr; }
  .ef-media { max-width: 320px; }
  .find-media img { aspect-ratio: 16 / 9; }

  .nav-links { display: none; }
  .burger { display: block; }
  .xp-grid { grid-template-columns: 1fr; }
  .xp-media { order: -1; min-height: 0; margin-bottom: 12%; }
  .xp-img-back { right: 0; bottom: -14%; width: 46%; }
  .drinks-grid { grid-template-columns: 1fr; }
  .drinks-card { max-width: 420px; }
  .oma-grid { grid-template-columns: 1fr; }
  .space-explorer { grid-template-columns: 1fr; }
  .space-pane { min-height: 0; aspect-ratio: 4 / 3; order: -1; }
  .event-grid { grid-template-columns: 1fr; }
  .fn-grid { grid-template-columns: 1fr; }
  .tk-in { grid-template-columns: 1fr; }
  .tk-ctas { flex-direction: row; flex-wrap: wrap; }
  .find-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .g-wide { aspect-ratio: 3 / 2; }
  .g-tall { aspect-ratio: 4 / 5; }
  .find-media img { aspect-ratio: 4 / 3; }
  .find-media figcaption { padding: 38px 16px 14px; font-size: 11.5px; }

  .reels { padding: 64px 0 56px; }
  .reels-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 26px; }
  .reels-nav { display: none; }
  .reels-dots { display: flex; }
  .reel { width: min(66vw, 268px); }
  .reels-track { gap: 14px; }
  .reels-foot { margin-top: 22px; }
  .reels-note { display: none; }

  .menu-grid { columns: 1; }
  .hero-over { letter-spacing: 0.18em; font-size: 12px; gap: 10px; }
  .hero-content { padding-bottom: 76px; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; padding: 52px 0 40px; }
  .nav-actions .btn { padding: 9px 14px; font-size: 12px; }
  .mtab { padding: 10px 12px; font-size: 14px; }
}

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

@media (prefers-reduced-motion: reduce) {
  .reels-track { scroll-behavior: auto; }
  .reel-video { opacity: 1; filter: none; }
  .reel.is-active .reel-frame { transform: none; }

  html { scroll-behavior: auto; }
  .hero-still, .hero-video { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-scroll { display: none; }
  .mpanel { animation: none; }
  .reveal, .reveal-img, .menu-cat li, .wi {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .space-btn b, .space-btn span { transition: none !important; }
  .loader { display: none; }
  body.is-loading { overflow: auto; }
}
