:root {
  color-scheme: dark;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff;
  --muted: #fff;
  --muted-strong: #fff;
  --accent: #2f78c9;
  --separator-line: rgba(47, 120, 201, 0.76);
  --font-base: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-brush: "Yuji Syuku", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-latin: "Cormorant Garamond", serif;
  --radius: 8px;
  --max-width: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 10% 18%, rgba(42, 92, 160, 0.11), transparent 24rem),
    radial-gradient(circle at 90% 68%, rgba(255, 255, 255, 0.035), transparent 30rem),
    #050505;
  color: var(--text);
  font-family: var(--font-base);
  font-feature-settings: "palt" 1;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

#about,
#owner,
#food,
#faq,
#visit {
  scroll-margin-top: 84px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.05;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 3px 3px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--max-width);
  padding: 18px 0;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.topbar::before {
  content: none;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__mark {
  font-family: var(--font-brush);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.78),
    0 0 1px rgba(0, 0, 0, 0.9);
}

.brand__mark span {
  color: var(--accent);
}

.brand__sub,
.topbar__nav a,
.kicker,
.section-label,
.hero__facts dt {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand__sub,
.topbar__nav a {
  color: var(--muted);
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.82),
    0 0 1px rgba(0, 0, 0, 0.9);
}

.topbar__nav-links {
  display: flex;
  gap: 16px;
}

.menu-toggle,
.menu-scrim {
  display: none;
}

.topbar__nav-brand {
  display: none;
}

.topbar__nav a {
  position: relative;
  padding-bottom: 4px;
}

.topbar__nav-links a {
  display: flex;
  align-items: baseline;
  gap: 0.22em;
}

.topbar__nav-links a i {
  font-style: normal;
}

.topbar__nav-links a small {
  font: inherit;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  position: relative;
  z-index: auto;
  width: 100%;
  max-width: 100%;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #0d0d0d 0%, #030303 52%, #000 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1300ms;
}

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

body.is-quick-intro .site-loader {
  transition-duration: 450ms;
}

body.is-quick-intro .loader-copy {
  visibility: hidden;
}

.hero-logo-overlay {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  color: #fff;
  text-align: center;
  visibility: hidden;
  opacity: var(--scene-opacity, 0);
  transform: translate3d(0, var(--scene-y, 28px), 0) scale(var(--scene-scale, 0.98));
  filter: blur(var(--scene-blur, 12px));
  transition:
    opacity 100ms linear,
    transform 100ms linear,
    filter 100ms linear;
  pointer-events: none;
  will-change: opacity, transform, filter;
}

body.is-loaded .hero-logo-overlay {
  visibility: visible;
}


.cloud {
  display: block;
  fill: currentColor;
}


.loader-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(900px, calc(100% - 48px));
  min-height: 240px;
  color: #fff;
  text-align: center;
  opacity: 1;
  animation: none;
}

.loader-welcome,
.loader-logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  margin: 0;
}

.loader-welcome {
  gap: 12px;
  color: #fff;
  font-family: var(--font-base);
  font-size: clamp(1.45rem, 3.5vw, 2.8rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: loader-welcome 5.2s 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loader-welcome span {
  display: block;
}

.loader-logo {
  z-index: 3;
  justify-items: center;
  gap: 22px;
  opacity: 0;
  animation: loader-logo 2.2s 5.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loader-logo strong,
.hero-logo-overlay strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-brush);
  font-size: clamp(6.8rem, 15vw, 13rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.loader-logo strong span,
.hero-logo-overlay strong span {
  color: var(--accent);
}

.loader-logo small,
.hero-logo-overlay small {
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

@keyframes loader-welcome {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
  }
  18%,
  72% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(8px);
  }
}

@keyframes loader-logo {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero {
  position: relative;
  z-index: auto;
  width: 100%;
  min-height: 320svh;
}

.hero__sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  padding: 112px max(24px, calc((100% - 1180px) / 2)) 52px;
}

.hero__sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, transparent 34%);
}




.hero__title {
  margin: 0;
  opacity: var(--hero-title-opacity, 0);
  transform: translateY(var(--hero-title-translate, 24px)) scale(var(--hero-title-scale, 0.92));
  filter: blur(var(--hero-title-blur, 18px));
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    filter 280ms ease;
  text-shadow: 0 0 42px rgba(255, 255, 255, 0.12);
}

.hero__title span {
  color: var(--accent);
  text-shadow: 0 0 38px rgba(47, 120, 201, 0.2);
}

.hero__scroll {
  position: absolute;
  right: auto;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #fff;
  opacity: var(--hero-scroll-opacity, 1);
  transform: translateX(-50%);
  transition: opacity 100ms linear;
}

.hero__scroll span {
  font-family: var(--font-latin);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  background: #fff;
  animation: scroll-arrow 1.8s ease-in-out infinite;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

@keyframes scroll-arrow {
  0% {
    opacity: 0.35;
    transform: translateY(-3px);
  }

  50%,
  100% {
    opacity: 1;
    transform: translateY(4px);
  }
}

.kicker {
  margin: 0 0 16px;
  color: var(--accent);
}

.section-label {
  margin: 0 0 16px;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-brush);
  font-weight: 600;
  letter-spacing: 0;
}

