:root {
  --ink: #f5f5f3;
  --ink-soft: #d8dadc;
  --muted: #8b8e91;
  --muted-strong: #b2b5b8;
  --paper: #111315;
  --paper-deep: #060708;
  --paper-soft: #1c1e21;
  --white: #ffffff;
  --night: #0a0b0c;
  --night-soft: #16181a;
  --night-lifted: #1f2123;
  --sea: #7a9491;
  --gold: #c2a779;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-light: rgba(255, 255, 255, 0.18);
  --font-display: "Cormorant Garamond", "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-serif-jp: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Inter Tight", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --header-h: 84px;
  --max: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif-jp);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body.is-auth-locked {
  overflow: hidden;
}

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

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

button,
input,
summary {
  font: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(38px, 6.2vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.008em;
}

h2 {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.006em;
}

h3 {
  font-size: 22px;
  font-weight: 400;
}

.h2-sub,
.hero-sub-jp {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.h2-sub {
  display: block;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--night);
  padding: 8px 12px;
}

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

html.auth-pending {
  overflow: hidden;
}

html.auth-pending body > :not(.password-gate) {
  visibility: hidden;
  pointer-events: none;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(6, 7, 8, 0.86), rgba(6, 7, 8, 0.58)),
    url("assets/hero/hero-poster.jpeg") center / cover;
  color: var(--white);
}

.password-gate[hidden],
html.auth-unlocked .password-gate {
  display: none;
}

.password-gate__panel {
  width: min(100%, 460px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 11, 12, 0.76);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
}

.password-gate__logo {
  width: 132px;
  height: auto;
  margin-bottom: 34px;
}

.password-gate__eyebrow,
.password-gate__form label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.password-gate__eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
}

.password-gate__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 0.98;
}

.password-gate__lead {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.password-gate__lead span {
  display: block;
}

.password-gate__form {
  margin-top: 32px;
}

.password-gate__form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
}

.password-gate__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.password-gate__field:focus-within {
  border-color: rgba(255, 255, 255, 0.48);
}

.password-gate__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  outline: 0;
}

.password-gate__field button {
  min-width: 108px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 20px;
  background: var(--white);
  color: var(--night);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.password-gate__field button:hover,
.password-gate__field button:focus-visible {
  background: var(--gold);
}

.password-gate__error {
  min-height: 22px;
  margin-top: 10px;
  color: #f0b4a8;
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 48px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 11, 12, 0.42), rgba(10, 11, 12, 0));
  transition: background 360ms var(--ease), backdrop-filter 360ms var(--ease);
}

.site-header.is-scrolled,
body.is-menu-open .site-header {
  background: rgba(6, 7, 8, 0.78);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 116px;
  height: auto;
}

.global-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.global-nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.84);
  transition: color 240ms var(--ease);
}

.global-nav a span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
  margin-right: 8px;
  vertical-align: 2px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transition: left 340ms var(--ease), right 340ms var(--ease);
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--white);
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  left: 0;
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 220ms var(--ease);
}

.header-cta::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 300ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
}

.header-cta:hover::after,
.header-cta:focus-visible::after {
  width: 36px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(0.86) contrast(1.04) brightness(0.94);
  opacity: 0;
  animation: heroIn 1700ms var(--ease) 120ms forwards;
}

.hero-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
}

