/* ==========================================================================
   Yomogi Steam Salon LP
   Design: Quiet & Warmth — Japandi × La-vie pure
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --color-base: #FBFBFA;
  --color-text: #2C302E;
  --color-accent: #7A827A;
  --color-pale-green: #E8EDE8;
  --color-pale-green-hover: #DAE4DA;
  --color-muted: rgba(44, 48, 46, 0.45);

  --font-ja: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Noto Serif CJK JP", serif;
  --font-en: "Didot", "Bodoni MT", "Bodoni 72", "Noto Serif", serif;

  --spacing-xs: clamp(1rem, 2vw, 1.5rem);
  --spacing-sm: clamp(2rem, 4vw, 3rem);
  --spacing-md: clamp(4rem, 8vw, 7rem);
  --spacing-lg: clamp(8rem, 14vw, 14rem);
  --spacing-xl: clamp(10rem, 20vw, 20rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slider: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-reveal: 1.5s;
  --duration-mask: 1.8s;
  --duration-text-fill: 2.4s;
  --ease-text-fill: cubic-bezier(0.22, 1, 0.36, 1);
  --text-fill-pause: 0.2s;
  --text-fill-overlap: 0.25s;
  --duration-slider: 1.2s;
  --duration-slide-hold: 5s;

  --header-height: 5rem;
  --stack-gap: 2rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 2;
  letter-spacing: 0.12em;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

ul,
ol {
  list-style: none;
}

/* --- Typography utilities --- */
.section-label {
  font-family: var(--font-en);
  font-size: clamp(0.7rem, 0.85vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.section-heading {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: var(--spacing-sm);
}

.section-body {
  color: var(--color-text);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 2.2;
}

.section-body p {
  margin: 0;
}

/* --- Image mask reveal --- */
.image-mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-base);
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform var(--duration-mask) var(--ease-reveal);
  z-index: 2;
  pointer-events: none;
}

.image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.95) brightness(1.02);
  transform: scale(1.06);
  opacity: 0;
  transition:
    opacity var(--duration-mask) var(--ease-reveal) 0.15s,
    transform calc(var(--duration-mask) + 0.4s) var(--ease-reveal) 0.15s;
}

.image-mask.is-revealed::after {
  transform: scaleX(0);
}

.image-mask.is-revealed img {
  opacity: 1;
  transform: scale(1);
}

.image-mask--delay::after {
  transition-delay: 0.25s;
}

.image-mask--delay img {
  transition-delay: 0.4s;
}

/* --- Text reveal --- */
.reveal-lines .reveal-line {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-reveal) var(--ease-out),
    transform var(--duration-reveal) var(--ease-out);
}

.reveal-lines :is(p, span).reveal-line {
  display: block;
}

.menu__item.reveal-line {
  display: flex;
}

.shop__row.reveal-line {
  display: grid;
}

.experience__timeline li.reveal-line {
  display: flex;
}

.btn-reserve.reveal-line {
  display: inline-flex;
}

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

.reveal-lines.is-visible .reveal-line:nth-child(1) { transition-delay: 0s; }
.reveal-lines.is-visible .reveal-line:nth-child(2) { transition-delay: 0.12s; }
.reveal-lines.is-visible .reveal-line:nth-child(3) { transition-delay: 0.24s; }
.reveal-lines.is-visible .reveal-line:nth-child(4) { transition-delay: 0.36s; }
.reveal-lines.is-visible .reveal-line:nth-child(5) { transition-delay: 0.48s; }
.reveal-lines.is-visible .reveal-line:nth-child(6) { transition-delay: 0.6s; }
.reveal-lines.is-visible .reveal-line:nth-child(7) { transition-delay: 0.72s; }
.reveal-lines.is-visible .reveal-line:nth-child(8) { transition-delay: 0.84s; }
.reveal-lines.is-visible .reveal-line:nth-child(9) { transition-delay: 0.96s; }
.reveal-lines.is-visible .reveal-line:nth-child(10) { transition-delay: 1.08s; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  pointer-events: auto;
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.header__logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.header__logo-ja {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.header__nav-list {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.header__nav a {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--color-text);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.4s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-out);
}

.header__nav a:hover {
  color: var(--color-accent);
}

.header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ==========================================================================
   Hero — Main Visual
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-height);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  position: relative;
}

