/* ============================================
   澄 SUMI — Style
   Minimal Luxury / Ivory × Greige
   ============================================ */

/* ----------------------------------------
   CSS Variables
   ---------------------------------------- */
:root {
  --bg:          #FAF8F5;
  --bg-2:        #F0ECE6;
  --text:        #2A2A2A;
  --text-dim:    #8A8A8A;
  --text-pale:   #C0B8AD;
  --accent:      #B8A080;
  --line:        #E0D8CC;
  --dark:        #1A1A18;

  --ff-serif:    'Cormorant Garamond', 'Georgia', serif;
  --ff-mincho:   'Shippori Mincho', 'Yu Mincho', serif;
  --ff-sans:     'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}


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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text-dim);
  background: var(--bg);
  line-height: 2;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: none;
}

ul { list-style: none; }

::selection {
  background: var(--accent);
  color: #fff;
}

.section-label {
  display: block;
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}


/* ----------------------------------------
   Loading Screen
   ---------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
}

.loader__top,
.loader__bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--bg);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader__top { top: 0; }
.loader__bottom { bottom: 0; }

.loader__content {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.loader__kanji {
  font-family: var(--ff-mincho);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.1em;
}

.loader__counter {
  font-family: var(--ff-serif);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-pale);
  letter-spacing: 0.3em;
}

.loader.is-hidden .loader__top {
  transform: translateY(-100%);
}

.loader.is-hidden .loader__bottom {
  transform: translateY(100%);
}

.loader.is-hidden .loader__content {
  opacity: 0;
}

.loader.is-done {
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 1s;
}


/* ----------------------------------------
   Custom Cursor
   ---------------------------------------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor.is-text {
  width: 80px;
  height: 80px;
  background: rgba(42, 42, 42, 0.08);
  mix-blend-mode: normal;
}

.cursor__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor.is-text .cursor__text {
  opacity: 1;
}


/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.header--scrolled {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.header__logo-kanji {
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}

.header__logo-en {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-pale);
}

.header__nav {
  display: none;
}

.header__nav a {
  font-family: var(--ff-serif);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  position: relative;
  padding: 0.25rem 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.menu-btn {
  position: relative;
  width: 28px;
  height: 16px;
  z-index: 110;
}

.menu-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn__line:first-child { top: 0; }
.menu-btn__line:last-child { bottom: 0; }

.menu-btn.is-active .menu-btn__line:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-btn.is-active .menu-btn__line:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ----------------------------------------
   Mobile Menu Overlay
   ---------------------------------------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s;
}

.menu-overlay__nav {
  text-align: center;
}

.menu-overlay__nav ul {
  margin-bottom: 3rem;
}

.menu-overlay__nav li {
  margin-bottom: 1.5rem;
}

.menu-overlay__nav li a {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
}

.menu-overlay__info {
  font-size: 0.75rem;
  color: var(--text-pale);
  line-height: 1.8;
}

.menu-overlay__info a {
  color: var(--accent);
}


/* ----------------------------------------
   S1: Hero — Split Screen
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  overflow: hidden;
}

.hero__photo {
  position: relative;
  width: 50%;
  height: 100%;
  clip-path: inset(0 0 100% 0);
}

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

.hero__text {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: 15vw;
  font-weight: 300;
  color: var(--text);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.hero__copy {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero__kanji {
  display: block;
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.hero__tagline {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.hero__sub {
  font-family: var(--ff-mincho);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.hero__scroll span {
  font-family: var(--ff-serif);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-pale);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}


/* ----------------------------------------
   S2: Concept — Split Screen Pin
   ---------------------------------------- */
.concept {
  display: flex;
  min-height: 100svh;
}

.concept__left {
  position: relative;
  width: 50%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
}

.concept__vertical {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--text);
  opacity: 0.08;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  line-height: 1;
  user-select: none;
}