@keyframes heroIn {
  to {
    opacity: 1;
  }
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.36) 0%, rgba(10, 11, 12, 0) 28%, rgba(10, 11, 12, 0) 58%, rgba(10, 11, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 11, 12, 0.38), rgba(10, 11, 12, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding-bottom: clamp(80px, 11vh, 144px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.hero-text {
  display: grid;
  gap: 24px;
  max-width: 720px;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: heroTextIn 1000ms var(--ease) 320ms forwards;
}

.hero-mark span:first-child {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-content h1 {
  max-width: none;
  white-space: nowrap;
  font-weight: 300;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 1100ms var(--ease) 540ms forwards;
}

.hero-sub-jp {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: heroTextIn 1100ms var(--ease) 760ms forwards;
}

.hero-sub {
  max-width: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroTextIn 1100ms var(--ease) 940ms forwards;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin-top: 8px;
  padding: 12px 0 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 1100ms var(--ease) 1140ms forwards;
  transition: border-color 240ms var(--ease), gap 320ms var(--ease);
}

.hero-link::after {
  content: "→";
  display: inline-block;
  transition: transform 320ms var(--ease);
}

.hero-link:hover,
.hero-link:focus-visible {
  border-color: var(--white);
  gap: 18px;
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
  transform: translateX(4px);
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  align-self: end;
  display: grid;
  gap: 6px;
  text-align: right;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: heroTextIn 1000ms var(--ease) 1360ms forwards;
}

.hero-meta strong {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(96px, 13vh, 152px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
}

.chapter {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 36px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.chapter b {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.52);
}

.chapter::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

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

.intro-inner {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.intro-inner > .chapter {
  margin: 0;
  padding-top: 6px;
}

.intro-content {
  max-width: 680px;
}

.intro-content .h2-sub {
  margin-top: 20px;
}

.intro-copy {
  display: grid;
  gap: 22px;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.photo-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(420px, 1fr);
  background: var(--night-soft);
  color: var(--ink);
  overflow: hidden;
}

.photo-story.is-reversed {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1.55fr);
}

.photo-story.is-reversed .story-image {
  order: 2;
}

.story-image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: filter 560ms var(--ease);
}

.story-image figcaption,
.stay-media figcaption,
.location-media figcaption,
.photo-panel figcaption,
.amenity-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.story-image figcaption::before,
.stay-media figcaption::before,
.location-media figcaption::before,
.photo-panel figcaption::before,
.amenity-photo figcaption::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.story-image::after,
.stay-media::after,
.location-media::after,
.photo-panel::after,
.amenity-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0));
}

.story-copy {
  align-self: center;
  padding: clamp(64px, 9vw, 124px) clamp(40px, 6vw, 100px);
  max-width: 600px;
  margin: 0 auto;
}

.story-copy h2 + p {
  margin-top: 32px;
}

.story-copy .h2-sub + p {
  margin-top: 34px;
}

.story-copy p:not(.chapter) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.story-copy p.h2-sub {
  margin-top: 32px;
}

.story-copy p.h2-sub + p {
  margin-top: 34px;
}

.story-copy p + p {
  margin-top: 16px;
}

.sauna-section {
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.sauna-section .section-inner {
  padding-top: clamp(96px, 13vh, 148px);
  padding-bottom: clamp(96px, 13vh, 148px);
}

.sauna-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: stretch;
}

.sauna-copy {
  display: grid;
  gap: 22px;
  align-self: center;
}

.sauna-copy p:not(.chapter) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.sauna-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.sauna-images > .photo-panel:first-child {
  grid-row: 1 / span 2;
}

.sauna-images > .photo-panel:not(.is-tall) {
  min-height: 280px;
}

.sauna-specs {
  margin-top: clamp(72px, 10vh, 120px);
  padding-top: clamp(48px, 6vh, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sauna-amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(64px, 9vh, 104px);
}

.amenity-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--night-soft);
}

.amenity-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: filter 540ms var(--ease);
}

.amenity-photo figcaption {
  align-items: baseline;
}

.amenity-photo figcaption em {
  font-style: normal;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.64);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(64px, 9vh, 104px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.marquee-track {
  --marquee-gap: 20px;
  display: flex;
  gap: var(--marquee-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  animation: marquee 72s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-track li {
  flex: 0 0 auto;
  margin: 0;
}

.marquee-track img {
  display: block;
  height: clamp(240px, 32vh, 380px);
  aspect-ratio: 16 / 9;
  width: auto;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 10px), 0, 0); }
}

.photo-panel {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: var(--night-soft);
}

.photo-panel.is-tall {
  min-height: 620px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: filter 540ms var(--ease);
}

.stay {
  background: var(--night-soft);
  color: var(--ink);
}

.stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.9fr);
  gap: clamp(64px, 8vw, 108px);
  align-items: center;
}

.stay-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.stay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.stay-copy {
  display: grid;
  gap: 22px;
}