.section {
  position: relative;
  isolation: isolate;
  width: var(--max-width);
  margin: 0 auto;
  padding: 110px 0;
}

.section__header {
  max-width: 760px;
  margin-bottom: 54px;
}

.section__header h2 {
  margin: 0;
  max-width: none;
  font-family: var(--font-brush);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section__header p:not(.section-label) {
  max-width: 42rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero h1 {
  font-size: 8rem;
  line-height: 0.88;
}

.hero__tagline {
  margin: 16px 0;
  padding-top: 16px;
  color: #fff;
  font-family: var(--font-base);
  font-size: 2.1rem;
  line-height: 1.12;
}

.lead {
  max-width: 36rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin: 30px 0 0;
}

.hero__facts div {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hero__facts dt {
  color: #fff;
  margin-bottom: 8px;
}

.hero__facts dd {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.024);
}

.faq-item summary {
  position: relative;
  padding: 18px 46px 18px 18px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 22px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.enhanced .reveal {
  opacity: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 45%,
    rgba(0, 0, 0, 0.2) 53%,
    transparent 60%,
    transparent 100%
  );
  -webkit-mask-position: right center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 250% 100%;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 45%,
    rgba(0, 0, 0, 0.2) 53%,
    transparent 60%,
    transparent 100%
  );
  mask-position: right center;
  mask-repeat: no-repeat;
  mask-size: 250% 100%;
  transform: scale(0.99);
  filter: blur(7px);
  transition:
    -webkit-mask-position 1500ms cubic-bezier(0.22, 1, 0.36, 1),
    mask-position 1500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 680ms ease,
    transform 1300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1150ms ease;
  will-change: opacity, transform, filter;
}

body.enhanced .reveal--delay {
  transition-delay: 0ms;
}

body.enhanced .reveal.is-visible {
  opacity: 1;
  -webkit-mask-position: left center;
  mask-position: left center;
  transform: scale(1);
  filter: blur(0);
}

body.enhanced .reveal--photo {
  -webkit-mask-image: none;
  mask-image: none;
  transform: scale(0.985);
  transition:
    opacity 1350ms ease,
    transform 1550ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1300ms ease;
}

body.enhanced .reveal--photo.is-visible {
  transform: scale(1);
}

body.enhanced .reveal.is-visible--instant,
body.enhanced .reveal.is-resetting {
  transition: none;
}

body.enhanced .reveal--delay.is-visible {
  transition-delay: 180ms;
}

.cloud-system {
  position: fixed;
  inset: 0;
  z-index: 99;
  overflow: hidden;
  pointer-events: none;
}

body.is-loading .cloud-system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, #0b1018 0%, #040506 42%, #010101 100%);
}

body.is-loaded .cloud-system {
  z-index: 20;
}

.cloud-system__item {
  --from-x: 0vw;
  --from-y: 0vh;
  --gather-x: 0vw;
  --gather-y: 0vh;
  --arrival-scale: 1;
  --base-opacity: 0.94;
  --drift-x: 0vw;
  --drift-y: 0vh;
  --drift-rotate: 0deg;
  --drift-scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 840px);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(var(--from-x), var(--from-y), 0) scale(0.7);
  animation: cloud-arrival 3.25s cubic-bezier(0.18, 0.82, 0.22, 1) both;
  will-change: transform, opacity;
}

.cloud-system__item > .cloud {
  width: 100%;
  color: rgba(255, 255, 255, 0.96);
  opacity: var(--cloud-opacity, var(--base-opacity));
  transform: translate3d(var(--drift-x), var(--drift-y), 0) rotate(var(--drift-rotate)) scale(var(--drift-scale));
  transform-origin: center;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.28));
  transition:
    transform 80ms linear,
    opacity 80ms linear;
  will-change: transform, opacity;
}

