: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;
}

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

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;
}

.hero-sub-jp__mobile {
  display: none;
}

.mobile-break {
  display: none;
}

.text-no-break {
  white-space: nowrap;
}

.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;
}

/* keep each phrase intact so the heading only wraps at natural breaks */
.h2-jp--phrases span {
  display: inline-block;
}

.h2-jp {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: pretty;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.45;
  margin: 0;
  max-width: 100%;
}

.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.loader-pending {
  overflow: hidden;
}

body.is-site-loading {
  overflow: hidden;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, #050607 100%);
  color: var(--white);
  isolation: isolate;
  pointer-events: auto;
  opacity: 1;
  animation: loaderExit 520ms cubic-bezier(0.4, 0, 0.2, 1) 1980ms forwards;
}

html.loader-pending .site-loader {
  display: grid;
}

.site-loader[hidden],
html.loader-complete .site-loader {
  display: none;
}

.site-loader__logo {
  position: relative;
  z-index: 2;
  width: clamp(132px, 13vw, 196px);
  height: auto;
  opacity: 0;
  animation: loaderLogoFadeIn 1200ms cubic-bezier(0.4, 0, 0.2, 1) 220ms forwards;
  will-change: opacity;
}

@keyframes loaderLogoFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loaderExit {
  to {
    opacity: 0;
    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/production/hero-ocean-living.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-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 108%;
  overflow: hidden;
  background: var(--night);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(var(--slide-from-scale, 1.01)) translate3d(var(--slide-from-x, 0), var(--slide-from-y, 0), 0);
  transform-origin: center;
  will-change: opacity, transform;
}

html.hero-slideshow-started .hero-slide {
  animation-name: heroSlide;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

html:not(.hero-slideshow-started) .hero-slide--01 {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, 50% 56%);
  filter: saturate(0.86) contrast(1.04) brightness(0.94);
}

.hero-slide--01 {
  --slide-position: 50% 56%;
  --slide-from-x: -1.4%;
  --slide-from-y: -0.8%;
  --slide-to-x: 1.2%;
  --slide-to-y: 0.8%;
  animation-delay: -1s;
}

.hero-slide--02 {
  --slide-position: 52% 54%;
  --slide-from-x: 1.1%;
  --slide-from-y: 0.7%;
  --slide-to-x: -1.2%;
  --slide-to-y: -0.6%;
  animation-delay: 3s;
}

.hero-slide--03 {
  --slide-position: 48% 54%;
  --slide-from-scale: 1.04;
  --slide-to-scale: 1.14;
  --slide-from-x: -0.6%;
  --slide-from-y: 0.2%;
  --slide-to-x: 0.5%;
  --slide-to-y: -0.3%;
  animation-delay: 7s;
}

.hero-slide--04 {
  --slide-position: 50% 52%;
  --slide-from-x: 0.8%;
  --slide-from-y: -0.8%;
  --slide-to-x: -1%;
  --slide-to-y: 0.8%;
  animation-delay: 11s;
}

.hero-slide--05 {
  --slide-position: 62% 50%;
  --slide-from-x: -0.8%;
  --slide-from-y: 0.5%;
  --slide-to-x: 0.9%;
  --slide-to-y: -0.5%;
  animation-delay: 15s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(var(--slide-from-scale, 1.01)) translate3d(var(--slide-from-x, 0), var(--slide-from-y, 0), 0);
  }

  5%,
  17% {
    opacity: 1;
  }

  25%,
  100% {
    opacity: 0;
    transform: scale(var(--slide-to-scale, 1.035)) translate3d(var(--slide-to-x, 0), var(--slide-to-y, 0), 0);
  }
}

.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;
  max-width: 760px;
  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);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 14px;
}
.hero-links .hero-link {
  margin-top: 0;
}

@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);
}

.sauna-head .chapter::before {
  display: none;
}

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

/* combined full-screen Story + View section */
.story-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--night);
}
.story-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14);
  will-change: transform;
}
.story-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 10, 0.5) 0%,
    rgba(8, 9, 10, 0.14) 28%,
    rgba(8, 9, 10, 0.52) 70%,
    rgba(8, 9, 10, 0.93) 100%
  );
}
.story-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 22vh, 240px);
  padding-bottom: clamp(72px, 12vh, 132px);
}
.story-hero__inner .h2-jp {
  margin-top: 26px;
  max-width: 22ch;
}
.story-hero__copy {
  display: grid;
  gap: 22px;
  margin-top: clamp(8px, 1.4vh, 16px);
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}
.story-hero__copy p {
  margin: 0;
  text-shadow: 0 1px 30px rgba(0, 0, 0, 0.55);
}
/* Story reuses the experience-media backdrop; oversize to avoid parallax gaps on a full-height section */
.story-hero .experience-media {
  top: -8%;
  bottom: -8%;
}

