:root {
  --ink: #24211e;
  --muted: #746f69;
  --line: #dedad3;
  --paper: #f8f7f3;
  --soft: #eeeee8;
  --sage: #86907d;
  --coral: #dc8c78;
  --clay: #cdb7a1;
  --footer: #2f2923;
  --serif: 'Crimson Text', Georgia, serif;
  --sans: 'Noto Sans JP', system-ui, sans-serif;
  --jost: 'Jost', 'Noto Sans JP', system-ui, sans-serif;
  --content: 1360px;
  --gutter: 20px;
  --maxw: 1920px;
}

/* 콘텐츠 1360px · 양옆 20px 여백 · 화면 최대 1920px */
.page {
  max-width: var(--maxw);
  margin-inline: auto;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--maxw));
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 72px;
  padding-inline: max(var(--gutter), calc((100% - var(--content)) / 2));
  color: #fff;
  font-family: var(--jost);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(248, 247, 243, 0.95);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(36, 33, 30, 0.08);
  backdrop-filter: blur(8px);
}

.site-header.menu-active {
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.brand-logo {
  height: 40px;
  width: auto;
  aspect-ratio: 53 / 54; /* 로드 전에도 가로폭 예약 → 레이아웃 시프트(좌우 밀림) 방지 */
  flex-shrink: 0;
}

.brand-store {
  position: relative;
  padding-left: 13px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-store::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.35;
}

/* 흰색 로고: 헤더가 밝아지면 어둡게 반전 */
.site-header.scrolled .brand-logo {
  filter: invert(1) brightness(0.18);
}

.site-header.menu-active .brand-logo {
  filter: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  opacity: 0.86;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-arrow {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.header-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.menu-toggle {
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms ease;
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(3px) rotate(42deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-3px) rotate(-42deg);
}

/* 페이드인으로 등장 (슬라이드다운 X) */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  text-align: center;
  padding: 90px clamp(26px, 8vw, 88px) 42px;
  background: rgba(36, 33, 30, 0.98);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 360ms ease,
    visibility 360ms;
}

/* 네비 + 예약 버튼 (가운데 정렬, 세로 중앙) */
.menu-main {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(28px, 6vh, 56px);
}

/* 메뉴와 Follow 사이 예약 버튼 */
.menu-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-reserve .cta-arrow {
  width: 16px;
  height: 16px;
}

.menu-reserve:hover .cta-arrow {
  transform: translateX(3px);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  display: grid;
  justify-items: center;
  gap: clamp(10px, 2vw, 18px);
}

.menu-panel a {
  font-family: var(--serif);
  font-size: clamp(44px, 11vw, 118px);
  line-height: 0.92;
}

.menu-overlay.open .menu-panel a:hover {
  color: var(--coral);
}

/* 하단: Follow (가운데 정렬) */
.menu-foot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.menu-follow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--jost);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-follow-label {
  color: rgba(255, 255, 255, 0.5);
}

.menu-follow a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 160ms ease;
}

.menu-follow a:hover {
  color: var(--coral);
}

/* 요소 하나씩 등장 (스태거) */
.menu-anim {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.menu-overlay.open .menu-anim {
  opacity: 1;
  transform: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #2a2927;
}

/* 3장 사진: 배경에 맞춰 은은하게 줌인하며 페이드 인/아웃으로 순환 */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.45) contrast(0.92) brightness(0.82);
  opacity: 0;
  will-change: opacity, transform;
  animation: hero-kenburns 24s linear infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 8s;
}

.hero-slide:nth-child(3) {
  animation-delay: 16s;
}

