:root {
  --paper: #f1eee7;
  --paper-soft: #faf8f2;
  --ink: #11100e;
  --night: #090908;
  --night-soft: #151411;
  --white: #f7f5ef;
  --gold: #b48846;
  --red: #8b2328;
  --line-light: rgba(17, 16, 14, 0.22);
  --line-dark: rgba(247, 245, 239, 0.24);
  --header-height: 72px;
  --page-pad: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Avenir Next", "Noto Sans JP", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
dl,
dd {
  margin: 0;
}

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

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

.boot {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.boot__word {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  animation: boot-fade 1.6s ease-in-out infinite;
}

.boot.is-leaving {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

@keyframes boot-fade {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boot__word {
    animation: none;
    opacity: 1;
  }

  .boot.is-leaving {
    transition: none;
  }
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  color: var(--ink);
  transition: color 300ms ease, background-color 300ms ease;
}

.site-header::after {
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.22;
}

.site-header.is-dark {
  color: var(--white);
}

.site-header.is-solid {
  background: rgba(9, 9, 8, 0.94);
  color: var(--white);
}

.wordmark {
  justify-self: start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  justify-self: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

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

span.button {
  cursor: default;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 12px 20px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 260ms ease, border-color 260ms ease, transform 260ms var(--ease-out);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.button span {
  position: relative;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--primary::before {
  background: var(--red);
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--red);
}

.button--secondary {
  color: currentColor;
}

.button--secondary::before {
  background: var(--ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: var(--paper);
}

.button--header {
  justify-self: end;
  min-width: 112px;
  min-height: 38px;
  padding: 9px 16px;
}

.button--header::before {
  background: var(--ink);
}

.button--header:hover,
.button--header:focus-visible {
  color: var(--paper);
}

.site-header.is-dark .button--header:hover,
.site-header.is-dark .button--header:focus-visible,
.site-header.is-solid .button--header:hover,
.site-header.is-solid .button--header:focus-visible {
  color: var(--night);
}

.site-header.is-dark .button--header::before,
.site-header.is-solid .button--header::before {
  background: var(--white);
}

.button--light {
  border-color: var(--white);
  color: var(--white);
}

.button--light::before {
  background: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--night);
}

.menu-toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 12px 9px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  flex: 0 0 1px;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 260ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-height) + 44px) var(--page-pad) 36px;
  background: var(--night);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
}

.transformation {
  position: relative;
  height: 240svh;
  background: var(--paper);
}

.transformation__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.transformation__media,
.transformation__sketch,
.transformation__photo-wrap,
.transformation__photo,
.transformation__canvas,
.transformation__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.transformation__canvas {
  z-index: 1;
  display: block;
  background: var(--paper);
  opacity: 0;
  transition: opacity 300ms ease;
}

.transformation__media.is-tinta-ready .transformation__canvas {
  opacity: 1;
}

.transformation__media.is-tinta-ready .transformation__sketch,
.transformation__media.is-tinta-ready .transformation__photo-wrap {
  opacity: 0;
}

.transformation__sketch,
.transformation__photo {
  object-fit: cover;
  object-position: center 48%;
}

.transformation__sketch {
  background: var(--paper);
}

.transformation__photo-wrap {
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
}

.transformation__shade {
  z-index: 2;
  background: rgba(9, 9, 8, 0.46);
  opacity: 0;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: clamp(46px, 8vh, 92px);
  left: var(--page-pad);
  max-width: 760px;
  color: var(--ink);
  transition: color 340ms ease;
}

.transformation.is-live .hero-copy {
  color: var(--white);
  text-shadow: 0 1px 18px rgba(9, 9, 8, 0.32);
}

.hero-copy__kicker,
.section-tag {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 10px;
  font-size: 104px;
  font-weight: 650;
  line-height: 0.84;
}

.hero-copy__line {
  margin-top: 22px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-copy__actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.transformation.is-live .hero-copy .button--primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.transformation.is-live .hero-copy .button--primary::before {
  background: var(--red);
}

.transformation.is-live .hero-copy .button--primary:hover,
.transformation.is-live .hero-copy .button--primary:focus-visible {
  border-color: var(--red);
  color: var(--white);
}

.transformation.is-live .hero-copy .button--secondary {
  border-color: var(--white);
  background: rgba(9, 9, 8, 0.78);
  color: var(--white);
}

.transformation.is-live .hero-copy .button--secondary::before {
  background: var(--white);
}

.transformation.is-live .hero-copy .button--secondary:hover,
.transformation.is-live .hero-copy .button--secondary:focus-visible {
  color: var(--night);
}

.transformation__progress {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: clamp(46px, 8vh, 92px);
  width: 1px;
  height: 118px;
  overflow: hidden;
  background: rgba(17, 16, 14, 0.3);
  transition: background-color 340ms ease;
}

.transformation.is-live .transformation__progress {
  background: rgba(247, 245, 239, 0.34);
}

.transformation__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 48px;
  padding: clamp(96px, 14vw, 190px) var(--page-pad);
  background: var(--paper);
}

.manifesto__content {
  max-width: 980px;
}

.manifesto h2,
.menu-section__header h1,
.menu-section__header h2,
.experience h2,
.visit h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 1;
}

.manifesto__content > p {
  max-width: 620px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.55;
}

.menu-section {
  min-height: 100svh;
  padding: clamp(88px, 10vw, 140px) var(--page-pad);
  background: var(--night);
  color: var(--white);
}

.menu-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}