.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);
}

#view.photo-story {
  grid-template-columns: minmax(0, 1.36fr) minmax(440px, 1fr);
}

#outdoor-living.photo-story.is-reversed {
  grid-template-columns: minmax(440px, 1.14fr) minmax(0, 1.22fr);
}

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

@media (min-width: 981px) {
  #view .story-image {
    align-self: center;
    height: clamp(560px, 70vh, 640px);
    min-height: 0;
  }

  #outdoor-living .story-image {
    align-self: center;
    height: clamp(560px, 72vh, 680px);
    min-height: 0;
  }
}

.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,
.sauna-feature-media 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,
.sauna-feature-media::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;
}

/* outdoor living — compact full-bleed image band with text overlaid (distinct rhythm) */
.outdoor-band {
  position: relative;
  background: var(--night-soft);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.outdoor-band__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

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

.outdoor-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(9, 12, 15, 0.94) 0%,
    rgba(9, 12, 15, 0.78) 30%,
    rgba(9, 12, 15, 0.12) 56%,
    transparent 74%
  );
}

.outdoor-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(400px, 54vh, 540px);
  padding-top: clamp(48px, 7vh, 80px);
  padding-bottom: clamp(48px, 7vh, 80px);
}

.outdoor-band__copy {
  max-width: 440px;
  display: grid;
  gap: 18px;
}

.outdoor-band__copy p:not(.chapter) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.04em;
}

.outdoor-band__tag {
  position: absolute;
  right: 0;
  bottom: clamp(20px, 4vh, 34px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.outdoor-band__tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.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-head {
  max-width: 820px;
  margin: 0 auto clamp(68px, 10vh, 116px);
  text-align: center;
}

.sauna-head p:not(.chapter):not(.h2-sub) {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

/* keep each phrase intact so the copy only wraps at natural breaks */
.sauna-intro-copy span {
  display: inline-block;
}

.sauna-head-links {
  justify-content: center;
  gap: 16px 24px;
  margin-top: clamp(28px, 4vh, 44px);
}
.sauna-head-links .hero-link {
  opacity: 1;
  transform: none;
  animation: none;
  justify-content: space-between;
  gap: 40px;
  min-width: 320px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 240ms var(--ease), background-color 240ms var(--ease);
}
.sauna-head-links .hero-link:hover,
.sauna-head-links .hero-link:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* these links scroll down to the sauna sections — point the arrow downward */
.sauna-head-links .hero-link::after {
  content: "↓";
}

.sauna-head-links .hero-link:hover::after,
.sauna-head-links .hero-link:focus-visible::after {
  transform: translateY(4px);
}

/* low-emphasis annotation (sauna heaters) inside the sauna intro */
.sauna-note {
  margin-top: clamp(26px, 4vh, 40px);
  padding-left: 16px;
  border-left: 1px solid var(--line);
  max-width: 640px;
}
.sauna-note__tag {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.sauna-note__text {
  display: block;
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
}

/* abstract Indoor ∩ Outdoor motif (animated SVG) */
.sauna-motif {
  width: min(380px, 56%);
  margin: clamp(34px, 6vh, 60px) 0 0 auto;
}
.sauna-motif svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.sauna-motif__label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  fill: rgba(255, 255, 255, 0.4);
  text-anchor: middle;
}
.sauna-motif__label--out {
  fill: rgba(194, 167, 121, 0.62);
}
.sauna-motif .ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.5;
}
.sauna-motif__rings {
  transform-box: fill-box;
  transform-origin: center;
  animation: motifSpin 64s linear infinite;
}
.sauna-motif .ring--a {
  animation: motifBreatheA 9s ease-in-out infinite;
}
.sauna-motif .ring--b {
  animation: motifBreatheB 9s ease-in-out infinite;
}
.sauna-motif .steam {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 130;
  opacity: 0;
  transform-box: fill-box;
  animation: motifSteam 6.5s ease-in-out infinite;
}
.sauna-motif .steam--2 { animation-delay: 1.3s; }
.sauna-motif .steam--3 { animation-delay: 2.6s; }
.sauna-motif__dot {
  fill: var(--gold);
  transform-box: fill-box;
  transform-origin: center;
  animation: motifPulse 4.5s ease-in-out infinite;
}

@keyframes motifSpin { to { transform: rotate(360deg); } }
@keyframes motifBreatheA { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-7px); } }
@keyframes motifBreatheB { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(7px); } }
@keyframes motifSteam {
  0%   { opacity: 0; stroke-dashoffset: 130; transform: translateY(10px); }
  35%  { opacity: 0.5; }
  100% { opacity: 0; stroke-dashoffset: 0; transform: translateY(-16px); }
}
@keyframes motifPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.6); }
}