.hero__copy {
  position: absolute;
  top: 12%;
  left: clamp(1.5rem, 8vw, 10rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 2.2;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.hero__title .reveal-line {
  white-space: nowrap;
}

.hero__subtitle {
  font-family: var(--font-en);
  font-size: clamp(0.65rem, 0.9vw, 0.8125rem);
  letter-spacing: 0.15em;
  color: var(--color-accent);
  max-width: 14em;
  line-height: 1.9;
}

.hero__visual {
  position: absolute;
  top: 8%;
  right: clamp(0, 3vw, 4rem);
  width: clamp(220px, 38vw, 480px);
  height: clamp(380px, 72vh, 820px);
  margin: 0;
  z-index: 1;
  will-change: transform;
}

.hero__visual .image-mask {
  height: 100%;
}

/* ==========================================================================
   Concept
   ========================================================================== */
.concept {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  position: relative;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  min-height: 70vh;
}

.concept__visual {
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 5vw, 8%);
  width: clamp(200px, 32vw, 380px);
  height: clamp(320px, 55vw, 580px);
  margin: 0;
  z-index: 1;
  will-change: transform;
}

.concept__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(100%, 520px);
  padding-top: clamp(8rem, 18vw, 16rem);
  padding-right: clamp(0, 4vw, 3rem);
  margin-top: clamp(4rem, 10vw, 8rem);
}

/* --- Text fill reveal (NSSG-style) --- */
.text-fill:not(.is-ready) [data-text-fill-group] {
  visibility: hidden;
}

.text-fill.is-ready [data-text-fill-group] {
  visibility: visible;
}

.text-fill__group {
  position: relative;
}

.text-fill__group + .text-fill__group {
  margin-top: 0;
}

.text-fill__ghost,
.text-fill__ink {
  will-change: clip-path;
}

.text-fill__ghost {
  opacity: 0.25;
  clip-path: inset(0 100% 0 0);
}

.text-fill__ink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
}

.text-fill.is-reduced .text-fill__ghost,
.text-fill.is-reduced .text-fill__ink {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.text-fill.is-reduced .text-fill__ghost {
  display: none;
}

.concept__text .section-heading {
  margin-bottom: var(--spacing-sm);
}

.concept__text .section-heading span {
  display: block;
}

.concept__text .section-body__spacer {
  height: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}

/* ==========================================================================
   Experience — Magazine layout
   ========================================================================== */
.experience {
  padding: var(--spacing-lg) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.experience__intro {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  min-height: 90vh;
}

.experience__text {
  position: relative;
  z-index: 3;
  width: min(100%, 480px);
  margin-left: auto;
  padding-top: clamp(2rem, 8vw, 6rem);
  padding-right: clamp(0, 8vw, 12%);
}

.experience__visual {
  position: absolute;
  margin: 0;
  will-change: transform;
}

.experience__visual--primary {
  top: 0;
  left: clamp(0, 2vw, 5%);
  width: clamp(240px, 42vw, 520px);
  height: clamp(300px, 50vw, 640px);
  z-index: 1;
}

.experience__visual--secondary {
  bottom: 5%;
  right: clamp(1rem, 8vw, 15%);
  width: clamp(160px, 24vw, 280px);
  height: clamp(200px, 32vw, 360px);
  z-index: 2;
}

@media (min-width: 769px) {
  .experience__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    grid-template-rows: auto auto;
    gap: 0 clamp(4rem, 10vw, 12rem);
    min-height: auto;
    align-items: start;
    padding-top: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 4rem);
  }

  .experience__visual--primary {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    top: auto;
    left: auto;
    justify-self: end;
    width: min(100%, 460px);
    height: clamp(360px, 42vw, 540px);
    margin-top: clamp(1rem, 3vw, 2rem);
  }

  .experience__visual--secondary {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    justify-self: start;
    width: min(58%, 280px);
    height: clamp(220px, 26vw, 320px);
    margin-top: clamp(-3rem, -6vw, -2rem);
    margin-left: clamp(0, 4vw, 5%);
    z-index: 2;
  }

  .experience__text {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    margin-left: 0;
    width: 100%;
    max-width: 440px;
    padding-top: 0;
    padding-right: 0;
    z-index: 1;
  }
}