.concept__right {
  width: 50%;
  padding: 20vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept__texts {
  margin-bottom: 4rem;
}

.concept__text {
  font-family: var(--ff-mincho);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  line-height: 2.4;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.concept__text:last-child {
  margin-bottom: 0;
}

.concept__line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.concept__line.is-visible {
  transform: scaleX(1);
}


/* ----------------------------------------
   S3: Style — Fullscreen Wipe Gallery
   ---------------------------------------- */
.style {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--dark);
}

.style__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.style__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.style__slide:first-child {
  z-index: 1;
}

.style__slide:nth-child(2) { z-index: 2; }
.style__slide:nth-child(3) { z-index: 3; }
.style__slide:nth-child(4) { z-index: 4; }

.style__slide:not(:first-child) {
  clip-path: inset(0 100% 0 0);
}

.style__slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.style__slide-info {
  position: absolute;
  bottom: 8vh;
  left: 6vw;
  z-index: 10;
}

.style__slide-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.style__slide-cat {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.style__counter {
  position: absolute;
  bottom: 8vh;
  right: 6vw;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--ff-serif);
  color: rgba(255, 255, 255, 0.6);
}

.style__counter-current {
  font-size: 1.5rem;
  font-weight: 400;
}

.style__counter-sep {
  font-size: 0.75rem;
  font-weight: 300;
}

.style__counter-total {
  font-size: 0.75rem;
  font-weight: 300;
}


/* ----------------------------------------
   S4: Stylist — Split Crossfade
   ---------------------------------------- */
.stylist {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.stylist__panel {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
}

.stylist__panel.is-active {
  opacity: 1;
  visibility: visible;
}

.stylist__photo {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

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

.stylist__info {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6vw;
}

.stylist__number {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--text);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.stylist__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stylist__name-ja {
  font-family: var(--ff-mincho);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-pale);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.stylist__role {
  font-family: var(--ff-serif);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.stylist__bio {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 2.2;
  max-width: 28rem;
}

/* Progress */
.stylist__progress {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  right: 6vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 6vw;
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  color: var(--text-pale);
}

.stylist__progress-bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
}

.stylist__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--accent);
  transition: width 0.4s ease;
}


/* ----------------------------------------
   S5: Menu / Price
   ---------------------------------------- */
.menu-section {
  padding: 15vh 0;
  background: var(--bg-2);
}

.menu-section__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

.menu-section__list {
  margin-bottom: 3rem;
}

/* Accordion Row */
.menu-row {
  border-bottom: 1px solid var(--line);
}

.menu-row__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  cursor: none;
}