.cloud-system__item--1 { width: min(54vw, 730px); --from-x: -112vw; --from-y: -8vh; --gather-x: -34vw; --gather-y: 1vh; --arrival-scale: 1; }
.cloud-system__item--2 { width: min(51vw, 690px); --from-x: 106vw; --from-y: -86vh; --gather-x: 34vw; --gather-y: -29vh; --arrival-scale: 0.94; animation-delay: 90ms; }
.cloud-system__item--3 { width: min(52vw, 700px); --from-x: 118vw; --from-y: 88vh; --gather-x: 31vw; --gather-y: 30vh; --arrival-scale: 0.92; --base-opacity: 0.9; animation-delay: 180ms; }
.cloud-system__item--4 { width: min(28vw, 380px); --from-x: -76vw; --from-y: -92vh; --gather-x: -20vw; --gather-y: -31vh; --arrival-scale: 0.58; --base-opacity: 0.76; animation-delay: 250ms; }
.cloud-system__item--5 { width: min(31vw, 420px); --from-x: -104vw; --from-y: 82vh; --gather-x: -39vw; --gather-y: 29vh; --arrival-scale: 0.64; --base-opacity: 0.8; animation-delay: 340ms; }
.cloud-system__item--6 { width: min(25vw, 340px); --from-x: 44vw; --from-y: -104vh; --gather-x: 7vw; --gather-y: -18vh; --arrival-scale: 0.56; --base-opacity: 0.76; animation-delay: 420ms; }
.cloud-system__item--7 { width: min(22vw, 300px); --from-x: -28vw; --from-y: -112vh; --gather-x: -7vw; --gather-y: -41vh; --arrival-scale: 0.54; --base-opacity: 0.68; animation-delay: 490ms; }
.cloud-system__item--8 { width: min(26vw, 350px); --from-x: 130vw; --from-y: -18vh; --gather-x: 41vw; --gather-y: -5vh; --arrival-scale: 0.58; --base-opacity: 0.7; animation-delay: 540ms; }
.cloud-system__item--9 { width: min(23vw, 310px); --from-x: -138vw; --from-y: -34vh; --gather-x: -31vw; --gather-y: -17vh; --arrival-scale: 0.52; --base-opacity: 0.64; animation-delay: 600ms; }
.cloud-system__item--10 { width: min(20vw, 270px); --from-x: 92vw; --from-y: 34vh; --gather-x: 13vw; --gather-y: 9vh; --arrival-scale: 0.48; --base-opacity: 0.62; animation-delay: 660ms; }
.cloud-system__item--11 { width: min(24vw, 320px); --from-x: -34vw; --from-y: 116vh; --gather-x: -8vw; --gather-y: 42vh; --arrival-scale: 0.52; --base-opacity: 0.66; animation-delay: 720ms; }
.cloud-system__item--12 { width: min(21vw, 280px); --from-x: 112vw; --from-y: 58vh; --gather-x: 36vw; --gather-y: 16vh; --arrival-scale: 0.5; --base-opacity: 0.62; animation-delay: 780ms; }

body.is-quick-intro .cloud-system__item {
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(var(--gather-x), var(--gather-y), 0) scale(var(--arrival-scale));
  animation: none;
}

.cloud-system__note {
  width: auto;
  color: var(--accent);
  animation-duration: 3.4s;
}

.cloud-system__note > span {
  display: block;
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1;
  opacity: var(--cloud-opacity, 0.88);
  transform: translate3d(var(--drift-x), var(--drift-y), 0) rotate(var(--drift-rotate)) scale(var(--drift-scale));
  text-shadow: 0 0 36px rgba(47, 120, 201, 0.5);
  transition:
    transform 80ms linear,
    opacity 80ms linear;
}

.cloud-system__note--1 { --from-x: -86vw; --from-y: -80vh; --gather-x: -38vw; --gather-y: -27vh; animation-delay: 940ms; }
.cloud-system__note--2 { --from-x: 92vw; --from-y: -44vh; --gather-x: 22vw; --gather-y: -7vh; animation-delay: 1080ms; }
.cloud-system__note--3 { --from-x: 76vw; --from-y: 96vh; --gather-x: 7vw; --gather-y: 35vh; animation-delay: 1220ms; }

@keyframes cloud-arrival {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(var(--from-x), var(--from-y), 0) scale(0.64);
  }
  24% {
    opacity: 0.82;
  }
  72% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--gather-x), var(--gather-y), 0) scale(var(--arrival-scale));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--gather-x), var(--gather-y), 0) scale(var(--arrival-scale));
  }
}

.cloud-system__item > .cloud use {
  transform-box: fill-box;
  transform-origin: center;
  animation: cloud-idle 6.8s ease-in-out infinite alternate;
}

.cloud-system__item:nth-child(3n + 2) > .cloud use {
  animation-duration: 8.2s;
  animation-delay: -2.4s;
}

.cloud-system__item:nth-child(3n) > .cloud use {
  animation-duration: 7.4s;
  animation-delay: -4.1s;
}

@keyframes cloud-idle {
  from {
    transform: translate3d(-4px, -3px, 0) rotate(-0.8deg) scale(0.99);
  }
  to {
    transform: translate3d(7px, 6px, 0) rotate(1.2deg) scale(1.015);
  }
}

.site-loader {
  z-index: 100;
  background:
    radial-gradient(circle at center, rgba(8, 12, 18, 0.16) 0%, rgba(2, 2, 2, 0.58) 58%, rgba(0, 0, 0, 0.88) 100%);
  backdrop-filter: blur(1.5px);
}

.loader-copy {
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation-delay: 1s;
}

.hero {
  min-height: 460svh;
  background: #020202;
}

.hero__sticky {
  align-items: stretch;
  padding: 0;
}

.hero__sticky::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 25%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.52));
}

.hero__backgrounds,
.hero__background,
.hero__blue-hour {
  position: absolute;
  inset: 0;
}

.hero__backgrounds {
  z-index: 0;
  overflow: hidden;
  background: #020202;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: var(--background-opacity, 0);
  transform: scale(var(--background-scale, 1.08));
  filter: grayscale(1) contrast(1.08) brightness(0.58);
  transition:
    opacity 100ms linear,
    transform 100ms linear;
  will-change: opacity, transform;
}

.hero__blue-hour {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 32%, rgba(52, 112, 195, 0.26), transparent 33%),
    radial-gradient(circle at 22% 78%, rgba(201, 155, 105, 0.12), transparent 30%);
  opacity: var(--blue-hour-opacity, 0.2);
  mix-blend-mode: screen;
}