.menu-section__header h1,
.menu-section__header h2 {
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.text-link span {
  transition: transform 260ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.menu-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 512px);
  gap: clamp(40px, 7vw, 108px);
  padding-top: 56px;
}

.menu-list {
  align-self: start;
}

.menu-chapter + .menu-chapter {
  margin-top: 62px;
}

.menu-chapter h2,
.menu-chapter h3 {
  margin: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 0 18px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.menu-row {
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 260ms ease, color 260ms ease;
}

.menu-row[hidden] {
  display: none;
}

.menu-row > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  width: 100%;
  min-height: 60px;
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.menu-row__name {
  font-size: 16px;
  font-weight: 450;
}

.menu-row__indicator {
  position: relative;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 260ms var(--ease-out);
}

.menu-row__indicator::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.menu-row.is-active {
  border-bottom-color: var(--gold);
  background: transparent;
  color: var(--white);
}

.menu-row.is-active > button {
  padding-right: 8px;
}

.menu-row.is-active .menu-row__indicator {
  opacity: 1;
  transform: translateX(0);
}

.menu-row__mobile-media {
  display: none;
}

.menu-stage {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  justify-self: end;
  width: min(100%, 420px, 52.8vh);
  max-width: 420px;
}

.menu-stage__button {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: var(--night-soft);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.menu-stage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--night);
  transition: transform 700ms var(--ease-out), filter 400ms ease;
}

.menu-stage__image--next {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.menu-stage__button:hover .menu-stage__image,
.menu-stage__button:focus-visible .menu-stage__image {
  filter: brightness(0.82);
  transform: scale(1.025);
}

.menu-stage__meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: rgba(9, 9, 8, 0.76);
}

.menu-stage__type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-stage__name {
  max-width: 70%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
}

.menu-stage__description {
  min-height: 76px;
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
  color: rgba(247, 245, 239, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.menu-page {
  background: var(--night);
}

.menu-page__main {
  min-height: calc(100svh - 92px);
}

.menu-section--page {
  padding-top: calc(var(--header-height) + clamp(70px, 8vw, 112px));
}

.experience {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2.5vw, 40px);
  align-items: start;
  padding: clamp(90px, 11vw, 156px) var(--page-pad);
  background: var(--night);
  color: var(--white);
}

.experience__copy {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  grid-column: 1 / 5;
  max-width: 500px;
  padding: 40px 0;
}

.experience__copy h2 {
  margin-top: 14px;
}

.experience__copy > p:last-child {
  max-width: 440px;
  margin-top: 28px;
  color: rgba(247, 245, 239, 0.7);
  font-size: 17px;
}

.experience-carousel {
  grid-column: 6 / 13;
  min-width: 0;
  padding-top: 40px;
}

.experience-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-y;
  cursor: grab;
}

.experience-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.experience-carousel__viewport:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 6px;
}

.experience-carousel__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.experience-carousel__track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2vw, 28px);
  padding-right: clamp(48px, 7vw, 108px);
}

.experience-slide {
  flex: 0 0 clamp(280px, 30vw, 380px);
  width: clamp(280px, 30vw, 380px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--night-soft);
  opacity: 0.48;
  scroll-snap-align: start;
  transition: opacity 320ms ease;
}

.experience-slide.is-active {
  opacity: 1;
}

.experience-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.experience-slide--fire img {
  object-position: center;
}

.experience-slide--cocktail img {
  object-position: center;
}

.experience-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  border-top: 1px solid rgba(247, 245, 239, 0.22);
  padding-top: 16px;
}