@media (max-width: 760px) {
  .sauna-motif { width: min(280px, 78%); margin-right: auto; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sauna-motif__rings,
  .sauna-motif .ring,
  .sauna-motif .steam,
  .sauna-motif__dot { animation: none; }
  .sauna-motif .steam { opacity: 0.3; stroke-dashoffset: 0; }
}

.sauna-feature-grid {
  display: grid;
  gap: clamp(72px, 10vh, 124px);
}

.sauna-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding-top: clamp(64px, 8vh, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sauna-feature:first-child {
  padding-top: 0;
  border-top: 0;
}

.sauna-feature--reversed {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.sauna-feature--reversed .sauna-feature-media {
  order: -1;
}

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

.feature-eyebrow {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 56px;
  letter-spacing: 12px;
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
}

.sauna-feature-copy h3 {
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.heater-note h3 {
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.35;
}

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

.detail-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* compact spec strip inside each sauna feature (Indoor / Outdoor) */
.feature-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 2px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.feature-specs > div {
  display: grid;
  gap: 4px;
}
.feature-specs dt {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-specs dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.feature-specs dd i {
  font-style: normal;
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--muted-strong);
  margin-left: 3px;
}
.feature-specs dd.is-text {
  font-size: 17px;
  font-family: var(--font-jp);
  letter-spacing: 0.06em;
}

.sauna-feature-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--night-soft);
}

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

.sauna-slider-track {
  position: absolute;
  inset: 0;
}

.sauna-feature-media .sauna-slider-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms var(--ease), filter 540ms var(--ease);
}

.sauna-feature-media .sauna-slider-image.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sauna-feature-media .sauna-slider-image.is-contained {
  object-fit: contain;
  background: var(--night-soft);
}

.sauna-slider-controls {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.sauna-slider-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(10, 11, 12, 0.42);
  color: currentColor;
  font-family: var(--font-sans);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.sauna-slider-button:hover,
.sauna-slider-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(10, 11, 12, 0.68);
}

.sauna-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sauna-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.sauna-slider-dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}

.heater-note {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: clamp(56px, 8vh, 88px);
}

.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-specs .heater-note {
  margin-top: 0;
}

.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;
  max-width: calc(100% - 48px);
  flex-wrap: wrap;
  row-gap: 4px;
}

.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);
}

/* labeled room gallery — large LDK anchor + tall transitional spaces break the rhythm */
.room-gallery {
  margin-top: clamp(64px, 9vh, 104px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, clamp(190px, 19vw, 320px));
  grid-template-areas:
    "feat feat bd1"
    "feat feat bd2"
    "jpn  kit  ent"
    "bal  park ent"
    "bal  park ter";
  gap: clamp(10px, 1vw, 16px);
}

.room-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--night-soft);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 720ms var(--ease), filter 540ms var(--ease);
}

.room-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.82), rgba(8, 12, 16, 0));
}