.experience__timeline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1400px;
  margin: var(--spacing-md) auto 0;
  padding: var(--spacing-md) clamp(1.5rem, 6vw, 5rem) 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-top: 1px solid rgba(122, 130, 122, 0.25);
}

.experience__timeline li {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  letter-spacing: 0.14em;
  line-height: 2;
}

.timeline__num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.timeline__note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Benefits — Cinematic slider
   ========================================================================== */
.benefits {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  overflow: hidden;
}

.benefits__layout {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--spacing-md);
}

.benefits__header {
  padding-left: clamp(0, 8vw, 12%);
  max-width: 520px;
}

.benefits__slider {
  margin-left: auto;
  width: min(100%, 520px);
  padding-right: clamp(0, 4vw, 3rem);
}

.benefits__card {
  display: flex;
  flex-direction: column;
}

.benefits__photo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-base);
}

.benefits__photo-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: transform, opacity, clip-path;
}

.benefits__photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.95) brightness(1.02);
  transform: scale(1.06);
  will-change: transform;
}

.benefits__photo-layer.is-current img {
  animation: benefits-photo-zoom var(--duration-slide-hold) var(--ease-out) forwards;
}

.benefits__photo-layer:not(.is-current) img {
  animation: none;
}

.benefits__photo-layer:not(.is-current):not(.is-exiting):not(.is-entering) {
  clip-path: inset(0 100% 0 0);
  transform: translateX(12%);
}

.benefits__photo-layer.is-current {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}

.benefits__photo-layer.is-exiting {
  z-index: 1;
  animation: benefits-photo-out var(--duration-slider) var(--ease-slider) forwards;
}

.benefits__photo-layer.is-entering {
  z-index: 2;
  animation: benefits-photo-in var(--duration-slider) var(--ease-slider) forwards;
}

@keyframes benefits-photo-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-12%);
  }
}

@keyframes benefits-photo-in {
  from {
    opacity: 0;
    transform: translateX(12%);
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes benefits-photo-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.benefits__body {
  padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(1.25rem, 3vw, 1.75rem);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.1s var(--ease-slider),
    transform 1.1s var(--ease-slider);
}

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

.benefits__card-title {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-text);
}

.benefits__card-text {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 2.2;
  color: var(--color-text);
}

.benefits__progress {
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(0.25rem, 1vw, 0.5rem);
}

.benefits__progress-track {
  width: 100%;
  height: 1px;
  background: rgba(122, 130, 122, 0.2);
  position: relative;
  overflow: visible;
  margin: 0.45rem 0;
}

.benefits__dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.benefits__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-base);
  border: 1px solid rgba(122, 130, 122, 0.35);
  box-shadow: 0 0 0 1px var(--color-base);
  transition:
    background 0.5s var(--ease-slider),
    border-color 0.5s var(--ease-slider),
    transform 0.5s var(--ease-slider);
}

.benefits__dot.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.15);
}

.benefits__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transform-origin: left center;
  z-index: 1;
}

.benefits__progress-bar.is-running {
  animation: benefits-progress var(--duration-slide-hold) var(--ease-slider) forwards;
}

@keyframes benefits-progress {
  from { width: var(--progress-start, 0%); }
  to { width: var(--progress-end, 25%); }
}

@media (min-width: 769px) {
  .benefits__layout {
    grid-template-columns: minmax(28%, 42%) minmax(320px, 520px);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
  }

  .benefits__header {
    padding-left: clamp(2rem, 6vw, 8%);
    padding-top: clamp(2rem, 6vw, 4rem);
    grid-column: 1;
    grid-row: 1;
  }

  .benefits__slider {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-left: 0;
    width: 100%;
    justify-self: end;
  }
}

/* ==========================================================================
   About — Stacking cards on scroll
   ========================================================================== */
.salon-about {
  padding: var(--spacing-lg) 0 0;
  overflow: visible;
}

