:root {
  --bg: #05090b;
  --bg-deep: #020406;
  --panel: #080c10;
  --panel-soft: #0b1115;
  --text: #f3f4f1;
  --muted: #c9d0cf;
  --dim: #8f9896;
  --gold: #bd8f36;
  --gold-soft: #b58c67;
  --line: rgba(255, 255, 255, 0.18);
  --font-sans: "Jost", Arial, sans-serif;
  --font-serif: "Cormorant", Georgia, serif;
  --font-script: "Mrs Saint Delafield", cursive;
  --header-height: 86px;
  --max: 1300px;
  --pad-x: clamp(22px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 calc(33.333% - 0.5px),
      rgba(255, 255, 255, 0.105) calc(33.333% - 0.5px) calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px) calc(66.666% - 0.5px),
      rgba(255, 255, 255, 0.095) calc(66.666% - 0.5px) calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px)
    );
  opacity: 0.66;
}

body::after {
  z-index: 0;
  display: none;
}

body > :where(:not(script, .background-lines)) {
  position: relative;
  z-index: 1;
}

.background-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-lines span {
  position: absolute;
  top: -42vh;
  left: 33.333%;
  width: 1px;
  height: 38vh;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 12%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(189, 143, 54, 0.22) 56%,
    rgba(255, 255, 255, 0.04) 86%,
    transparent 100%
  );
  opacity: 0.86;
  transform: translate3d(0, -14vh, 0);
  animation: gridLineSweep 8.5s linear infinite;
  will-change: transform;
}

.background-lines span:nth-child(2) {
  left: 66.666%;
  height: 44vh;
  opacity: 0.78;
  animation-delay: -4.1s;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(189, 143, 54, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(10, 17, 19, 0.98) 0%, rgba(2, 4, 6, 0.995) 100%);
  color: var(--gold);
  opacity: 1;
  visibility: visible;
  transition: opacity 780ms ease, visibility 780ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-loader::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 calc(33.333% - 0.5px),
      rgba(255, 255, 255, 0.105) calc(33.333% - 0.5px) calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px) calc(66.666% - 0.5px),
      rgba(255, 255, 255, 0.095) calc(66.666% - 0.5px) calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px)
    );
  opacity: 0.62;
}

.page-loader::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.18), rgba(2, 4, 6, 0.68));
}

.loader-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.loader-lines span {
  position: absolute;
  top: -44vh;
  left: 33.333%;
  width: 1px;
  height: 36vh;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 10%,
    rgba(255, 255, 255, 0.48) 48%,
    rgba(189, 143, 54, 0.32) 56%,
    rgba(255, 255, 255, 0.04) 88%,
    transparent 100%
  );
  animation: gridLineSweep 5.8s linear infinite;
}

.loader-lines span:nth-child(2) {
  left: 66.666%;
  height: 42vh;
  opacity: 0.78;
  animation-delay: -2.7s;
}

.loader-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(380px, 78vw);
  transform: translateY(-2vh);
}

.loader-mark img {
  width: clamp(74px, 16vw, 104px);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.42));
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

.loader-mark p {
  margin: -2px 0 0;
  color: var(--gold-soft);
  font-family: var(--font-script);
  font-size: clamp(58px, 10vw, 104px);
  line-height: 0.72;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.64);
}

.loader-mark span {
  position: relative;
  display: block;
  width: min(286px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-mark i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 46%;
  background: currentColor;
  box-shadow: 0 0 18px rgba(189, 143, 54, 0.48);
  animation: loaderRule 1.25s ease-in-out infinite;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--text);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  background: rgba(3, 6, 8, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.menu-is-open {
  background: #020406;
  backdrop-filter: none;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 var(--pad-x);
  gap: 26px;
}

.nav-list,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 31px);
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.language,
.reserve-link,
.mobile-panel a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list a::after,
.mobile-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.mobile-panel a:hover::after,
.mobile-panel a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
}

.brand img {
  width: 70px;
  height: auto;
  filter: saturate(1.05);
}

.nav-actions {
  justify-content: flex-end;
}

.language {
  color: var(--gold);
}

.social {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--text);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social:hover,
.social:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
}

