/* ============================================================
   Lumière — style.css
   Beauty Demo / HP作成.AI
   ============================================================ */

/* Google Fonts は各 HTML の <link> タグで読み込むため、@import は削除 */

/* ─── CSS Custom Properties ─── */
:root {
  /* Color */
  --color-gold:        #C9A96E;
  --color-rose:        #9E6B7A;
  --color-ivory:       #F7F3EE;
  --color-base:        #FAFAF8;
  --color-text:        #2E2E2E;
  --color-text-sub:    #777777;
  --color-white:       #FFFFFF;
  --color-border:      #E5DDD5;

  /* Typography */
  --font-serif-en:     'Cormorant Garamond', Georgia, serif;
  --font-serif-ja:     'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --font-sans-ja:      'Noto Sans JP', 'Hiragino Sans', sans-serif;

  /* Font Size */
  --fs-hero:           clamp(40px, 6vw, 72px);
  --fs-h1:             clamp(28px, 4vw, 40px);
  --fs-h2:             clamp(22px, 3vw, 32px);
  --fs-h3:             clamp(18px, 2.5vw, 22px);
  --fs-body:           clamp(15px, 1.6vw, 17px);
  --fs-small:          13px;
  --fs-label:          11px;

  /* Line Height */
  --lh-heading:        1.4;
  --lh-body:           1.75;

  /* Letter Spacing */
  --ls-heading-ja:     0.1em;
  --ls-heading-en:     0.15em;
  --ls-label:          0.2em;

  /* Spacing */
  --section-pt:        100px;
  --section-pb:        100px;
  --container-max:     1200px;
  --container-pad:     clamp(20px, 5vw, 60px);

  /* Border Radius */
  --radius-btn:        2px;
  --radius-card:       4px;
  --radius-input:      2px;

  /* Shadow */
  --shadow-card:       0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-header:     0 2px 20px rgba(0, 0, 0, 0.08);

  /* Transition */
  --transition-base:   all 0.3s ease;
}

/* ─── Utility Classes (moved from inline styles) ─── */

/* セクション内CTAラッパー（index.html: 全メニューを見るボタン） */
.section__cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* フッター予約ボタン（小サイズ上書き） */
.btn--footer-cta {
  width: auto;
  font-size: 13px;
  padding: 10px 24px;
}

/* access-info タイトルの上マージン（2つ目以降の見出し） */
.access-info__title--mt {
  margin-top: 24px;
}

/* サブテキスト（小サイズ・グレー） */
.text-sub-small {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
}

/* テキストリンクの上マージン */
.text-link--mt {
  margin-top: 8px;
}

/* two-col の縦位置を上揃え */
.two-col--align-start {
  align-items: start;
}

/* access.html: map プレースホルダー（高さ指定） */
.img-placeholder--map-tall {
  min-height: 420px;
  border-radius: var(--radius-card);
}

/* map プレースホルダー内テキスト */
.map-placeholder__label {
  padding: 20px;
  text-align: center;
}

.map-placeholder__sub {
  font-size: 12px;
  opacity: 0.7;
}

/* access.html: access-info の上パディング */
.access-info--pt {
  padding-top: 8px;
}

/* access.html: 予約ラッパー */
.reservation-wrap {
  max-width: 480px;
  margin: 0 auto;
}

/* access.html: 初回来店案内ボックス */
.reservation-note-box {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* access.html: 初回来店ラベル */
.reservation-note-label {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* menu.html: 注記ボックス */
.price-notes-box {
  background-color: var(--color-ivory);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-top: 48px;
}

/* menu.html: 注記テキスト（行間広め） */
.price-note--loose {
  line-height: 2;
}

/* stylist.html: 得意スタイルラベル */
.stylist-item__specialty-label {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

/* access.html: プライバシーポリシーリンク */
.link-gold {
  color: var(--color-gold);
  text-decoration: underline;
}

/* フッター: デモサイト注記 */
.footer__demo-note {
  text-align: center;
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  margin-top: 8px;
  padding-bottom: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans-ja);
  font-size: var(--fs-body);
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Section ─── */
.section {
  padding: var(--section-pt) 0 var(--section-pb);
}

.section--ivory {
  background-color: var(--color-ivory);
}

.section--white {
  background-color: var(--color-white);
}

/* ─── Section Heading ─── */
.section__head {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section__line {
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0 auto 20px;
}

.section__title {
  font-family: var(--font-serif-ja);
  font-weight: 300;
  font-size: var(--fs-h1);
  color: var(--color-text);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading-ja);
}

.section__subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-sub);
  margin-top: 16px;
  line-height: var(--lh-body);
}

/* ─── Grid Layouts ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--photo-left  { grid-template-columns: 45fr 55fr; }
.two-col--photo-right { grid-template-columns: 55fr 45fr; }

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

/* ─── Placeholder Images ─── */
.img-placeholder {
  width: 100%;
  background-color: var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  font-family: var(--font-serif-en);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
}

.img-placeholder--hero {
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  height: 100%;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #e8e0d8 0%, #d4c8be 50%, #c0b4aa 100%);
}

.img-placeholder--landscape {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ede8e2 0%, #ddd6ce 50%, #cdc4ba 100%);
}

.img-placeholder--concept {
  aspect-ratio: 4 / 5;
  background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.img-placeholder--square {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #ede8e2 0%, #d8d0c8 100%);
}

.img-placeholder--map {
  min-height: 400px;
  background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  font-size: 14px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans-ja);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--ls-label);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  border: none;
}