.hero__story {
  position: absolute;
  inset: 0;
  z-index: 21;
  pointer-events: none;
}

.hero__scene {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(700px, calc(100% - 48px));
  opacity: var(--scene-opacity, 0);
  transform: translate3d(var(--scene-x, 0px), calc(-50% + var(--scene-y, 28px)), 0) scale(var(--scene-scale, 0.98));
  filter: blur(var(--scene-blur, 12px));
  transition:
    opacity 100ms linear,
    transform 100ms linear,
    filter 100ms linear;
  will-change: opacity, transform, filter;
}

.hero__scene.is-active {
  pointer-events: auto;
}

.hero__scene--manifesto {
  left: 50%;
  width: min(1100px, calc(100% - 48px));
  text-align: center;
  transform: translate3d(calc(-50% + var(--scene-x, 0px)), calc(-50% + var(--scene-y, 28px)), 0) scale(var(--scene-scale, 0.98));
}

.hero__scene--brand {
  top: 61%;
  width: min(640px, calc(100% - 48px));
}

.hero__scene h2,
.hero__scene .hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-brush);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__scene > p:not(.kicker, .hero__tagline, .lead) {
  max-width: 39rem;
  margin: 24px 0 0;
  color: #fff;
  font-family: var(--font-base);
  font-size: 1.06rem;
  line-height: 2;
}

.hero__scene--manifesto h2 {
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.hero__scene--manifesto h2 span {
  color: var(--accent);
}

.hero__scene .hero__title {
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 0.76;
  opacity: 1;
  transform: none;
  filter: none;
  text-shadow: 0 18px 80px rgba(0, 0, 0, 0.8);
}

.noise {
  opacity: 0.025;
}

.section > .section__header,
.section > .faq-list {
  position: relative;
  z-index: 1;
}

.cloud-journey {
  --journey-scroll-distance: clamp(680px, 190vw, 960px);
  --journey-backdrop-opacity: 0;
  --journey-image-position: center;
  position: relative;
  z-index: 22;
  min-height: calc(100lvh + var(--journey-scroll-distance));
  margin-top: -230svh;
  scroll-margin-top: 0;
  background: transparent;
}

.cloud-journey__sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.cloud-journey__sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(52, 112, 195, 0.2), transparent 33%),
    radial-gradient(circle at 22% 78%, rgba(201, 155, 105, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 25%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.52)),
    url("./assets/images/kudo-hero.webp") var(--journey-image-position) / cover no-repeat;
  opacity: var(--journey-backdrop-opacity);
  filter: grayscale(1) contrast(1.08) brightness(0.58);
  pointer-events: none;
  will-change: opacity;
}

.cloud-journey__lane {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.journey-drift {
  position: absolute;
  left: 0;
  width: clamp(130px, 19vw, 300px);
  color: rgba(255, 255, 255, 0.92);
  fill: currentColor;
  opacity: var(--lane-opacity, 0);
  transform: translate3d(var(--lane-x, 120vw), var(--lane-y, 0), 0);
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.3));
  will-change: transform, opacity;
}

.journey-drift--1 { top: 8%; width: clamp(110px, 14vw, 220px); }
.journey-drift--2 { top: 29%; }
.journey-drift--3 { top: 17%; width: clamp(90px, 12vw, 190px); }
.journey-drift--4 { top: 46%; width: clamp(150px, 23vw, 360px); }
.journey-drift--5 { top: 62%; width: clamp(100px, 15vw, 240px); }
.journey-drift--6 { top: 75%; width: clamp(140px, 21vw, 330px); }
.journey-drift--7 { top: 86%; width: clamp(90px, 12vw, 180px); }
.journey-drift--8 { top: 38%; width: clamp(80px, 9vw, 150px); }

.journey-cloud {
  --journey-cloud-x: 150vw;
  --journey-cloud-scale: 0.92;
  --journey-shape-scale: 1;
  position: absolute;
  inset: 0;
  z-index: 3;
  transform: translate3d(var(--journey-cloud-x), 0, 0) scale(var(--journey-cloud-scale));
  transform-origin: center;
  will-change: transform;
}

.journey-cloud__shape {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(1120px, 80vw);
  height: min(620px, 56svh);
  color: #f3f0e9;
  fill: currentColor;
  opacity: 1;
  transform: translate(-50%, -50%) scale(var(--journey-shape-scale));
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.story-chapter {
  --chapter-bg: #f2efe8;
  --chapter-text: #000;
  --chapter-muted: #000;
  --chapter-line: rgba(17, 24, 32, 0.18);
  position: relative;
  z-index: 23;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 112px 0 152px;
  color: var(--chapter-text);
  background: var(--chapter-bg);
}

.story-chapter--dark {
  --chapter-bg: #050505;
  --chapter-text: #fff;
  --chapter-muted: #fff;
  --chapter-line: rgba(255, 255, 255, 0.16);
}

.about-chapter {
  align-items: start;
  min-height: 100svh;
  margin-top: -100lvh;
  padding-top: clamp(92px, 12svh, 128px);
  padding-bottom: clamp(104px, 14svh, 152px);
  background: transparent;
}

.about-chapter.is-revealed {
  background: #f3f0e9;
}

.about-chapter .story-chapter__content {
  transform: none;
}

body.enhanced .about-chapter .story-chapter__photo,
body.enhanced .about-chapter .story-chapter__copy {
  opacity: 0;
  transform: scale(0.985);
  transform-origin: center top;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about-chapter .story-chapter__photo img {
  object-position: center 42%;
  filter: none;
}

.about-chapter .story-chapter__copy {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 45%,
    rgba(0, 0, 0, 0.2) 53%,
    transparent 60%,
    transparent 100%
  );
  -webkit-mask-position: left center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 250% 100%;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 45%,
    rgba(0, 0, 0, 0.2) 53%,
    transparent 60%,
    transparent 100%
  );
  mask-position: left center;
  mask-repeat: no-repeat;
  mask-size: 250% 100%;
  transition:
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
    -webkit-mask-position 1500ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
    mask-position 1500ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
  will-change: mask-position, opacity, transform;
}