.reserve-link,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 47px;
  padding: 0 24px;
  border: 1px solid rgba(189, 143, 54, 0.92);
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.reserve-link:hover,
.reserve-link:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  background: var(--gold);
  color: #050609;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 58px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 1px;
  margin: 8px 0 8px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms ease, opacity 240ms ease;
}

.site-header.menu-is-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(24deg);
}

.site-header.menu-is-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-24deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 34px;
  padding: 30px var(--pad-x) 44px;
  overflow-y: auto;
  background:
    linear-gradient(
      90deg,
      transparent 0 calc(33.333% - 0.5px),
      rgba(255, 255, 255, 0.08) calc(33.333% - 0.5px) calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px) calc(66.666% - 0.5px),
      rgba(255, 255, 255, 0.07) calc(66.666% - 0.5px) calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px)
    ),
    radial-gradient(circle at 80% 0%, rgba(189, 143, 54, 0.1), transparent 34%),
    #020406;
  transform: translateX(100%);
  transition: transform 320ms ease;
}

.site-header.menu-is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 18px;
}

.mobile-panel a {
  width: fit-content;
  font-size: 18px;
  letter-spacing: 4px;
}

.mobile-reserve {
  width: 100%;
  max-width: 270px;
  min-height: 54px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 6, 0.56) 0%, rgba(3, 5, 6, 0.34) 46%, rgba(5, 9, 11, 0.68) 100%),
    url("assets/img/hero-sushi.webp") center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 11s ease-out both;
  will-change: transform;
}

.stamp {
  position: absolute;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.stamp-hero {
  right: 8.5vw;
  bottom: 10vh;
  animation: spinStamp 18s linear infinite;
}

.stamp-mark {
  position: absolute;
  color: var(--gold);
  font-size: 34px;
  animation: counterSpin 18s linear infinite;
}

.stamp-text {
  width: 68px;
  text-align: center;
  animation: counterSpin 18s linear infinite;
}

.section-pad {
  padding: clamp(90px, 13vw, 190px) var(--pad-x);
}

.welcome {
  display: grid;
  place-items: center;
  min-height: 390px;
  text-align: center;
}

.script-label {
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-family: var(--font-script);
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 0.72;
}

.welcome-copy {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 150px);
  max-width: var(--max);
  margin: 0 auto;
}

.copy-block {
  position: relative;
  max-width: 430px;
}

.ghost-word {
  position: absolute;
  left: -6px;
  top: -98px;
  z-index: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-serif);
  font-size: clamp(64px, 7vw, 118px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 10px;
  text-transform: uppercase;
  pointer-events: none;
}

.copy-block h1,
.copy-block h2,
.menu-intro h2,
.blog h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.copy-block p,
.menu-copy p,
.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.outline-button {
  margin-top: 34px;
  min-width: 222px;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.outline-button.small {
  min-width: 180px;
  min-height: 42px;
  padding: 0 22px;
  font-size: 10px;
}

.stacked-images {
  position: relative;
  min-height: clamp(420px, 50vw, 720px);
  isolation: isolate;
  overflow: visible;
}

.stack-main {
  position: relative;
  z-index: 1;
  width: min(52vw, 520px);
  height: auto;
  margin-left: auto;
  object-fit: cover;
  will-change: transform;
}

.stack-small {
  position: absolute;
  z-index: 3;
  width: min(28vw, 202px);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.24);
  will-change: transform;
}

.stack-small-left {
  left: 1vw;
  bottom: 6%;
}

.stack-small-right {
  right: -3vw;
  bottom: 18%;
}

.menu-showcase {
  position: relative;
  overflow: visible;
  height: 430vh;
  min-height: 2800px;
  padding-top: 0;
  background: var(--bg-deep);
}

.gsap-menu-active .menu-showcase {
  height: auto;
  min-height: 100vh;
}

.menu-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.gsap-menu-active .menu-sticky {
  position: relative;
  top: auto;
}