.about__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.about__header {
  max-width: 520px;
  margin: 0 auto var(--spacing-md);
  padding-left: clamp(0, 6vw, 8%);
  text-align: left;
}

.about__lead {
  margin-top: var(--spacing-xs);
}

.about__stack {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: clamp(8rem, 22vh, 14rem);
}

.about__card-slide {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem + var(--stack-i, 0) * var(--stack-gap));
  z-index: calc(10 + var(--stack-i, 0));
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  background: var(--color-base);
}

.about__card-slide:last-child {
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.about__card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background: var(--color-base);
  border-top: 1px solid rgba(122, 130, 122, 0.18);
  box-shadow: 0 12px 48px rgba(44, 48, 46, 0.04);
  transform-origin: center top;
}

.about__visual {
  margin: 0;
  aspect-ratio: 4 / 5;
  max-height: clamp(280px, 38vw, 400px);
  justify-self: end;
  width: 100%;
}

.about__visual .image-mask {
  height: 100%;
}

.about__body {
  padding: clamp(0.5rem, 2vw, 1rem) 0 0 0;
}

.about__step {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.about__title {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.about__text {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 2.1;
}

@media (min-width: 769px) {
  .about__header {
    margin-left: clamp(0, 4vw, 6%);
    margin-right: auto;
  }

  .about__stack {
    margin-left: auto;
    margin-right: clamp(0, 3vw, 5%);
  }

  .about__card-slide + .about__card-slide {
    margin-top: clamp(5rem, 12vh, 9rem);
  }

  .about__body {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem) 0 clamp(0.25rem, 1.5vw, 0.75rem);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .salon-about {
    --stack-gap: 1.25rem;
  }

  .about__card-slide + .about__card-slide {
    margin-top: clamp(3.5rem, 9vh, 6rem);
  }

  .about__card {
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .about__visual {
    max-height: clamp(220px, 32vw, 300px);
  }
}

/* ==========================================================================
   Menu — Pricing
   ========================================================================== */
.price-menu {
  padding: var(--spacing-md) 0 var(--spacing-xl);
}

.menu__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.menu__header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.menu__header .section-label {
  margin-bottom: var(--spacing-sm);
}

.menu__header .section-heading {
  margin-bottom: 0;
}

.menu__list {
  border-top: 1px solid rgba(122, 130, 122, 0.25);
}

.menu__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(122, 130, 122, 0.25);
}

.menu__item-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.menu__name {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.9;
}

.menu__time {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  line-height: 1.8;
}

.menu__price {
  font-family: var(--font-en);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu__item--featured {
  position: relative;
  padding-left: clamp(1rem, 2.5vw, 1.25rem);
  padding-right: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 0.5rem;
  border-bottom: none;
}

.menu__item--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-pale-green);
  z-index: 0;
}

.menu__item--featured .menu__item-main,
.menu__item--featured .menu__price {
  position: relative;
  z-index: 1;
}

.menu__note {
  margin-top: var(--spacing-sm);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  .menu__item:not(.menu__item--featured) {
    padding-left: clamp(1rem, 2.5vw, 1.25rem);
    padding-right: clamp(1rem, 2.5vw, 1.25rem);
  }
}

/* ==========================================================================
   Owner
   ========================================================================== */
.owner {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.owner__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  position: relative;
  min-height: 60vh;
}

.owner__visual {
  position: absolute;
  top: -5%;
  right: clamp(5%, 12vw, 18%);
  width: clamp(200px, 35vw, 360px);
  height: clamp(280px, 48vw, 480px);
  margin: 0;
  z-index: 1;
  will-change: transform;
}

.owner__content {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin: clamp(6rem, 14vw, 12rem) auto 0 clamp(0, 5vw, 8%);
  padding-bottom: var(--spacing-md);
}

/* ==========================================================================
   Access
   ========================================================================== */
.access {
  padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.access__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  position: relative;
}

.access__content {
  width: min(100%, 480px);
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-sm);
}

.access__note {
  font-size: 0.8125rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-top: 1.5rem !important;
}