body.enhanced .about-chapter .story-chapter__copy {
  -webkit-mask-position: right center;
  mask-position: right center;
}

body.enhanced .about-chapter.is-revealed .story-chapter__photo,
body.enhanced .about-chapter.is-revealed .story-chapter__copy {
  opacity: 1;
  transform: scale(1);
}

body.enhanced .about-chapter.is-revealed .story-chapter__copy {
  -webkit-mask-position: left center;
  mask-position: left center;
}

.about-chapter .story-chapter__copy h2 {
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.about-chapter .story-chapter__copy > p:not(.story-chapter__eyebrow, .about-chapter__note) {
  font-size: 1rem;
  line-height: 1.95;
}

.about-chapter__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  color: #000;
  font-family: var(--font-base);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.about-chapter__note::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.owner-chapter {
  min-height: 100svh;
  padding-top: clamp(104px, 13svh, 144px);
  padding-bottom: clamp(112px, 14svh, 168px);
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 120, 201, 0.1), transparent 30%),
    #f3f0e9;
}

.owner-chapter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--separator-line), transparent);
  transform: translateX(-50%);
}

.owner-chapter .story-chapter__content {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.owner-chapter__photo img {
  object-position: 44% center;
  filter: grayscale(1) contrast(1.08);
}

.story-chapter__copy.owner-chapter__copy h2 {
  font-size: clamp(3rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.owner-chapter__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px !important;
  color: var(--chapter-text) !important;
  font-family: var(--font-base);
  letter-spacing: 0.05em;
}

.owner-chapter__signature::before {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: var(--accent);
}

.sashimi-chapter {
  display: block;
  padding-bottom: clamp(152px, 17vw, 224px);
}

.food-addon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: clamp(118px, 14vw, 190px) auto 0;
  padding-top: clamp(58px, 7vw, 84px);
}

.food-addon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--separator-line), transparent);
}

.food-addon__photo img {
  aspect-ratio: 16 / 11;
  filter: saturate(0.76) contrast(1.1);
}

.food-addon__copy h2 {
  font-size: clamp(3.3rem, 6.2vw, 6.2rem);
}

.sake-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.66fr);
  gap: 16px;
  align-items: end;
  margin-top: 30px;
}

.sake-gallery figure {
  position: relative;
  margin: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.sake-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.sake-gallery__bottles img {
  aspect-ratio: 5 / 4;
  object-position: center 64%;
}

.sake-gallery__glass {
  margin-bottom: -22px !important;
}

.sake-gallery__glass img {
  aspect-ratio: 4 / 5;
  object-position: center 54%;
}

.sake-gallery figcaption {
  position: absolute;
  right: 7px;
  bottom: 6px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.story-chapter__edge {
  position: absolute;
  top: -144px;
  left: 50%;
  z-index: 0;
  width: max(1180px, 136vw);
  height: 240px;
  color: var(--chapter-bg, #050505);
  fill: currentColor;
  transform: translateX(-50%);
  pointer-events: none;
}

.story-chapter--edge-b .story-chapter__edge {
  top: -126px;
  width: 154vw;
  height: 214px;
  transform: translateX(-54%) scaleX(-1);
}

.story-chapter--edge-c .story-chapter__edge {
  top: -164px;
  width: 128vw;
  height: 270px;
  transform: translateX(-47%) scaleY(1.06);
}

.section--faq > .story-chapter__edge {
  top: -132px;
  width: 148vw;
  height: 224px;
  transform: translateX(-52%) scaleX(-1);
}

.story-chapter__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.story-chapter--reverse .story-chapter__photo {
  order: 2;
}

.story-chapter--reverse .story-chapter__copy {
  order: 1;
}

.story-chapter__photo {
  position: relative;
  margin: 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.story-chapter__photo::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border: 1px solid var(--chapter-line);
}

.story-chapter__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.32) saturate(0.78) contrast(1.08);
}

.story-chapter__photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.64);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.story-chapter__eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.story-chapter__copy h2 {
  margin: 0;
  color: var(--chapter-text);
  font-family: var(--font-brush);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.story-chapter__copy h3 {
  margin: 28px 0 0;
  color: var(--chapter-text);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
}

.story-chapter__copy > p:not(.story-chapter__eyebrow) {
  margin: 16px 0 0;
  color: var(--chapter-muted);
  font-size: 1rem;
  line-height: 1.95;
}

.chapter-menu {
  margin-top: 28px;
  border-top: 1px solid var(--separator-line);
}

.chapter-menu > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--separator-line);
}