.menu-track {
  display: flex;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.menu-panel {
  flex: 0 0 auto;
  width: 100vw;
  height: 100%;
}

.menu-intro {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 0 var(--pad-x);
  overflow: hidden;
  background: var(--bg-deep);
}

.menu-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.82) 0%, rgba(5, 6, 9, 0.38) 42%, rgba(5, 6, 9, 0.02) 70%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.15), rgba(5, 6, 9, 0.36));
  pointer-events: none;
}

.menu-intro img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transform-origin: center;
  will-change: transform;
}

.menu-intro div {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
}

.menu-intro h2 {
  max-width: 630px;
  font-size: clamp(44px, 4.8vw, 78px);
  line-height: 1.12;
}

.menu-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: max-content;
  min-width: 100vw;
  min-height: 100%;
  padding: 0;
  background:
    radial-gradient(circle at 24% 44%, rgba(189, 143, 54, 0.08), transparent 24%),
    linear-gradient(180deg, #05090b 0%, #030608 100%);
}

.menu-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.06) 24% 24.05%, transparent 24.05% 57%, rgba(255, 255, 255, 0.045) 57% 57.05%, transparent 57.05%),
    radial-gradient(circle at 78% 60%, rgba(255, 255, 255, 0.06), transparent 20%);
  opacity: 0.8;
  pointer-events: none;
}

.menu-items {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(58px, 5vw, 96px);
  width: max-content;
  min-width: 0;
  height: 100%;
  padding: 0 clamp(90px, 10vw, 180px) 0 18vw;
  max-width: none;
  margin: 0 auto;
}

.menu-category {
  position: relative;
  flex: 0 0 clamp(420px, 46vw, 660px);
  height: clamp(430px, 66vh, 660px);
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 300;
  letter-spacing: 10px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: left;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
  will-change: opacity;
}

.menu-category-image {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  z-index: 0;
  width: min(34vw, 470px);
  height: clamp(410px, 58vh, 560px);
  aspect-ratio: auto;
  background: var(--item-image) center / cover no-repeat;
  filter: brightness(0.82) saturate(0.98);
  translate: -50% -50%;
  transform-origin: center;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  will-change: transform, clip-path, filter;
}

.menu-category-text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: min(92%, 760px);
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.66);
  white-space: nowrap;
}

.menu-category:nth-child(even) .menu-category-image {
  left: 50%;
  top: 50%;
  right: auto;
}

.menu-category:nth-child(even) .menu-category-text {
  left: 50%;
}

.menu-category:nth-child(3n) .menu-category-image {
  top: 50%;
}

.menu-category::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 72px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 320ms ease;
}

.menu-category:hover,
.menu-category:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-4px);
}

.menu-category.is-active {
  color: var(--gold-soft);
}

.menu-category:hover::after,
.menu-category:focus-visible::after,
.menu-category.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-category:hover .menu-category-image,
.menu-category:focus-visible .menu-category-image,
.menu-category.is-active .menu-category-image {
  filter: brightness(1) saturate(1.08);
}

.menu-preview {
  display: none;
}

.menu-showcase.is-menu-stage .menu-preview {
  opacity: 0;
}

.vertical-note {
  position: absolute;
  left: 11vw;
  top: 48%;
  z-index: 3;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.back-start {
  position: absolute;
  right: 12vw;
  bottom: 12vh;
  z-index: 4;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.menu-copy {
  display: grid;
  place-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 80px var(--pad-x);
  background: var(--bg-deep);
}

.menu-progress {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 80ms linear;
}

.gsap-menu-active .menu-progress span {
  transition: none;
}

.menu-copy p {
  max-width: 570px;
}

.reserve-grid {
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
}

.reserve-grid .stacked-images {
  justify-self: start;
  width: min(46vw, 520px);
  min-height: clamp(450px, 38vw, 510px);
}

.reserve-grid .stack-main {
  width: 100%;
  height: clamp(420px, 36vw, 486px);
  margin-left: 0;
  object-fit: cover;
}

.reserve-grid .stack-small-right {
  right: 0;
  bottom: 0;
  width: min(15vw, 164px);
  height: clamp(236px, 23vw, 270px);
  object-fit: cover;
}

.memory-banner {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 36vw, 520px);
  overflow: hidden;
  background: #111;
}

.memory-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.memory-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 4, 6, 0.34);
  pointer-events: none;
}