.btn--primary {
  background-color: var(--color-rose);
  color: var(--color-white);
  border: 1px solid var(--color-rose);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--color-rose);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn--outline-dark:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

.btn--gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ─── Text Link ─── */
.text-link {
  font-family: var(--font-sans-ja);
  font-size: 14px;
  letter-spacing: var(--ls-label);
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: var(--transition-base);
}

.text-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ─── Tag ─── */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  font-family: var(--font-sans-ja);
  font-size: 12px;
  color: var(--color-gold);
  margin: 4px 4px 4px 0;
}

/* ─── Fade-in Animation ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Page Header (inner pages) ─── */
.page-header {
  background-color: var(--color-ivory);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--color-gold);
  opacity: 0.4;
}

.page-header::before {
  top: 0;
  height: 60px;
}

.page-header::after {
  bottom: 0;
  height: 60px;
}

.page-header__en {
  font-family: var(--font-serif-en);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: var(--ls-heading-en);
  color: var(--color-text);
  display: block;
  margin-bottom: 12px;
}

.page-header__ja {
  font-family: var(--font-sans-ja);
  font-size: var(--fs-small);
  letter-spacing: 0.15em;
  color: var(--color-text-sub);
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-base);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-header);
  padding: 16px var(--container-pad);
}

.header__logo {
  font-family: var(--font-serif-en);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-white);
  transition: var(--transition-base);
  text-decoration: none;
}

.header.scrolled .header__logo {
  color: var(--color-text);
}

.header--inner .header__logo {
  color: var(--color-text);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__nav a {
  font-family: var(--font-sans-ja);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-base);
  text-decoration: none;
}

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

.header.scrolled .header__nav a {
  color: var(--color-text);
}

.header--inner .header__nav a {
  color: var(--color-text);
}

.header__cta {
  font-size: 12px;
  padding: 10px 22px;
}

.header__cta.btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
}

.header.scrolled .header__cta,
.header--inner .header__cta {
  background-color: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
}

.header.scrolled .header__cta:hover,
.header--inner .header__cta:hover {
  background-color: transparent;
  color: var(--color-rose);
}

/* Hamburger button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-base);
}

.header.scrolled .header__menu-btn span,
.header--inner .header__menu-btn span {
  background-color: var(--color-text);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 250, 248, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: var(--container-pad);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
}

.nav-overlay__list {
  list-style: none;
  text-align: center;
}

.nav-overlay__list li {
  margin-bottom: 36px;
}

.nav-overlay__list a {
  font-family: var(--font-serif-en);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition-base);
}

.nav-overlay__list a:hover {
  color: var(--color-gold);
}

.nav-overlay__sub {
  font-family: var(--font-sans-ja);
  font-size: 11px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.nav-overlay__btn {
  margin-top: 8px;
  width: 240px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-serif-en);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-white);
  display: block;
  margin-bottom: 20px;
}

.footer__info {
  font-size: var(--fs-small);
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.footer__info p {
  margin-bottom: 4px;
}

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

.footer__nav-title {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__nav-list li {
  margin-bottom: 10px;
}

.footer__nav-list a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
  text-decoration: none;
}

.footer__nav-list a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer__social a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 32, 24, 0.28);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.hero__logo {
  font-family: var(--font-serif-en);
  font-size: var(--fs-hero);
  font-weight: 300;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  display: block;
}

.hero__line {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 20px;
}

.hero__catch {
  font-family: var(--font-serif-ja);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif-en);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   CONCEPT SECTION
   ============================================================ */

.concept__text h2 {
  font-family: var(--font-serif-ja);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading-ja);
  margin-bottom: 24px;
}

.concept__text p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: 32px;
}

/* ============================================================
   MENU CARD
   ============================================================ */