.room-card__name {
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.room-card__area {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.room-card__area i {
  font-style: normal;
  font-family: var(--font-jp);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.room-card__en {
  flex: 0 0 100%;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* explicit placement — feature is a 2x2 anchor, three spaces span two rows (portrait) */
.room-card--feature {
  grid-area: feat;
  aspect-ratio: auto;
}
.rc-bd1 { grid-area: bd1; }
.rc-bd2 { grid-area: bd2; }
.rc-jpn { grid-area: jpn; }
.rc-kit { grid-area: kit; }
.rc-ter { grid-area: ter; }
.rc-ent { grid-area: ent; aspect-ratio: auto; }
.rc-bal { grid-area: bal; aspect-ratio: auto; }
.rc-park { grid-area: park; aspect-ratio: auto; }

.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: block;
}

.stay-copy {
  max-width: 100%;
  text-align: right;
}

/* keep the Design heading on a single line on PC (wraps again on mobile) */
.stay-copy .h2-jp {
  max-width: none;
  white-space: nowrap;
}

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

.stay-copy h2 + p:not(.chapter) {
  margin-top: 32px;
}

.stay-copy p + p:not(.chapter) {
  /* margin-top: 16px; */
}

.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;
  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;
  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: 0;
  background: transparent;
  border: 0;
}

.booking-frame .book-widget {
  max-width: 100%;
  margin-inline: auto;
}

.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,
  .sauna-feature:hover .sauna-feature-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;
  }

  #view.photo-story,
  #outdoor-living.photo-story.is-reversed {
    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,
  .sauna-feature,
  .sauna-feature--reversed,
  .experience-grid,
  .facility-grid,
  .faq-grid,
  .reservation-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sauna-feature--reversed .sauna-feature-media {
    order: 0;
  }

  .sauna-feature-media {
    min-height: 520px;
  }

  .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;
  }
}

/* ===== Tablet refinement (portrait & landscape, ~761–1100px) ===== */
@media (min-width: 761px) and (max-width: 1100px) {
  /* stacked editorial blocks read as a contained, centered column — not full-bleed */
  .sauna-feature,
  .sauna-feature--reversed {
    gap: clamp(36px, 5vw, 52px);
    justify-items: center;
  }

  .sauna-feature-copy {
    width: 100%;
    max-width: 720px;
  }

  /* keep the stacked media in an elegant landscape proportion instead of a fixed tall block */
  .sauna-feature-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-height: 560px;
  }

  /* contain reservation copy so line length stays comfortable when single-column */
  .reservation-inner {
    max-width: 780px;
  }
}