.memory-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: var(--pad-x);
  text-align: center;
}

.memory-overlay > * {
  position: relative;
  z-index: 3;
}

.memory-overlay p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-script);
  font-size: clamp(62px, 7vw, 128px);
  line-height: 0.82;
}

.memory-overlay .split-word {
  overflow: visible;
  padding-block: 0.16em;
  margin-block: -0.16em;
}

.blog {
  overflow: hidden;
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto 68px;
}

.blog h2 {
  max-width: 690px;
}

.slider-controls {
  display: flex;
  gap: 18px;
}

.slider-controls-mobile {
  display: none;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  background: var(--gold);
  color: var(--bg);
}

.blog-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31vw);
  gap: clamp(38px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.blog-track::-webkit-scrollbar {
  display: none;
}

.blog-card {
  scroll-snap-align: start;
  min-height: 460px;
}

.blog-card img {
  width: min(100%, 310px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 28px;
  filter: saturate(0.96);
  transition: transform 320ms ease, filter 320ms ease;
}

.blog-card:hover img {
  transform: scale(0.985);
  filter: saturate(1.08);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.diamond {
  color: var(--gold);
  font-size: 13px;
}

.blog-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.blog-dots {
  display: flex;
  gap: 18px;
  max-width: var(--max);
  margin: 0;
}

.blog-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: var(--max);
  margin: 32px auto 0;
}

.blog-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  cursor: pointer;
  opacity: 0.75;
}

.blog-dots button.is-active {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
  opacity: 1;
}

.site-footer {
  padding: clamp(90px, 12vw, 180px) var(--pad-x) 34px;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto 130px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-grid h2 {
  font-size: 30px;
  letter-spacing: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.made-by {
  margin: 0;
  color: var(--muted);
}

.made-by span {
  color: #9d6cff;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 10vw, 210px);
  background: #020304;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  transition: transform 260ms ease;
}

.cookie-bar.is-hidden {
  transform: translateY(100%);
}

.cookie-bar p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

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

.cookie-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 31px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg-deep);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.cookie-actions .ghost {
  background: transparent;
  color: var(--text);
}

.cookie-actions .icon-button {
  display: grid;
  place-items: center;
  min-width: 31px;
  width: 31px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  font-weight: 300;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}

.split-char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

@keyframes heroDrift {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes gridLineSweep {
  from {
    transform: translate3d(0, -14vh, 0);
  }

  to {
    transform: translate3d(0, 182vh, 0);
  }
}

@keyframes loaderRule {
  0% {
    transform: translateX(-105%);
  }

  45% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(230%);
  }
}

@keyframes loaderLogoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translateY(-2px) scale(1.035);
    opacity: 1;
  }
}