.chapter-menu span {
  display: grid;
  gap: 10px;
}

.chapter-menu b {
  color: var(--chapter-text);
  font-size: 0.98rem;
  font-weight: 600;
}

.chapter-menu small {
  color: var(--chapter-muted);
  font-size: 0.78rem;
}

.chapter-menu strong {
  flex: 0 0 auto;
  color: var(--chapter-text);
  font-size: 0.92rem;
  font-weight: 500;
}

.chapter-menu__note {
  margin-top: 16px !important;
  font-size: 0.82rem !important;
}

.visit-chapter {
  z-index: 25;
  min-height: 100svh;
  padding: 112px 0;
}

.visit-chapter .story-chapter__copy h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.visit-info {
  margin: 28px 0 0;
  border-top: 1px solid var(--separator-line);
}

.visit-info > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--separator-line);
}

.visit-info dt {
  color: var(--accent);
  font-size: 0.72rem;
}

.visit-info dd {
  margin: 0;
  color: var(--chapter-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section--faq {
  --chapter-bg: #f2efe8;
  position: relative;
  z-index: 24;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 112px 0 148px;
  color: #000;
  background: #f2efe8;
}

.section--faq > .section__header,
.section--faq > .faq-list {
  width: min(920px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.section--faq .section__header h2,
.section--faq .faq-item summary {
  color: #000;
}

.section--faq .section__header p:not(.section-label),
.section--faq .faq-item p {
  color: #000;
}

.section--faq .faq-item {
  border-color: rgba(17, 24, 32, 0.16);
  background: rgba(255, 255, 255, 0.24);
}

.section--faq .faq-item summary::after {
  border-color: rgba(17, 24, 32, 0.2);
  color: #000;
}

@media (max-width: 980px) {
  :root {
    --max-width: min(780px, calc(100% - 32px));
  }

  .hero h1 {
    font-size: 6.4rem;
  }

  .section__header h2 {
    max-width: none;
    font-size: 3.4rem;
  }
}

@media (max-width: 720px) {
  :root {
    --max-width: calc(100% - 24px);
  }

  #about,
  #food,
  #faq,
  #visit {
    scroll-margin-top: 0;
  }

  .topbar {
    right: 14px;
    left: 14px;
    width: auto;
    padding: 10px 0;
    gap: 12px;
    transform: none;
    backdrop-filter: none;
  }

  .brand__mark {
    font-size: 1.35rem;
  }

  .brand__sub {
    display: none;
  }

  .topbar > .brand {
    transition: opacity 240ms ease;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 68px;
    height: 44px;
    padding: 0;
    border: 0;
    color: #f3f0e9;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle__cloud {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: currentColor;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  }

  .menu-toggle__lines {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    width: 22px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #000;
    transition: transform 280ms ease;
  }

  .topbar__nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 6vh, 58px);
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding:
      max(112px, calc(env(safe-area-inset-top) + 88px))
      28px
      max(42px, calc(env(safe-area-inset-bottom) + 24px));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: #000;
    transform: scale(1.015);
    transition:
      opacity 420ms ease,
      transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 600ms;
    pointer-events: none;
  }

  .topbar__nav-brand {
    display: grid;
    flex: 0 0 auto;
    gap: 6px;
    padding: 0;
    color: #fff;
    text-align: center;
    text-shadow: none;
  }

  .topbar__nav-brand > span {
    font-family: var(--font-brush);
    font-size: 2.25rem;
    line-height: 1;
  }

  .topbar__nav-brand > span > span {
    color: var(--accent);
  }

  .topbar__nav-brand small {
    color: #fff;
    font-family: var(--font-base);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .topbar__nav-links {
    display: grid;
    justify-items: center;
    gap: clamp(22px, 4vh, 34px);
    width: min(100%, 360px);
  }

  .topbar__nav-links a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: baseline;
    gap: 0.38em;
    width: 100%;
    padding: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: none;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 500ms ease,
      transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .topbar__nav-links a span {
    justify-self: end;
    font-family: var(--font-brush);
    font-size: clamp(1.2rem, 6vw, 1.7rem);
    line-height: 1;
    text-align: right;
  }

  .topbar__nav-links a i {
    justify-self: center;
    color: var(--accent);
    font-size: 0.9rem;
  }

  .topbar__nav-links a small {
    justify-self: start;
    font-family: var(--font-base);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .topbar__nav a::after {
    content: none;
  }

  .menu-scrim {
    position: fixed;
    inset: 0;
    z-index: 29;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    transition:
      opacity 260ms ease,
      visibility 0s linear 260ms;
    pointer-events: none;
  }

  body.is-menu-open .menu-scrim {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    pointer-events: auto;
  }

  body.is-menu-open .topbar__nav {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
    pointer-events: auto;
  }

  body.is-menu-open .topbar {
    z-index: 200;
  }

  body.is-menu-open .topbar > .brand {
    opacity: 0;
    pointer-events: none;
  }

  body.is-menu-open .topbar__nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  body.is-menu-open .topbar__nav-links a:nth-child(1) { transition-delay: 100ms; }
  body.is-menu-open .topbar__nav-links a:nth-child(2) { transition-delay: 150ms; }
  body.is-menu-open .topbar__nav-links a:nth-child(3) { transition-delay: 200ms; }
  body.is-menu-open .topbar__nav-links a:nth-child(4) { transition-delay: 250ms; }
  body.is-menu-open .topbar__nav-links a:nth-child(5) { transition-delay: 300ms; }

  body.is-menu-open .menu-toggle__lines i:first-child {
    transform: translateY(3.75px) rotate(36deg);
  }

  body.is-menu-open .menu-toggle__lines i:last-child {
    transform: translateY(-3.75px) rotate(-36deg);
  }

  .hero__tagline {
    max-width: 12em;
    font-size: 1.5rem;
  }

  .hero__facts {
    display: none;
  }

  .section__header p:not(.section-label) {
    font-size: 1rem;
    line-height: 1.9;
  }

  .faq-item summary {
    padding: 17px 44px 17px 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  html,
  body,
  main,
  .cloud-journey,
  .story-chapter,
  .section--faq {
    width: 100%;
    max-width: 100%;
  }

  .site-loader {
    backdrop-filter: none;
  }

  .cloud-system__item > .cloud {
    filter: none;
  }

  .cloud-system__note {
    width: auto;
  }

  .cloud-system__item--1 { width: min(78vw, 430px); --gather-x: -34vw; --gather-y: 1vh; --arrival-scale: 0.96; }
  .cloud-system__item--2 { width: min(72vw, 400px); --gather-x: 34vw; --gather-y: -30vh; --arrival-scale: 0.88; }
  .cloud-system__item--3 { width: min(76vw, 420px); --gather-x: 31vw; --gather-y: 31vh; --arrival-scale: 0.9; }
  .cloud-system__item--4 { width: min(34vw, 210px); --gather-x: -18vw; --gather-y: -29vh; --arrival-scale: 0.48; }
  .cloud-system__item--5 { width: min(40vw, 230px); --gather-x: -39vw; --gather-y: 31vh; --arrival-scale: 0.52; }
  .cloud-system__item--6 { width: min(32vw, 190px); --gather-x: 8vw; --gather-y: -17vh; --arrival-scale: 0.42; }
  .cloud-system__item--7 { width: min(28vw, 165px); --gather-x: -6vw; --gather-y: -40vh; --arrival-scale: 0.38; }
  .cloud-system__item--8 { width: min(34vw, 200px); --gather-x: 39vw; --gather-y: -4vh; --arrival-scale: 0.44; }
  .cloud-system__item--9 { width: min(30vw, 180px); --gather-x: -31vw; --gather-y: -16vh; --arrival-scale: 0.4; }
  .cloud-system__item--10 { width: min(27vw, 160px); --gather-x: 14vw; --gather-y: 9vh; --arrival-scale: 0.36; }
  .cloud-system__item--11 { width: min(32vw, 190px); --gather-x: -8vw; --gather-y: 41vh; --arrival-scale: 0.4; }
  .cloud-system__item--12 { width: min(26vw, 155px); --gather-x: 34vw; --gather-y: 15vh; --arrival-scale: 0.35; }

  .loader-copy {
    width: calc(100% - 32px);
    min-height: 220px;
    padding: 0;
  }

  .loader-welcome {
    gap: 9px;
    font-size: clamp(1.2rem, 6vw, 1.65rem);
    line-height: 1.65;
  }

  .loader-logo strong,
  .hero-logo-overlay strong {
    font-size: clamp(6rem, 31vw, 8rem);
  }

  .hero {
    min-height: 430svh;
  }

  .hero__sticky {
    padding: 0;
  }

  .hero__sticky::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 22%, rgba(0, 0, 0, 0.8) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16));
  }

  .hero__background {
    top: 0;
    bottom: auto;
    height: 106%;
    object-position: 88% center;
  }

  .hero__scene--brand {
    top: 62%;
    right: 16px;
    left: 16px;
    width: auto;
    text-align: left;
    filter: none;
  }

  .hero__scene--manifesto {
    top: 50%;
    right: auto;
    left: 50%;
    width: calc(100% - 32px);
    text-align: center;
    filter: none;
  }

  .hero__scene h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: 1.06;
  }

  .hero__scene > p:not(.kicker, .hero__tagline, .lead) {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .hero__scene--manifesto h2 {
    font-size: clamp(2.7rem, 12.5vw, 4rem);
    line-height: 1.25;
  }

  .hero__scene .hero__title {
    font-size: clamp(5.8rem, 27vw, 8rem);
  }

  .hero__scene--brand .lead {
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.82;
  }

  .hero__scroll {
    right: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 50%;
  }

  .cloud-journey {
    min-height: calc(100lvh + var(--journey-scroll-distance));
  }

  .cloud-journey__sticky::after {
    --journey-image-position: 88% center;
  }

  .journey-drift {
    width: clamp(90px, 34vw, 180px);
    filter: none;
  }

  .journey-drift--4,
  .journey-drift--6 {
    width: clamp(130px, 46vw, 240px);
  }

  .journey-cloud__shape {
    width: 88vw;
    height: 42lvh;
  }

  .story-chapter {
    min-height: 100svh;
    padding: 76px 0 112px;
  }

  .about-chapter {
    min-height: 100svh;
    margin-top: -100lvh;
    padding: 76px 0 104px;
  }

  .about-chapter .story-chapter__content {
    gap: 16px;
  }

  .about-chapter .story-chapter__photo img {
    max-height: 28svh;
    aspect-ratio: 16 / 9;
  }

  .about-chapter .story-chapter__copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.75rem);
    line-height: 1.1;
    white-space: nowrap;
  }

  .about-chapter .story-chapter__copy > p:not(.story-chapter__eyebrow, .about-chapter__note) {
    margin-top: 9px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .about-chapter__note {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  .owner-chapter {
    min-height: auto;
    padding: 88px 0 116px;
  }

  .owner-chapter::before {
    width: calc(100% - 32px);
  }

  .owner-chapter .story-chapter__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .owner-chapter__photo img {
    aspect-ratio: 4 / 3;
    object-position: 38% center;
  }

  .story-chapter__copy.owner-chapter__copy h2 {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
    line-height: 1.1;
  }

  .owner-chapter__signature {
    font-size: 0.9rem !important;
  }

  .sashimi-chapter {
    padding-bottom: 124px;
  }

  .food-addon {
    grid-template-columns: 1fr;
    gap: 32px;
    width: auto;
    min-width: 0;
    margin-top: 88px;
    margin-right: 16px;
    margin-left: 16px;
    padding-top: 54px;
  }

  .food-addon__photo {
    width: 100%;
  }

  .food-addon__copy h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .sake-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.64fr);
    gap: 12px;
    margin-top: 26px;
  }

  .sake-gallery__glass {
    margin-bottom: -14px !important;
  }

  .story-chapter__edge {
    top: -94px;
    width: 166vw;
    height: 170px;
  }

  .story-chapter--edge-a .story-chapter__edge {
    top: -64px;
    width: 158vw;
    height: 126px;
  }

  .story-chapter--edge-b .story-chapter__edge {
    top: -80px;
    width: 190vw;
    height: 150px;
    transform: translateX(-57%) scaleX(-1);
  }

  .story-chapter--edge-c .story-chapter__edge {
    top: -108px;
    width: 154vw;
    height: 192px;
    transform: translateX(-45%) scaleY(1.05);
  }

  .section--faq > .story-chapter__edge {
    top: -86px;
    width: 182vw;
    height: 158px;
    transform: translateX(-53%) scaleX(-1);
  }

  .story-chapter__content {
    grid-template-columns: 1fr;
    gap: 32px;
    width: auto;
    max-width: 520px;
    min-width: 0;
    margin-right: 16px;
    margin-left: 16px;
  }

  .story-chapter--reverse .story-chapter__photo,
  .story-chapter--reverse .story-chapter__copy {
    order: initial;
  }

  .story-chapter__photo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: center;
  }

  .story-chapter__photo::after {
    inset: 8px -8px -8px 8px;
  }

  .story-chapter__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: center;
    overflow-wrap: anywhere;
  }

  .story-chapter__eyebrow {
    margin-bottom: 10px;
    font-size: 0.64rem;
  }

  .story-chapter__copy h2 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .story-chapter__copy h3 {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .story-chapter__copy > p:not(.story-chapter__eyebrow) {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .chapter-menu {
    margin-top: 22px;
  }

  .chapter-menu > div {
    min-width: 0;
    padding: 12px 0;
  }

  .chapter-menu span {
    min-width: 0;
  }

  .chapter-menu b {
    font-size: 0.95rem;
  }

  .chapter-menu small {
    font-size: 0.74rem;
  }

  .chapter-menu strong {
    font-size: 0.88rem;
  }

  .visit-chapter {
    min-height: 100svh;
    padding: 76px 0;
  }

  .visit-chapter .story-chapter__copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.08;
  }

  .visit-info {
    margin-top: 22px;
  }

  .visit-info > div {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .visit-info dt {
    font-size: 0.64rem;
  }

  .visit-info dd {
    min-width: 0;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .section--faq {
    width: 100%;
    min-height: 100svh;
    padding: 76px 0 108px;
  }

  .section--faq > .section__header,
  .section--faq > .faq-list {
    width: auto;
    max-width: 520px;
    margin-right: 16px;
    margin-left: 16px;
  }

  .section__header {
    margin-bottom: 34px;
  }

  .section__header h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.08;
  }

  body.enhanced .reveal {
    transform: scale(0.99);
  }

  body.enhanced .reveal.is-visible {
    transform: scale(1);
  }

}

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

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

  body.enhanced .reveal {
    opacity: 1;
    -webkit-mask-position: left center;
    mask-position: left center;
    transform: none;
    filter: none;
  }

  body.enhanced .about-chapter .story-chapter__photo,
  body.enhanced .about-chapter .story-chapter__copy {
    opacity: 1;
    -webkit-mask-position: left center;
    mask-position: left center;
    transform: none;
  }
}