.stay-copy p:not(.chapter) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.room-lines {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.room-lines div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.room-lines dt {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.room-lines dd {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.room-lines dd i {
  font-style: normal;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.46);
}

.room-lines small {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience {
  position: relative;
  padding: clamp(108px, 16vh, 176px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.experience-media {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.78), rgba(10, 11, 12, 0.46) 36%, rgba(10, 11, 12, 0.86)),
    linear-gradient(90deg, rgba(10, 11, 12, 0.58), rgba(10, 11, 12, 0.18));
}

.experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.timeline time {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timeline span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.facility {
  background: var(--paper);
  color: var(--ink);
}

.facility-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.facility-group {
  display: grid;
  gap: 20px;
}

.facility-group h4 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
}

.facility-group h4 em {
  font-style: normal;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.36);
}

.facility-group h4 + ul {
  margin-top: -8px;
}

.facility-group h4 ~ h4 {
  margin-top: 20px;
}

.facility-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.facility-group li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.facility-group li:last-child {
  border-bottom: 0;
}

.facility-group span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.facility-group span em {
  font-style: normal;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.46);
}

.facility-group b {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.facility-group b i {
  font-style: normal;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.location {
  background: var(--night-soft);
  color: var(--white);
  padding: clamp(96px, 13vh, 152px) 0;
  overflow: hidden;
}

.location-intro h2,
.location-intro .h2-sub {
  max-width: 720px;
}

.location-lead {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 5vw, 80px);
  margin-top: clamp(56px, 8vh, 88px);
  align-items: start;
}

.location-map {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.62) brightness(0.96);
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 16px;
  background: rgba(10, 11, 12, 0.84);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.location-map-link:hover,
.location-map-link:focus-visible {
  background: rgba(10, 11, 12, 0.96);
  border-color: rgba(255, 255, 255, 0.4);
}

.location-details {
  display: grid;
  gap: 36px;
  align-content: start;
}

.location-block h4 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
}

.location-block h4 em {
  font-style: normal;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.36);
}

.location-address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.location-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.location-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.location-list div:last-child {
  border-bottom: 0;
}

.location-list dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-serif-jp);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.location-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.reservation {
  position: relative;
  padding: clamp(108px, 16vh, 176px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.reservation-media {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.reservation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.88), rgba(10, 11, 12, 0.7) 40%, rgba(10, 11, 12, 0.94)),
    linear-gradient(90deg, rgba(10, 11, 12, 0.6), rgba(10, 11, 12, 0.34));
}

.reservation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
}

.reservation-body {
  display: grid;
  gap: 28px;
}