.menu-row__cat {
  font-family: var(--ff-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.menu-row__hint {
  margin-left: auto;
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-pale);
  letter-spacing: 0.1em;
  margin-right: 1.5rem;
}

.menu-row__icon {
  font-size: 0.875rem;
  color: var(--text-pale);
  transition: transform 0.3s ease;
}

.menu-row.is-open .menu-row__icon {
  transform: rotate(45deg);
}

/* Accordion Body */
.menu-row__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-row.is-open .menu-row__body {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.menu-row__item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(224, 216, 204, 0.4);
}

.menu-row__item:last-child {
  border-bottom: none;
}

.menu-row__item span:last-child {
  font-family: var(--ff-serif);
  letter-spacing: 0.05em;
}

.menu-section__note {
  font-size: 0.6875rem;
  color: var(--text-pale);
}


/* ----------------------------------------
   S6: Salon
   ---------------------------------------- */
.salon {
  padding: 0;
}

.salon__photo {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

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

.salon__info-wrap {
  padding: 12vh 2rem;
  background: var(--bg);
}

.salon__info {
  max-width: 700px;
  margin: 0 auto;
}

.salon__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.salon__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.salon__detail-row {
  display: flex;
  gap: 3rem;
}

.salon__detail-row dt {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--ff-serif);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.salon__detail-row dd {
  font-size: 0.8125rem;
  line-height: 2;
}

.salon__detail-row dd a {
  color: var(--text);
  position: relative;
}

.salon__detail-row dd a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.salon__detail-row dd a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ----------------------------------------
   S7: Reserve
   ---------------------------------------- */
.reserve {
  position: relative;
  padding: 18vh 2rem;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.reserve__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(10vw, 15vw, 20vw);
  font-weight: 300;
  color: var(--text);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.reserve__inner {
  position: relative;
  z-index: 1;
}

.reserve__title {
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.reserve__lead {
  font-family: var(--ff-mincho);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 2.2;
  margin-bottom: 4rem;
}

.reserve__channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.reserve__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.reserve__channel-label {
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.15em;
  position: relative;
}

.reserve__channel-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reserve__channel:hover .reserve__channel-label::after {
  width: 100%;
}

.reserve__channel-detail {
  font-size: 0.6875rem;
  color: var(--text-pale);
  letter-spacing: 0.1em;
}


/* ----------------------------------------
   S8: Footer
   ---------------------------------------- */
.footer {
  background: var(--dark);
  padding: 6rem 2rem;
  text-align: center;
}

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

.footer__brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__logo-kanji {
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}

.footer__logo-en {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
}

.footer__address {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.footer__sns a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

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

.footer__back-to-top {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
  position: relative;
  cursor: none;
}

.footer__back-to-top::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.footer__back-to-top:hover::after {
  background: var(--accent);
}

.footer__copy {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
}


/* ----------------------------------------
   Sample Banner
   ---------------------------------------- */
.sample-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(26, 26, 24, 0.9);
  padding: 0.5rem 1rem;
  text-align: center;
}

.sample-banner p {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.sample-banner a {
  color: var(--accent);
  text-decoration: underline;
}


/* ========================================
   Responsive — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    gap: 2rem;
  }

  .menu-btn {
    display: none;
  }

  .reserve__channels {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
}


/* ========================================
   Responsive — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .header {
    padding: 2rem 4rem;
  }

  .header--scrolled {
    padding: 1.25rem 4rem;
  }

  .header__nav {
    gap: 3rem;
  }

  .hero__text {
    padding: 6rem;
  }

  .stylist__info {
    padding: 6rem 8vw;
  }

  .salon__detail-row {
    gap: 4rem;
  }

  .salon__detail-row dt {
    width: 100px;
  }
}


/* ========================================
   Mobile Overrides (< 768px)
   ======================================== */
@media (max-width: 767px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  /* Hero — stack */
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
  }

  .hero__photo {
    width: 100%;
    height: 50vh;
    clip-path: none;
    opacity: 0.7;
  }

  .hero__text {
    width: 100%;
    height: auto;
    padding: 4rem 2rem 6rem;
  }

  .hero__bg-text {
    font-size: 30vw;
  }

  .hero__scroll {
    display: none;
  }

  /* Concept — stack */
  .concept {
    flex-direction: column;
  }

  .concept__left {
    width: 100%;
    min-height: 40vh;
  }

  .concept__right {
    width: 100%;
    padding: 10vh 2rem;
  }

  .concept__text {
    margin-bottom: 2rem;
  }

  /* Style */
  .style {
    height: 60vh;
  }

  .style__slide-title {
    font-size: 1.5rem;
  }

  .style__slide-info {
    bottom: 5vh;
    left: 2rem;
  }

  .style__counter {
    bottom: 5vh;
    right: 2rem;
  }

  /* Stylist — stack */
  .stylist {
    height: auto;
  }

  .stylist__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
  }

  .stylist__panel:not(:first-child) {
    display: none;
  }

  .stylist__photo {
    width: 100%;
    height: 60vh;
  }

  .stylist__info {
    width: 100%;
    padding: 4rem 2rem;
  }

  .stylist__progress {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 2rem 4rem;
  }

  /* Salon */
  .salon__photo {
    height: 40vh;
  }

  .salon__info-wrap {
    padding: 8vh 2rem;
  }

  .salon__detail-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .salon__detail-row dt {
    width: auto;
  }

  /* Reserve */
  .reserve {
    padding: 12vh 2rem;
  }

  /* Menu */
  .menu-section {
    padding: 10vh 0;
  }
}