@keyframes spinStamp {
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterSpin {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1180px) {
  .nav-list,
  .nav-actions {
    gap: 14px;
  }

  .nav-list a,
  .language,
  .reserve-link {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .reserve-link {
    min-width: 144px;
    padding: 0 18px;
  }

  .menu-items {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
    --pad-x: clamp(22px, 6vw, 56px);
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-list,
  .nav-actions {
    display: none;
  }

  .brand {
    justify-self: start;
    width: 62px;
    height: 62px;
  }

  .brand img {
    width: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .stamp-hero {
    display: none;
  }

  .section-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 58px;
  }

  .reserve-grid .stacked-images {
    order: 2;
    justify-self: center;
    width: min(76vw, 480px);
  }

  .copy-block {
    width: min(100%, 600px);
    max-width: 600px;
    justify-self: center;
  }

  .stacked-images {
    min-height: 0;
  }

  .stack-main {
    width: min(76vw, 480px);
    height: auto;
    margin: 0 auto;
  }

  .stack-small {
    width: 150px;
  }

  .stack-small-left {
    left: calc(50% - 276px);
  }

  .stack-small-right {
    right: calc(50% - 276px);
    bottom: 18%;
    height: auto;
  }

  .menu-stage {
    width: auto;
    min-height: auto;
    padding: 0;
  }

  .menu-showcase {
    overflow: hidden;
    height: auto;
    min-height: 0;
    padding: clamp(92px, 11vw, 140px) var(--pad-x) clamp(90px, 12vw, 150px);
    background:
      linear-gradient(180deg, rgba(2, 4, 6, 0.98), rgba(5, 9, 11, 1)),
      var(--bg-deep);
  }

  .menu-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    background: transparent;
  }

  .menu-track {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: clamp(72px, 10vw, 126px);
    height: auto;
    transform: none !important;
  }

  .menu-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
  }

  .menu-intro {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: clamp(36px, 8vw, 76px);
    min-height: auto;
    padding: 0;
  }

  .menu-intro img {
    position: relative;
    left: auto;
    bottom: auto;
    width: clamp(150px, 25vw, 220px);
    height: clamp(200px, 34vw, 300px);
    margin: 0;
  }

  .menu-intro div {
    max-width: 620px;
  }

  .menu-intro h2 {
    max-width: 100%;
    font-size: clamp(38px, 5.8vw, 60px);
    letter-spacing: 7px;
  }

  .menu-intro .outline-button {
    width: auto;
    max-width: 240px;
  }

  .menu-items {
    display: grid;
    grid-template-columns: minmax(0, 100%);
    justify-content: center;
    justify-items: stretch;
    gap: clamp(54px, 8vw, 88px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: clamp(42px, 8vw, 84px) 0;
    text-align: center;
  }

  .menu-category {
    --menu-card-size: min(68vw, 430px);
    flex: none;
    width: 100%;
    height: calc(var(--menu-card-size) + 28px);
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(32px, 5.2vw, 50px);
    line-height: 1.18;
    text-align: center;
  }

  .menu-category-image,
  .menu-category:nth-child(even) .menu-category-image,
  .menu-category:nth-child(3n) .menu-category-image {
    left: 50%;
    right: auto;
    top: 50%;
    width: var(--menu-card-size);
    height: var(--menu-card-size);
    aspect-ratio: auto;
    opacity: 0.72;
    filter: brightness(0.88) saturate(1.02);
    translate: -50% -50%;
    transform: none;
  }

  .menu-category-text,
  .menu-category:nth-child(even) .menu-category-text {
    left: 50%;
    top: 50%;
    width: min(88vw, 580px);
    transform: translate(-50%, -50%);
  }

  .menu-category::after {
    left: 50%;
    top: calc(50% + clamp(42px, 6vw, 62px));
    bottom: auto;
    transform: translateX(-50%) scaleX(1);
    transform-origin: center;
  }

  .menu-category:hover,
  .menu-category:focus-visible,
  .menu-category.is-active {
    color: var(--text);
    transform: none;
  }

  .menu-category:hover::after,
  .menu-category:focus-visible::after,
  .menu-category.is-active::after {
    transform: translateX(-50%) scaleX(1);
  }

  .menu-category:hover .menu-category-image,
  .menu-category:focus-visible .menu-category-image,
  .menu-category.is-active .menu-category-image {
    filter: brightness(0.88) saturate(1.02);
  }

  .menu-preview,
  .vertical-note,
  .back-start,
  .menu-progress {
    display: none;
  }

  .menu-copy {
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .footer-grid {
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 54px;
    margin-bottom: 90px;
    text-align: left;
  }

  .footer-grid > div {
    display: grid;
    justify-items: start;
    width: min(100%, 520px);
  }

  .footer-grid p {
    max-width: 32rem;
    text-align: left;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-image {
    background-position: 52% top;
  }

  .welcome {
    min-height: 440px;
  }

  .script-label {
    display: none;
  }

  .welcome-copy {
    max-width: 270px;
    font-size: 18px;
  }

  .copy-block h1,
  .copy-block h2,
  .menu-intro h2,
  .blog h2 {
    font-size: clamp(29px, 8.2vw, 42px);
    letter-spacing: clamp(5px, 1.4vw, 6px);
  }

  .ghost-word {
    display: none;
  }

  .outline-button {
    width: min(100%, 320px);
    min-width: 0;
  }

  .stacked-images,
  .reserve-grid .stacked-images {
    width: min(84vw, 360px);
    margin: 0 auto;
    padding-bottom: clamp(72px, 24vw, 96px);
  }

  .stack-main {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  .reserve-grid .stack-main {
    width: 100%;
    max-width: 330px;
    height: clamp(320px, 85vw, 420px);
    margin: 0 auto;
  }

  .stack-small {
    position: absolute;
    bottom: 0;
    width: min(42vw, 155px);
    margin: 0;
  }

  .stack-small-left {
    left: 0;
  }

  .stack-small-right {
    right: 0;
  }

  .reserve-grid .stack-small-right {
    width: min(42vw, 155px);
    height: auto;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    justify-self: center;
    justify-items: center;
    gap: clamp(26px, 6vw, 34px);
    width: min(100%, 520px);
    min-height: 0;
    padding: 0;
    text-align: center;
  }

  .menu-intro img {
    width: clamp(230px, 48vw, 300px);
    height: clamp(270px, 58vw, 360px);
    margin: 0 auto;
    object-fit: cover;
  }

  .menu-intro div {
    display: grid;
    justify-items: center;
  }

  .menu-intro h2 {
    max-width: min(100%, 500px);
    line-height: 1.18;
  }

  .menu-intro .outline-button {
    margin-top: clamp(20px, 5vw, 26px);
  }

  .menu-stage {
    padding: 0;
  }

  .menu-items {
    gap: clamp(22px, 5vw, 32px);
    min-height: 0;
    padding: 14px 0 18px;
  }

  .menu-category {
    --menu-card-size: min(78vw, 330px);
    max-width: 100%;
    height: calc(var(--menu-card-size) + 8px);
    font-size: clamp(23px, 6.2vw, 32px);
    letter-spacing: clamp(4px, 1.4vw, 7px);
  }

  .menu-category-image,
  .menu-category:nth-child(even) .menu-category-image,
  .menu-category:nth-child(3n) .menu-category-image {
    left: 50%;
    top: 50%;
    width: var(--menu-card-size);
    height: var(--menu-card-size);
    translate: -50% -50%;
  }

  .menu-category-text,
  .menu-category:nth-child(even) .menu-category-text {
    top: 50%;
    width: min(92vw, 350px);
  }

  .menu-category::after {
    top: calc(50% + clamp(34px, 10vw, 46px));
    width: 66px;
  }

  .menu-copy {
    padding: 18px 0 0;
  }

  .memory-banner {
    min-height: 380px;
  }

  .memory-overlay p {
    font-size: clamp(48px, 17vw, 76px);
  }

  .blog-head {
    display: block;
    margin-bottom: clamp(48px, 10vw, 62px);
  }

  .slider-controls-head {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    gap: 14px;
  }

  .slider-controls button {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .blog-track {
    grid-auto-columns: 100%;
    gap: 28px;
  }

  .blog-card {
    display: grid;
    justify-items: center;
    min-height: 0;
  }

  .blog-card img {
    display: block;
    width: min(100%, 360px);
    margin: 0 0 24px;
  }

  .blog-card .blog-meta,
  .blog-card h3 {
    width: min(100%, 360px);
  }

  .blog-card .blog-meta {
    justify-content: flex-start;
  }

  .blog-nav {
    justify-content: center;
    width: min(100%, 360px);
    margin: 30px auto 0;
    gap: 26px;
  }

  .blog-dots {
    width: auto;
    max-width: none;
    justify-content: center;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: min(100%, 460px);
    gap: 18px;
    text-align: center;
  }

  .footer-bottom > * {
    justify-self: center;
    width: 100%;
    margin: 0;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }

  .cookie-bar {
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .mobile-panel a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .hero {
    min-height: 760px;
  }

  .section-pad {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .copy-block p,
  .menu-copy p,
  .footer-grid p {
    font-size: 15px;
  }

  .footer-grid h2 {
    font-size: 26px;
    letter-spacing: 6px;
  }

  .footer-grid h3 {
    letter-spacing: 3px;
  }

  .footer-bottom {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .blog-dots {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html:not(.motion-enabled) .background-lines span {
    animation: none !important;
    opacity: 0.48;
    transform: translate3d(0, 30vh, 0);
  }
}