@keyframes hero-kenburns {
  0% {
    opacity: 0;
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  6% {
    opacity: 1;
  }

  38% {
    opacity: 1;
  }

  44% {
    opacity: 0;
    transform: scale(1.18) translate3d(0, -1.6%, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1.26) translate3d(0, -2.6%, 0);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(19, 18, 17, 0.52),
      rgba(19, 18, 17, 0.18) 48%,
      rgba(19, 18, 17, 0.36)
    ),
    linear-gradient(0deg, rgba(19, 18, 17, 0.26), rgba(19, 18, 17, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 100svh;
  width: min(100% - var(--gutter) * 2, var(--content));
  margin: 0 auto;
  padding: 96px 0 64px;
  text-align: center;
  color: #fff;
}

.hero-frame {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(760px, 100% - 40px);
  padding: clamp(40px, 5vw, 58px) clamp(30px, 3.4vw, 48px);
}

/* 프레임은 영어 문구 왼쪽에서 시작해 한 흐름으로 돌아 문구 오른쪽에서 끝남 */
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--hero-frame-line), var(--hero-frame-line)) top left / 0 1px no-repeat,
    linear-gradient(var(--hero-frame-line), var(--hero-frame-line)) left bottom / 1px 0 no-repeat,
    linear-gradient(var(--hero-frame-line), var(--hero-frame-line)) right top / 1px 0 no-repeat;
  pointer-events: none;
  --hero-frame-line: rgba(255, 255, 255, 0.72);
}

.hero-frame.visible::before {
  animation: hero-frame-draw 1.2s cubic-bezier(0.65, 0, 0.2, 1) 0.58s forwards;
}

@keyframes hero-frame-draw {
  0% {
    background-size:
      0 1px,
      1px 0,
      1px 0;
  }

  28% {
    background-size:
      0 1px,
      1px 100%,
      1px 0;
  }

  72% {
    background-size:
      100% 1px,
      1px 100%,
      1px 0;
  }

  100% {
    background-size:
      100% 1px,
      1px 100%,
      1px 100%;
  }
}

/* 하단 캐치프레이즈: 문구 자리만 열고 양옆 선은 코너까지 연결 */
.hero-baseline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.hero-baseline-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.95;
  transform: scaleX(0);
}

.hero-baseline-rule:first-child {
  transform-origin: right center;
}

.hero-baseline-rule:last-child {
  transform-origin: right center;
}

.hero-frame.visible .hero-baseline-rule:first-child {
  animation: hero-rule-draw 0.42s cubic-bezier(0.33, 1, 0.68, 1) 0.16s forwards;
}

.hero-frame.visible .hero-baseline-rule:last-child {
  animation: hero-rule-draw 0.42s cubic-bezier(0.33, 1, 0.68, 1) 1.78s forwards;
}

@keyframes hero-rule-draw {
  to {
    transform: scaleX(1);
  }
}

.hero-en {
  flex: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
}

.hero-frame.visible .hero-en {
  animation: hero-en-in 0.7s ease 1.95s forwards;
}

@keyframes hero-en-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.section-heading h2,
.studio-copy h2,
.reservation-copy h2,
.access-copy h2,
.faq-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 {
  margin: 0;
  font-family: 'Crimson Text', 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: clamp(26px, 3.5vw, 48px);
}

.hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.section {
  width: min(100% - var(--gutter) * 2, var(--content));
  margin: 0 auto;
  padding-block: clamp(76px, 11vw, 142px);
}

.section-heading {
  width: min(100%, 650px);
  margin: 0 auto clamp(36px, 6vw, 58px);
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 6vw, 80px);
}

.jp-sub {
  margin: 0;
  color: var(--clay);
  font-size: clamp(15px, 1.8vw, 24px);
  letter-spacing: 0.04em;
}

.section-heading p:last-child {
  max-width: 600px;
  color: var(--muted);
}

.section-heading .jp-sub:last-child {
  color: var(--clay);
  text-align: center;
  margin: 0 auto;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  margin: 0 auto;
}

.about-gallery.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.about-gallery figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery.visible figure {
  opacity: 1;
  transform: translateY(0);
}

.about-gallery figure:nth-child(1) {
  transition-delay: 0ms;
}

.about-gallery figure:nth-child(2) {
  transition-delay: 120ms;
}

.about-gallery figure:nth-child(3) {
  transition-delay: 240ms;
}

.about-gallery figure:nth-child(4) {
  transition-delay: 360ms;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 360ms ease;
}

/* .about-gallery figure:hover img {
  transform: scale(1.06);
} */

/* Studio: 좌측 끝에서 시작하는 사진 슬라이더 + 우측 카피 */
.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  width: 100%;
  margin: 0 auto;
  padding-block: clamp(64px, 10vw, 120px);
}

.studio-slider {
  position: relative;
  min-width: 0; /* 그리드 아이템 안의 Swiper 폭 폭발 방지 */
  outline: none;
}

.studio-slider:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.studio-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.studio-slide {
  margin: 0;
}