.reservation-body p:not(.chapter):not(.form-note) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.booking-frame {
  margin-top: 12px;
  width: 100%;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.booking-memo {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  max-width: 560px;
  margin-top: 12px;
}

.notify-form input[type="email"] {
  min-height: 56px;
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 15px;
  outline: none;
  transition: border-color 260ms var(--ease), background 260ms var(--ease);
}

.notify-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.notify-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  cursor: pointer;
  transition: background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.button::after {
  content: "→";
  margin-left: 14px;
  transition: transform 320ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(6px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 28px 56px 28px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transition: transform 280ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list p {
  max-width: 720px;
  padding: 0 56px 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.site-footer {
  padding: 86px 0 92px;
  background: var(--night);
  color: var(--white);
}

.footer-inner {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 22px;
  max-width: 420px;
}

.footer-brand img {
  width: 124px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.footer-meta {
  display: grid;
  gap: 18px;
  justify-items: end;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-meta nav a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.mobile-reserve {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease), clip-path 1200ms var(--ease);
}

.js [data-reveal="mask"] {
  clip-path: inset(10% 0 0 0);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@media (hover: hover) {
  .photo-story:hover .story-image img,
  .stay:hover .stay-media img,
  .photo-panel:hover img,
  .amenity-photo:hover img {
    filter: saturate(1) contrast(1.06) brightness(1.02);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 18px 32px;
    gap: 18px;
  }

  .global-nav {
    gap: 26px;
    font-size: 12px;
  }

  .header-cta {
    font-size: 12px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-meta {
    text-align: left;
    justify-self: start;
  }

  .photo-story,
  .photo-story.is-reversed,
  .stay-grid {
    grid-template-columns: 1fr;
  }

  .photo-story.is-reversed .story-image {
    order: 0;
  }

  .story-image,
  .stay-media {
    min-height: 580px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .location-map iframe {
    min-height: 460px;
  }

  .sauna-layout,
  .experience-grid,
  .facility-grid,
  .faq-grid,
  .reservation-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sauna-images {
    grid-template-columns: 1fr 1fr;
  }

  .sauna-amenities {
    grid-template-columns: 1fr 1fr;
  }

  .photo-panel.is-tall {
    min-height: 540px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 14px;
  }

  .password-gate {
    padding: 18px;
  }

  .password-gate__panel {
    padding: 30px 22px;
  }

  .password-gate__logo {
    width: 108px;
    margin-bottom: 28px;
  }

  .password-gate__lead {
    font-size: 13px;
  }

  .password-gate__field {
    grid-template-columns: 1fr;
  }

  .password-gate__field input {
    min-height: 54px;
  }

  .password-gate__field button {
    min-height: 50px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-h);
    padding: 12px 18px;
    gap: 12px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: 86px;
  }

  .menu-toggle {
    justify-self: end;
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -4px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, 4px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100svh - var(--header-h));
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    background: var(--night);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 32px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    color: rgba(255, 255, 255, 0.92);
  }

  .global-nav a span {
    margin-right: 12px;
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-media img,
  .hero-media video {
    height: 104%;
    object-position: 50% 56%;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(10, 11, 12, 0.14), rgba(10, 11, 12, 0.14)),
      linear-gradient(180deg, rgba(10, 11, 12, 0.5) 0%, rgba(10, 11, 12, 0) 28%, rgba(10, 11, 12, 0) 52%, rgba(10, 11, 12, 0.86) 100%);
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-bottom: 76px;
    gap: 22px;
  }

  .hero-text {
    gap: 20px;
  }

  .hero-content h1 {
    max-width: 14ch;
    white-space: normal;
  }

  .hero-mark {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .hero-link {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero-sub {
    max-width: 46ch;
    white-space: normal;
  }

  .hero-meta {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .section {
    padding: 92px 0;
  }

  .section-inner {
    width: calc(100% - 40px);
  }

  .chapter {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 26px;
  }

  .story-copy {
    padding: 64px 24px;
    max-width: 100%;
  }

  .story-image,
  .stay-media {
    min-height: 360px;
  }

  .story-image figcaption,
  .stay-media figcaption,
  .photo-panel figcaption,
  .amenity-photo figcaption {
    left: 20px;
    bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .sauna-section .section-inner {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .sauna-images {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .sauna-images > .photo-panel:first-child {
    grid-row: auto;
  }

  .sauna-amenities {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .photo-panel,
  .photo-panel.is-tall {
    min-height: 280px;
  }

  .stay-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .room-lines div {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 16px 0;
  }

  .room-lines dt {
    grid-column: 1;
    grid-row: 1;
    font-size: 14px;
  }

  .room-lines dd {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }

  .room-lines small {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .marquee {
    margin-top: 48px;
  }

  .marquee-track {
    animation-duration: 56s;
  }

  .marquee-track img {
    height: 200px;
    aspect-ratio: 16 / 9;
  }

  .experience {
    padding: 96px 0;
  }

  .timeline li {
    grid-template-columns: 78px 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .timeline time {
    font-size: 20px;
  }

  .facility-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .facility-group li {
    padding: 12px 0;
  }

  .facility-group b {
    font-size: 20px;
  }

  .location {
    padding: 80px 0;
  }

  .location-grid {
    margin-top: 40px;
    gap: 40px;
  }

  .location-map iframe {
    min-height: 380px;
  }

  .location-map-link {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .location-block h4 {
    margin-bottom: 14px;
  }

  .location-list dt {
    font-size: 13px;
  }

  .location-list dd {
    font-size: 11px;
    white-space: normal;
  }

  .reservation {
    padding: 96px 0;
  }

  .reservation-inner {
    padding: 0 24px;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding-right: 44px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .footer-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-meta nav {
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .mobile-reserve {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--night);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 360ms var(--ease), transform 360ms var(--ease);
  }

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

  body.is-menu-open .mobile-reserve {
    display: none;
  }
}

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

  .js [data-reveal],
  .js [data-reveal="mask"] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-media img,
  .hero-media video,
  .hero-mark,
  .hero-content h1,
  .hero-sub,
  .hero-link,
  .hero-meta {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