.menu-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.menu-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.menu-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card__image .img-placeholder--landscape,
.menu-card__image img {
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__image .img-placeholder--landscape,
.menu-card:hover .menu-card__image img {
  transform: scale(1.03);
}

.menu-card__body {
  padding: 24px;
}

.menu-card__title {
  font-family: var(--font-serif-ja);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
  letter-spacing: var(--ls-heading-ja);
}

.menu-card__price {
  font-family: var(--font-serif-en);
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.menu-card__desc {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  line-height: 1.6;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item .img-placeholder--square,
.gallery-item img {
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover .img-placeholder--square,
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   ACCESS TEASER
   ============================================================ */

.access-info__title {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.access-info__line {
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.access-info dl {
  margin-bottom: 8px;
}

.access-info dt {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.access-info dd {
  font-size: var(--fs-body);
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: var(--lh-body);
}

.access-info__list {
  list-style: none;
  margin-bottom: 20px;
}

.access-info__list li {
  font-size: var(--fs-body);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.access-info__list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 6px;
  top: 8px;
}

/* ============================================================
   PRICE TABLE
   ============================================================ */

.price-section {
  margin-bottom: 60px;
}

.price-section__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.price-section__en {
  font-family: var(--font-serif-en);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: var(--ls-heading-en);
  color: var(--color-text);
}

.price-section__line {
  flex: 1;
  height: 1px;
  background-color: var(--color-border);
}

.price-section__ja {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.price-table tr {
  border-bottom: 1px solid var(--color-border);
}

.price-table tr:first-child {
  border-top: 1px solid var(--color-border);
}

.price-table td {
  padding: 18px 8px;
  font-family: var(--font-sans-ja);
  font-size: var(--fs-body);
  color: var(--color-text);
}

.price-table td:last-child {
  text-align: right;
  font-family: var(--font-serif-en);
  font-size: 18px;
  color: var(--color-gold);
  white-space: nowrap;
}

.price-note {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-sans-ja);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-text-sub);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition-base);
  margin-bottom: -1px;
}

.tab-btn.is-active,
.tab-btn:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-gold);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

/* ============================================================
   STYLIST
   ============================================================ */

.stylist-item {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.stylist-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.stylist-item__position {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.stylist-item__divider {
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 16px;
}

.stylist-item__name-en {
  font-family: var(--font-serif-en);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.stylist-item__name-ja {
  font-family: var(--font-sans-ja);
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.stylist-item__quote {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--color-gold);
}

.stylist-item__specialty {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.stylist-item__bio {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: 24px;
}

.stylist-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}

/* Staff Gallery Slider */
.staff-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow: hidden;
}

.staff-gallery__item {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.staff-gallery__item .img-placeholder--portrait,
.staff-gallery__item img {
  transition: transform 0.5s ease;
}

.staff-gallery__item:hover .img-placeholder--portrait,
.staff-gallery__item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   RESERVATION & CONTACT
   ============================================================ */

.reservation-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto 32px;
}

.reservation-btns .btn {
  width: 100%;
  justify-content: center;
}

.reservation-note {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ─── Form ─── */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-sans-ja);
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-label .required {
  color: var(--color-rose);
  margin-left: 4px;
  font-size: 12px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-sans-ja);
  font-size: var(--fs-body);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-sub);
  cursor: pointer;
}

.form-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit .btn {
  min-width: 200px;
  justify-content: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background-color: var(--color-ivory);
  text-align: center;
  padding: var(--section-pt) 0 var(--section-pb);
}

.cta-section__label {
  font-family: var(--font-serif-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.cta-section__title {
  font-family: var(--font-serif-ja);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading-ja);
  color: var(--color-text);
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-6,
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .staff-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pt: 60px;
    --section-pb: 60px;
  }

  /* Header */
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: flex; }

  /* Hero */
  .hero {
    height: 100dvh;
  }

  /* Two-column -> single */
  .two-col,
  .two-col--photo-left,
  .two-col--photo-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Reverse order for photo-right on SP */
  .two-col--photo-right .stylist-item__photo {
    order: -1;
  }

  /* Grid */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-6,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .staff-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__right {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Btn */
  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section head */
  .section__head {
    margin-bottom: 40px;
  }

  /* Stylist */
  .stylist-item__photo {
    order: -1;
  }

  /* Reservation btns */
  .reservation-btns {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-6,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-nav {
    gap: 0;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-lead {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: 32px;
}

.privacy-note {
  background-color: var(--color-ivory);
  border-left: 3px solid var(--color-gold);
  padding: 16px 20px;
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-bottom: 40px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.privacy-heading {
  font-family: var(--font-serif-ja);
  font-weight: 300;
  font-size: var(--fs-h3);
  color: var(--color-text);
  letter-spacing: var(--ls-heading-ja);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-list li {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: 4px;
}

.privacy-revised {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-top: 48px;
}

.privacy-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