.studio-slide img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  filter: saturate(0.78) brightness(1.04);
}

.studio-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3.4vw, 40px);
  margin-top: 30px;
}

/* Swiper 페이지네이션을 studio 스타일로 */
.studio-controls .studio-dots {
  position: static;
  display: flex;
  align-items: center;
  width: auto;
  bottom: auto;
  left: auto;
  gap: 13px;
}

.studio-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: var(--line);
  opacity: 1;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.studio-dots .swiper-pagination-bullet:hover {
  background: var(--clay);
}

.studio-dots .swiper-pagination-bullet-active {
  background: var(--clay);
  transform: scale(1.4);
}

.studio-arrows {
  display: flex;
  gap: 12px;
}

.studio-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    filter 200ms ease;
}

/* 이전: 아웃라인 / 다음: 클레이로 채움 */
.studio-arrow[data-prev]:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.studio-arrow[data-next] {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.studio-arrow[data-next]:hover {
  filter: brightness(0.93);
}

.studio-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.studio-copy h2,
.reservation-copy h2,
.access-copy h2,
.faq-content h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.studio-copy p:last-child,
.reservation-copy p,
.access-copy p {
  max-width: 470px;
}

.machines-section {
  position: relative;
  isolation: isolate;
}

/* 화면 끝에서 끝까지 끊임없이 흐르는 마키 워터마크 */
.watermark {
  position: absolute;
  left: 50%;
  bottom: 1%;
  z-index: 0;
  width: 100vw;
  margin: 0;
  overflow: hidden;
  transform: translate(-50%, -30%);
}

.machines-section > .section-heading,
.machine-grid,
.machine-controls {
  position: relative;
  z-index: 1;
}

.watermark-track {
  display: flex;
  width: max-content;
  animation: watermark-marquee 36s linear infinite;
}

.watermark-track span {
  flex: none;
  padding-right: 0.5em;
  color: rgba(148, 125, 92, 0.22);
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 156px);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

@keyframes watermark-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.machine-grid {
  max-width: 1320px;
  margin-inline: auto;
}

/* 데스크탑(스와이퍼 비활성): 3열 그리드 */
.machine-grid:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 60px);
}

/* 머신 페이지네이션은 모바일(슬라이드)에서만 표시 */
.machine-controls {
  display: none;
}

.machine-card {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 0 rgba(36, 33, 30, 0.12);
}

.machine-card {
  position: relative;
  aspect-ratio: 411 / 610; /* PC·모바일 동일 비율 (PC 기준) */
  overflow: hidden;
  text-align: center;
}

.machine-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.machine-card h3 {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.machine-card p {
  color: var(--muted);
  font-size: 13px;
}

.machine-card p {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap; /* left:50%로 좁아진 폭에서 자동 줄바꿈 방지 (PC 1줄) */
}

.machine-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65) brightness(1.06);
}

/* 메뉴표(お品書き) 스타일: 시간 — 점선 리더 — 가격 */
.price-menu {
  list-style: none;
  width: min(100%, 620px);
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px) 4px;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-row-time {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--jost);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--coral);
}

.price-row-time small {
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.price-row-amount {
  flex-shrink: 0;
  font-family: var(--jost);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--ink);
}

.price-row-ext .price-row-time {
  font-family: var(--sans);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.price-row-ext .price-row-amount {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--coral);
}

/* 세금 안내 */
.price-note {
  width: min(100%, 620px);
  margin: 22px auto 0;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
}

.reservation-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: clamp(560px, 32.5vw, 640px);
  background: #cdbba7;
  overflow: hidden;
  isolation: isolate;
}

.reservation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(205, 187, 167, 0.04), rgba(205, 187, 167, 0.3) 48%, #cdbba7 70%),
    rgba(205, 187, 167, 0.28);
  pointer-events: none;
}

.reservation-section img {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: min(72vw, 1380px);
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 46% 64%;
  filter: saturate(0.6) contrast(0.96) brightness(0.9);
  mix-blend-mode: multiply;
  transform: scale(1.65);
  transform-origin: 58% 50%;
}

.reservation-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(58px, 7vw, 96px) clamp(48px, 7vw, 112px);
  color: #fff;
}