.access__visual {
  position: relative;
  margin: 0 0 0 auto;
  width: min(100%, 720px);
  margin-right: clamp(-2rem, -4vw, 0);
  height: clamp(240px, 40vw, 420px);
  will-change: transform;
}

.access__visual .image-mask {
  height: 100%;
}

/* ==========================================================================
   Shop
   ========================================================================== */
.shop-info {
  padding: var(--spacing-lg) clamp(1.5rem, 6vw, 5rem) var(--spacing-xl);
  border-top: 1px solid rgba(122, 130, 122, 0.12);
}

.shop__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.shop__list {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.shop__row {
  display: grid;
  gap: 0.4rem;
}

.shop__term {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin: 0;
}

.shop__desc {
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  letter-spacing: 0.12em;
  line-height: 2;
  margin: 0;
}

.shop__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 130, 122, 0.28);
  padding-bottom: 0.1em;
  transition:
    color 0.45s ease,
    border-color 0.45s ease;
}

.shop__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.shop__link:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 3px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-pale-green);
  padding: var(--spacing-lg) clamp(1.5rem, 6vw, 5rem) var(--spacing-md);
  text-align: center;
}

.footer__inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer__copy {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.18em;
  line-height: 2;
  margin-bottom: var(--spacing-md);
}

.footer__actions {
  margin-bottom: var(--spacing-md);
}

.btn-reserve {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-text);
  transition: color 0.5s ease;
}

.btn-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-pale-green-hover);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}

.btn-reserve:hover::before {
  transform: scaleY(1);
  transform-origin: top center;
}

.btn-reserve__label,
.btn-reserve__sub {
  position: relative;
  z-index: 1;
}

.btn-reserve__label {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  letter-spacing: 0.16em;
}