.experience-carousel__status {
  color: rgba(247, 245, 239, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-carousel__buttons {
  display: flex;
  gap: 8px;
}

.experience-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(247, 245, 239, 0.48);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 19px;
  transition: background-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.experience-carousel__button:hover,
.experience-carousel__button:focus-visible {
  background: var(--white);
  color: var(--night);
}

.experience-carousel__button:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 3px;
}

.experience-carousel__button:disabled {
  opacity: 0.24;
  pointer-events: none;
}

.experience-carousel__button span {
  transform: translateY(-1px);
}

.experience-carousel__viewport,
.experience-carousel__button {
  -webkit-tap-highlight-color: transparent;
}

.experience-carousel figure {
  overflow: hidden;
}

.visit {
  padding: clamp(96px, 12vw, 176px) var(--page-pad) 72px;
  background: var(--paper);
}

.visit__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 40px;
}

.visit__top h2 {
  max-width: 780px;
}

.visit__actions {
  display: flex;
  gap: 10px;
  margin-top: 64px;
  margin-left: calc(30% + 8px);
}

.visit__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 110px;
  border-top: 1px solid var(--line-light);
}

.visit__facts > div {
  min-height: 150px;
  border-right: 1px solid var(--line-light);
  padding: 24px 24px 24px 0;
}

.visit__facts > div:not(:first-child) {
  padding-left: 24px;
}

.visit__facts > div:last-child {
  border-right: 0;
}