.reservation-copy h2 {
  font-size: clamp(54px, 4.5vw, 76px);
  line-height: 0.95;
  color: #fff;
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.reservation-copy .jp-sub,
.faq-content .jp-sub {
  color: #fff;
}

.reservation-copy .jp-sub {
  margin-top: 22px;
  font-size: clamp(20px, 1.55vw, 28px);
  letter-spacing: 0.04em;
}

.reservation-note {
  margin: 28px 0 0;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.reservation-subnote {
  margin: 7px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* 흰색 알약 버튼: 아이콘 + RESERVE NOW + 화살표 */
.reservation-copy .reserve-cta {
  margin-top: 32px;
}

.reserve-cta {
  gap: 18px;
  min-height: 80px;
  min-width: min(350px, 100%);
  padding: 0 42px;
  font-size: 15px;
  letter-spacing: 0.2em;
}

.reserve-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reserve-cta .cta-arrow {
  width: 16px;
  height: 16px;
}

.reserve-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
  margin: 0 0 36px;
}

/* 오른쪽 정보 블록: 점포명 위, 그 아래 [주소+버튼 | 영업정보] 2열 */
.access-store {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 22px;
}

.access-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px clamp(40px, 5vw, 84px);
  align-items: start;
}

.access-info-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.access-addr {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

/* 영업정보: 라벨 / 값 형식, 구분선 없이 회색 */
.access-hours {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--muted);
}

.access-hours div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}

.access-hours dt {
  letter-spacing: 0.08em;
}

.access-hours dt::after {
  content: '/';
  margin-left: 8px;
}

.access-hours dd {
  margin: 0;
}

.button.outline {
  gap: 8px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button.outline:hover {
  background: var(--ink);
  color: #fff;
}

.button.outline:hover .cta-arrow {
  transform: translateX(3px);
}

.map {
  position: relative;
  width: 100%;
  height: clamp(280px, 36vw, 480px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: inset 0 0 0 1px rgba(36, 33, 30, 0.08);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(0.96);
}

.soon-section {
  width: 100%;
  max-width: none;
  background: #f1f0eb;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(100% - var(--gutter) * 2, var(--content));
  margin: 0 auto;
}

.soon-item {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 1px 0 rgba(36, 33, 30, 0.12);
}

.soon-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.soon-city {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.soon-tag {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soon-addr {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.soon-item dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.soon-item dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: 12px;
}

.soon-item dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.soon-item dd {
  margin: 0;
  font-size: 13px;
}

.soon-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 7;
  margin-top: 4px;
  background: linear-gradient(135deg, rgba(134, 144, 125, 0.18), rgba(220, 140, 120, 0.12));
  color: rgba(36, 33, 30, 0.35);
}

.soon-thumb img {
  width: 64px;
  height: auto;
  filter: brightness(0);
  opacity: 0.14;
}

.faq-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(74px, 10vw, 118px) clamp(22px, 5vw, 60px);
  overflow: hidden;
  color: #fff;
}

.faq-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75) brightness(0.56);
}

.faq-content {
  position: relative;
  width: min(100%, 760px);
  text-align: center;
}

.faq-content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  margin-top: 30px;
  background: rgba(248, 247, 243, 0.96);
  color: var(--ink);
  text-align: left;
}

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

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  color: var(--muted);
}

details[open] summary::after {
  content: '-';
}

/* PC: 전부 펼친 상태이므로 토글 비활성화 + 마커 숨김 */
.faq-list.faq-open-all summary {
  cursor: default;
  pointer-events: none;
}

.faq-list.faq-open-all summary::after {
  display: none;
}

details p {
  margin: -8px 0 0;
  padding: 0 28px 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  padding-block: 56px;
  padding-inline: max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--footer);
  color: #fff;
}

.footer-brand-col p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-cols h4 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-cols a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  transition: color 160ms ease;
  text-transform: uppercase;
}

.footer-cols a:hover {
  color: #fff;
}