.btn-reserve__sub {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.footer__credit {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.footer__logo {
  display: block;
  width: clamp(136px, 22vw, 176px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  opacity: 0.88;
}

/* ==========================================================================
   Book button (fixed)
   ========================================================================== */
.book-btn {
  position: fixed;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 200;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.6s var(--ease-out),
    visibility 0.6s,
    transform 0.6s var(--ease-out);
  overflow: hidden;
}

.book-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-btn__fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-pale-green-hover);
  transform: scale(0);
  transition: transform 0.55s var(--ease-out);
}

.book-btn:hover .book-btn__fill {
  transform: scale(1);
}

.book-btn__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .hero__copy {
    top: 18%;
    left: 1.5rem;
    gap: 1.25rem;
    max-width: 42vw;
  }

  .hero__title {
    gap: 0.85rem;
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  }

  .hero__subtitle {
    font-size: 0.625rem;
    max-width: 11em;
  }

  .hero__visual {
    top: auto;
    bottom: 5%;
    right: 1rem;
    width: 55vw;
    height: 55vh;
  }

  .concept__visual {
    position: relative;
    left: auto;
    width: 70%;
    height: 360px;
    margin-bottom: 2rem;
  }

  .concept__content {
    margin-left: 0;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
  }

  .experience__text {
    margin-left: 0;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 2rem;
  }

  .experience__visual--primary {
    position: relative;
    top: auto;
    left: auto;
    width: 85%;
    height: 320px;
    margin-bottom: -4rem;
  }

  .experience__visual--secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 60%;
    height: 220px;
    margin-left: auto;
    margin-top: -2rem;
  }

  .experience__intro {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .experience__timeline {
    flex-direction: column;
    writing-mode: horizontal-tb;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .experience__timeline li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .benefits {
    padding: clamp(3.5rem, 10vw, 5rem) 0 clamp(3rem, 8vw, 4.5rem);
  }

  .benefits__layout {
    gap: clamp(1.5rem, 5vw, 2rem);
    padding: 0 clamp(1.5rem, 5vw, 1.75rem);
  }

  .benefits__header {
    max-width: none;
  }

  .benefits__header .section-label {
    margin-bottom: clamp(0.75rem, 3vw, 1rem);
  }

  .benefits__header .section-heading {
    margin-bottom: 0;
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
    line-height: 1.95;
  }

  .benefits__slider {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .benefits__card {
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }

  .benefits__photo-stage {
    aspect-ratio: auto;
    height: clamp(260px, 72vw, 340px);
    width: 100%;
  }

  .benefits__body {
    padding: clamp(0.5rem, 2vw, 0.75rem) 0 clamp(0.75rem, 2.5vw, 1rem);
  }

  .benefits__card-title {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .benefits__card-text {
    font-size: 0.8125rem;
    line-height: 2;
    letter-spacing: 0.11em;
  }

  .benefits__progress {
    padding: clamp(0.85rem, 3vw, 1.15rem) 0 clamp(0.25rem, 1vw, 0.5rem);
  }

  .salon-about {
    padding: clamp(3.5rem, 10vw, 5rem) 0 0;
    --stack-gap: 0.875rem;
  }

  .about__inner {
    padding: 0 clamp(1.5rem, 5vw, 1.75rem);
  }

  .about__header {
    padding-left: 0;
    margin-bottom: clamp(1.5rem, 5vw, 2rem);
  }

  .about__header .section-heading {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
    margin-bottom: 0;
  }

  .about__stack {
    padding-bottom: clamp(4rem, 12vh, 6rem);
  }

  .about__card-slide {
    padding-bottom: clamp(0.75rem, 2vh, 1.25rem);
  }

  .about__card-slide + .about__card-slide {
    margin-top: clamp(2.5rem, 9vh, 4.5rem);
  }

  .about__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(0.5rem, 2.5vw, 0.75rem) clamp(0.5rem, 1.5vw, 0.75rem);
    border-top: 1px solid rgba(122, 130, 122, 0.18);
    box-shadow: 0 8px 32px rgba(44, 48, 46, 0.04);
  }

  .about__visual {
    max-height: none;
    aspect-ratio: 16 / 11;
    justify-self: stretch;
    margin-left: calc(-1 * clamp(0.5rem, 2.5vw, 0.75rem));
    margin-right: calc(-1 * clamp(0.5rem, 2.5vw, 0.75rem));
    width: calc(100% + 2 * clamp(0.5rem, 2.5vw, 0.75rem));
  }

  .about__body {
    padding: 0 clamp(0.25rem, 1.5vw, 0.5rem);
  }

  .about__text {
    font-size: 0.8125rem;
    line-height: 2;
  }

  .price-menu {
    padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(3.5rem, 10vw, 5rem);
  }

  .menu__inner {
    padding: 0 clamp(1.5rem, 5vw, 1.75rem);
  }

  .menu__item {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.75rem, 2.5vw, 1rem);
  }

  .menu__price {
    margin-left: auto;
  }

  .menu__item--featured {
    margin-left: 0;
    margin-right: 0;
  }

  .shop-info {
    padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 5vw, 1.75rem) clamp(3rem, 8vw, 4.5rem);
  }

  .experience__timeline li.reveal-line {
    flex-direction: column;
  }

  .owner__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 75%;
    height: 320px;
    margin: 0 auto 2rem;
  }

  .owner__content {
    margin: 0;
    width: 100%;
  }

  .access__visual {
    margin-right: 0;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(40vw, 500px);
    gap: clamp(4rem, 10vw, 12rem);
    align-items: center;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) clamp(2rem, 6vw, 5rem) clamp(2rem, 5vh, 4rem);
  }

  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    justify-self: end;
    align-self: center;
    padding-right: clamp(1rem, 3vw, 2rem);
    z-index: 2;
    max-width: none;
  }

  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 500px;
    height: clamp(480px, 78vh, 860px);
    justify-self: end;
    z-index: 1;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .concept__content {
    width: min(100%, 440px);
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-lines .reveal-line {
    opacity: 1;
    transform: none;
  }

  .image-mask::after {
    display: none;
  }

  .image-mask img {
    opacity: 1;
    transform: none;
  }

  .benefits__photo-layer.is-exiting,
  .benefits__photo-layer.is-entering {
    animation: none;
  }

  .benefits__photo-layer.is-current img {
    animation: none;
    transform: none;
  }

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

  .benefits__progress-bar.is-running {
    animation: none;
    width: 100%;
  }

  .text-fill__ghost,
  .text-fill__ink {
    clip-path: inset(0 0 0 0) !important;
    animation: none !important;
  }
}