.visit__facts dt {
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.visit__facts dd {
  font-size: 18px;
  line-height: 1.45;
}

.visit__facts a {
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 24px var(--page-pad);
  background: var(--night);
  color: var(--white);
}

.site-footer span {
  font-size: 18px;
  font-weight: 700;
}

.site-footer p {
  color: rgba(247, 245, 239, 0.54);
  font-size: 11px;
}

.site-footer a {
  border-bottom: 1px solid rgba(247, 245, 239, 0.42);
  color: rgba(247, 245, 239, 0.72);
  font-size: 11px;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  border-color: var(--white);
  color: var(--white);
}

.dish-dialog {
  width: min(1000px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100svh - 48px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.dish-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 1fr);
}

.dish-dialog::backdrop {
  background: rgba(9, 9, 8, 0.88);
}

.dish-dialog__close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  min-height: 42px;
  border: 1px solid rgba(247, 245, 239, 0.7);
  border-radius: 0;
  padding: 10px 14px;
  background: rgba(9, 9, 8, 0.84);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.dish-dialog__close:hover,
.dish-dialog__close:focus-visible {
  background: var(--white);
  color: var(--night);
}

.dish-dialog__media {
  height: min(78svh, 700px);
  min-height: 0;
}

.dish-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-dialog__copy {
  align-self: end;
  padding: 48px 34px;
}

.dish-dialog__type {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dish-dialog h2 {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.dish-dialog__description {
  margin-top: 24px;
  color: rgba(247, 245, 239, 0.7);
}

.cursor {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  display: none;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cursor__block {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translate(-3px, -3px);
  transition: background-color 180ms ease, transform 180ms var(--ease-out);
}

.cursor__frame {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 28px;
  border: 1px solid var(--gold);
  transform: translate(-22px, -14px);
  transition: width 220ms var(--ease-out), height 220ms var(--ease-out), transform 220ms var(--ease-out), background-color 180ms ease;
}

.cursor__label {
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.cursor.is-interactive .cursor__frame {
  width: 62px;
  height: 38px;
  transform: translate(-31px, -19px);
}

.cursor.has-label .cursor__frame {
  background: rgba(9, 9, 8, 0.76);
}

.cursor.has-label .cursor__label {
  opacity: 1;
}

.cursor.is-down .cursor__block {
  transform: translate(-3px, -3px) scale(1.7);
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor [data-cursor] {
    cursor: none;
  }

  body.has-custom-cursor .cursor {
    display: block;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .button--header {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .manifesto h2,
  .menu-section__header h1,
  .menu-section__header h2,
  .experience h2,
  .visit h2 {
    font-size: 48px;
  }

  .hero-copy h1 {
    font-size: 72px;
  }

  .hero-copy__line {
    font-size: 27px;
  }

  .menu-explorer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 34px;
  }

  .experience {
    display: block;
  }

  .experience__copy {
    position: static;
    max-width: 680px;
  }

  .experience-carousel {
    padding-top: 36px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 20px;
  }

  .transformation {
    height: 220svh;
  }

  .transformation__sticky {
    min-height: 560px;
  }

  .transformation__sketch,
  .transformation__photo {
    object-position: center;
  }

  .hero-copy {
    right: 42px;
    bottom: 42px;
  }

  .hero-copy h1 {
    margin-top: 8px;
    font-size: 62px;
  }

  .hero-copy__line {
    max-width: 290px;
    margin-top: 15px;
    font-size: 23px;
  }

  .hero-copy__actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-copy__actions .button {
    min-width: 126px;
  }

  .transformation__progress {
    right: 20px;
    bottom: 42px;
    height: 96px;
  }

  .manifesto {
    display: block;
    padding-top: 92px;
    padding-bottom: 104px;
  }

  .manifesto__content {
    margin-top: 32px;
  }

  .manifesto h2,
  .menu-section__header h1,
  .menu-section__header h2,
  .experience h2,
  .visit h2 {
    font-size: 39px;
  }

  .manifesto__content > p {
    margin-top: 24px;
    font-size: 17px;
  }

  .menu-section {
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .menu-section__header {
    display: block;
    padding-bottom: 30px;
  }

  .menu-section__header .text-link {
    margin-top: 24px;
  }

  .menu-explorer {
    display: block;
    padding-top: 34px;
  }

  .menu-chapter + .menu-chapter {
    margin-top: 48px;
  }

  .menu-chapter h2,
  .menu-chapter h3 {
    padding-bottom: 16px;
    font-size: 15px;
  }

  .menu-stage {
    display: none;
  }

  .menu-row > button {
    grid-template-columns: minmax(0, 1fr) 24px;
    min-height: 58px;
    padding: 12px 0;
  }

  .menu-row__name {
    font-size: 15px;
  }

  .menu-row.is-active > button {
    padding-right: 4px;
  }

  .menu-row__mobile-media {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 520ms var(--ease-out), opacity 300ms ease;
  }

  .menu-row.is-active .menu-row__mobile-media {
    max-height: 720px;
    opacity: 1;
  }

  .menu-row__mobile-media img {
    aspect-ratio: 4 / 5;
    background: var(--night);
    object-fit: cover;
  }

  .menu-row__mobile-media p {
    padding: 18px 0 24px;
    color: rgba(247, 245, 239, 0.68);
    font-size: 14px;
  }

  .experience {
    display: block;
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .experience__copy {
    padding: 0 0 52px;
  }

  .experience__copy > p:last-child {
    font-size: 15px;
  }

  .experience-carousel {
    padding-top: 0;
  }

  .experience-carousel__viewport {
    overflow: visible;
    touch-action: auto;
    cursor: default;
  }

  .experience-carousel__track {
    display: block;
    width: auto;
    padding-right: 0;
  }

  .experience-slide {
    opacity: 1;
  }

  .experience-slide--fire {
    width: 62%;
    aspect-ratio: 9 / 16;
  }

  .experience-slide--cocktail {
    width: 86%;
    margin: -58px 0 0 auto;
    aspect-ratio: 362 / 640;
  }

  .experience-slide--roll,
  .experience-slide--neon,
  .experience-carousel__controls {
    display: none;
  }

  .visit {
    padding-top: 90px;
  }

  .visit__top {
    display: block;
  }

  .visit__top h2 {
    margin-top: 28px;
  }

  .visit__actions {
    margin: 42px 0 0;
  }

  .visit__actions .button {
    flex: 1;
    min-width: 0;
  }

  .visit__facts {
    display: block;
    margin-top: 78px;
  }

  .visit__facts > div,
  .visit__facts > div:not(:first-child) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 22px 0 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dish-dialog {
    width: 100vw;
    max-height: 100svh;
    height: 100svh;
  }

  .dish-dialog[open] {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .dish-dialog__media {
    min-height: 0;
    overflow: hidden;
  }

  .dish-dialog__copy {
    padding: 28px 20px 34px;
  }

  .dish-dialog h2 {
    font-size: 38px;
  }
}

@media (max-width: 390px) {
  .hero-copy__actions,
  .visit__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy__actions .button,
  .visit__actions .button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .menu-row > button {
    grid-template-columns: minmax(0, 1fr) 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .transformation {
    height: 100svh;
  }

  .transformation__sketch {
    display: none;
  }

  .transformation__photo-wrap {
    clip-path: none;
  }

  .transformation__shade {
    opacity: 0.46;
  }

  .hero-copy {
    color: var(--white);
  }

  .transformation__progress {
    display: none;
  }
}