/* 푸터 지점 'Coming Soon' 태그 */
.foot-soon {
  margin-left: 8px;
  font-family: var(--jost);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  vertical-align: middle;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  /* 부제(jp-sub)는 가운데 유지, 설명문만 좌측 정렬 */
  .section-heading p:last-child:not(.jp-sub) {
    text-align: left;
  }

  .about-gallery,
  .machine-grid,
  .soon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-section,
  .reservation-section,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .reservation-section {
    min-height: 620px;
  }

  .reservation-section::before {
    background:
      linear-gradient(180deg, rgba(205, 187, 167, 0.18), rgba(205, 187, 167, 0.7) 58%, #cdbba7),
      rgba(205, 187, 167, 0.26);
  }

  .reservation-section img {
    width: 100%;
    max-height: none;
    object-position: 42% 52%;
    transform: scale(1.9);
    transform-origin: 80% 79%;
  }

  .reservation-copy {
    grid-column: 1;
    align-self: end;
    padding: 280px 30px 64px;
  }

  /* 모바일: 타이틀·설명 → 슬라이드 순서 */
  .studio-section {
    padding-inline: 0;
    row-gap: 32px;
  }

  .studio-copy {
    order: -1;
    padding-inline: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
  body {
    font-size: 14px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 80px);
  }

  .section {
    width: unset;
    padding-inline: 30px;
  }

  .about-gallery,
  .machine-grid,
  .soon-grid,
  .access-detail dl {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .studio-arrows {
    display: none;
  }

  .studio-controls {
    padding-inline: 30px;
    justify-content: center;
  }

  .studio-copy {
    padding: 0 30px;
  }

  .about-gallery figure {
    /* aspect-ratio: 1.35 / 1; */
  }

  /* 모바일: 머신 카드 = Swiper 슬라이드 (loop·centered) */
  .machine-grid {
    max-width: none;
    margin-inline: -30px; /* 화면 끝까지 풀블리드 */
  }

  .machine-card.swiper-slide {
    width: 74%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 32px 0 0;
    transform: scale(0.84);
    opacity: 0.5;
    transition:
      transform 420ms ease,
      opacity 420ms ease;
  }

  /* 가운데(활성) 카드: 확대 */
  .machine-card.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }

  /* 스튜디오와 동일한 페이지네이션(점 + 이전/다음) */
  .machine-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3.4vw, 40px);
    margin-top: 30px;
  }

  /* Swiper 기본 absolute/width:100% 보다 우선 */
  .machine-controls .machine-dots {
    position: static;
    display: flex;
    width: auto;
    bottom: auto;
    left: auto;
    gap: 13px;
  }

  .machine-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: var(--line);
    opacity: 1;
    transition:
      background 200ms ease,
      transform 200ms ease;
  }

  .machine-dots .swiper-pagination-bullet-active {
    background: var(--clay);
    transform: scale(1.4);
  }

  .machine-card h3 {
    position: static;
    transform: none;
    margin: 0;
    font-size: 23px;
  }

  .machine-card p {
    position: static;
    transform: none;
    margin: 9px 0 0;
    padding: 0 24px;
    white-space: normal; /* 모바일은 <br> 기준 줄바꿈 */
  }

  .machine-card img {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  /* 가격 메뉴: 모바일 */
  .price-row {
    gap: 14px;
    padding: 18px 2px;
  }

  .price-row-time,
  .price-row-amount {
    font-size: 30px;
  }

  .price-row-ext .price-row-time {
    font-size: 13px;
  }

  .price-row-ext .price-row-amount {
    font-size: 20px;
  }

  .watermark {
    display: block;
    bottom: 39%;
    opacity: 0.7;
    transform: translate(-50%, 0);
  }

  .watermark-track span {
    color: rgba(148, 125, 92, 0.18);
    font-size: clamp(58px, 19vw, 92px);
  }

  .reservation-copy {
    padding: 270px 24px 52px;
  }

  .reservation-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .reservation-copy .jp-sub {
    font-size: 18px;
  }

  .reserve-cta {
    min-height: 66px;
    min-width: min(310px, 100%);
    padding: 0 28px;
    font-size: 13px;
    gap: 14px;
  }

  .faq-list {
    margin-inline: -6px;
  }

  summary {
    padding: 20px;
  }

  details p {
    padding: 0 20px 20px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .access-detail dl div,
  .soon-item dl div {
    grid-template-columns: 60px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* 기기의 '동작 줄이기'에서도 사이트의 연출(히어로 줌·마키·메뉴 등장 등)은
     의도된 디자인이므로 유지한다. 스무스 스크롤만 즉시 이동으로. */
  html {
    scroll-behavior: auto;
  }
}