/* Portrait-ish tablets: the 3-column magazine gallery gets cramped — use a balanced 2-up */
@media (min-width: 761px) and (max-width: 920px) {
  .room-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 12px;
  }

  .room-card {
    aspect-ratio: 4 / 3;
  }

  .room-card--feature {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
  }
}

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

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-size: 14px;
  }

  .site-loader__logo {
    width: clamp(148px, 43vw, 178px);
  }

  .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);
    width: 100%;
    max-width: 100vw;
    padding: 12px 20px;
    gap: 12px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: 86px;
  }

  .menu-toggle {
    grid-column: 3;
    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-slideshow {
    height: 104%;
  }

  .hero-slide--01 {
    --slide-position: 50% 50%;
  }

  .hero-slide--02 {
    --slide-position: 50% 50%;
  }

  .hero-slide--03 {
    --slide-position: 50% 50%;
  }

  .hero-slide--04 {
    --slide-position: 50% 50%;
  }

  .hero-slide--05 {
    --slide-position: 50% 50%;
  }

  .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;
  }

  .sauna-head-links {
    width: 100%;
  }

  .sauna-head-links .hero-link {
    min-width: 0;
    width: 100%;
    padding: 20px 24px;
  }

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

  .hero-sub-jp {
    max-width: 30ch;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-sub-jp__desktop {
    display: none;
  }

  .hero-sub-jp__mobile {
    display: inline;
  }

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

  .section {
    padding: 116px 0;
  }

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

  .intro-content,
  .intro-copy,
  .story-copy,
  .sauna-feature-copy,
  .heater-note,
  .stay-grid,
  .stay-copy,
  .reservation-body,
  .faq-list {
    max-width: 100%;
    min-width: 0;
  }

  .section-inner > *,
  .intro-content > *,
  .intro-copy > *,
  .story-copy > *,
  .sauna-head > *,
  .sauna-feature-copy > *,
  .heater-note > *,
  .stay-grid > *,
  .stay-copy > *,
  .reservation-body > * {
    max-width: 100%;
    min-width: 0;
  }

  .intro-content h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .intro-copy,
  .intro-copy p,
  .story-copy p:not(.chapter),
  .sauna-feature-copy p:not(.feature-eyebrow),
  .heater-note p:not(.feature-eyebrow),
  .stay-copy h2,
  .stay-copy p:not(.chapter) {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .stay-copy .h2-jp {
    white-space: normal;
  }

  .feature-eyebrow {
    font-size: clamp(40px, 13vw, 56px);
  }

  .sauna-feature-copy h3,
  .heater-note h3 {
    font-size: clamp(27px, 7.3vw, 34px);
    line-height: 1.42;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  /* longer heading — shrink so it settles into two balanced lines */
  .sauna-feature-copy h3.sauna-h3--dense {
    font-size: clamp(19px, 5.2vw, 25px);
  }

  .mobile-break {
    display: initial;
  }

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

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

  /* on mobile the band scrim runs bottom-up and the copy sits at the base */
  .outdoor-band::after {
    background: linear-gradient(
      180deg,
      rgba(9, 12, 15, 0.2) 0%,
      rgba(9, 12, 15, 0.55) 42%,
      rgba(9, 12, 15, 0.95) 100%
    );
  }

  .outdoor-band__inner {
    justify-content: flex-end;
    min-height: clamp(440px, 86vh, 620px);
    padding-bottom: clamp(40px, 7vh, 64px);
  }

  .outdoor-band__copy {
    max-width: 100%;
    gap: 14px;
  }

  .outdoor-band__tag {
    display: none;
  }

  .stay.section {
    padding-top: 92px;
  }

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

  .story-image figcaption,
  .stay-media figcaption,
  .sauna-feature-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: 120px;
    padding-bottom: 120px;
  }

  .sauna-head {
    margin-bottom: 68px;
  }

  .sauna-feature-grid {
    gap: 76px;
  }

  .sauna-feature {
    gap: 44px;
    padding-top: 64px;
  }

  .sauna-feature-media {
    min-height: 320px;
  }

  .sauna-slider-controls {
    top: 16px;
    right: 16px;
    bottom: auto;
    gap: 10px;
  }

  .sauna-slider-button {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .sauna-feature-copy {
    gap: 16px;
  }

  .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: 64px;
  }

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

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

  .room-gallery {
    margin-top: 56px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 10px;
  }

  /* drop the desktop areas/rows — feature runs full width, every other card pairs up 2-across */
  .room-card {
    aspect-ratio: 4 / 3;
  }

  .room-card--feature {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 10;
  }

  .room-card figcaption {
    padding: 32px 14px 13px;
  }

  .experience {
    padding: 120px 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: 108px 0;
  }

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

  .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: 120px 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 {
    display: none;
  }

  .mobile-reserve.is-visible {
    display: none;
  }

  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-slide,
  .hero-mark,
  .hero-content h1,
  .hero-sub-jp,
  .hero-sub,
  .hero-link,
  .hero-meta {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
  }

  .site-loader {
    animation: loaderExit 1ms linear 180ms forwards !important;
  }

  .site-loader__logo {
    animation: none !important;
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* =====================================================================
   Legal / info pages — privacy policy, 特定商取引法に基づく表記, 会社概要
   ===================================================================== */
.legal-page {
  background: var(--paper);
  min-height: 100svh;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}

.legal-header .brand img {
  width: clamp(118px, 13vw, 162px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-strong);
  transition: color 240ms var(--ease);
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--white);
}

.legal-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 9vh, 96px) 0 clamp(72px, 11vh, 128px);
}

.legal-eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-main h1 {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(27px, 4.2vw, 42px);
  line-height: 1.32;
  letter-spacing: 0.02em;
  margin: 0;
}

.legal-updated {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.legal-lead {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.05;
}

.legal-section {
  margin-top: clamp(38px, 6vh, 60px);
}

.legal-section h2 {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.05;
}

.legal-section ol,
.legal-section ul {
  margin: 0 0 14px;
  padding-left: 1.4em;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.05;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* definition table for 特商法表記 / 会社概要 */
.legal-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-table > div {
  display: grid;
  grid-template-columns: minmax(168px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.8;
}

.legal-table dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

/* highlight values the operator still needs to fill in */
.legal-fill {
  color: var(--gold);
  font-weight: 700;
}

.legal-note {
  margin-top: clamp(40px, 6vh, 60px);
  padding: 20px 22px;
  border: 1px dashed var(--line-light);
  color: var(--muted-strong);
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.95;
}

/* footer legal links (used on home + legal pages) */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 220ms var(--ease);
}

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

@media (max-width: 640px) {
  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}
