/*
Theme Name: BUA THAI SPA
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Premium WordPress theme for BUA THAI SPA. ACF Free compatible, multilingual ready (Polylang / WPML).
Version: 1.17.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bua-theme
Tags: spa, massage, multilingual, acf, thai
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --bg:       #FAF6F0;
  --bg2:      #F3EAE0;
  --bg3:      #EAD9C8;
  --gold:     #C09A5B;
  --gold2:    #A8803C;
  --brown:    #5C3317;
  --brown2:   #7A4A25;
  --cream:    #FDF8F2;
  --text:     #2E1A0E;
  --text2:    #6B4C34;
  --text3:    #9A7255;
  --divider:  #DCC9B0;
  --radius:   4px;
  --max-w:    1100px;
  --nav-h:    72px;

  /* フォント（言語ごとに body.bua-lang-zh 等で上書きする） */
  --font-body:    'Noto Serif JP', serif;
  --font-heading: 'Shippori Mincho', 'Cinzel', serif;
  --font-accent:  'Zen Maru Gothic', 'Cinzel', serif;
  --font-accent2: 'Zen Maru Gothic', 'Cormorant Garamond', sans-serif;
  --font-accent3: 'Zen Maru Gothic', 'Cormorant Garamond', serif;
}

/* 中国語ページ：日本語専用フォント（Shippori Mincho／Noto Serif JP／Zen Maru Gothic）は
   簡体字の字形に正しく対応していないため、Noto Serif SC に切り替える。 */
body.bua-lang-zh {
  --font-body:    'Noto Serif SC', serif;
  --font-heading: 'Noto Serif SC', 'Cinzel', serif;
  --font-accent:  'Noto Serif SC', 'Cinzel', serif;
  --font-accent2: 'Noto Serif SC', 'Cormorant Garamond', sans-serif;
  --font-accent3: 'Noto Serif SC', 'Cormorant Garamond', serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16.5px; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .3em;
  color: var(--gold2);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: .04em;
  line-height: 1.35;
  margin-bottom: 20px;
}
.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTON STYLES
   ============================================= */
.btn-fill {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  border-radius: var(--radius);
  transition: background .25s;
}
.btn-fill:hover { background: var(--brown2); color: var(--cream); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--gold);
  padding: 16px 40px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  border-radius: var(--radius);
  transition: all .25s;
}
.btn-ghost:hover { background: var(--gold); color: #fff; }

/* =============================================
   LAYOUT
   ============================================= */
.section-wrap { padding: 96px 80px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand a { display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.custom-logo { height: 48px; width: auto; }
.nav-menu-list {
  display: flex;
  gap: 32px;
}
.nav-menu-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  letter-spacing: .08em;
  color: var(--text2);
  transition: color .25s;
}
.nav-menu-list a:hover { color: var(--brown); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-switcher ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lang-switcher li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lang-switcher a,
.lang-switcher span {
  padding: 6px 12px;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--text3);
  transition: all .2s;
  font-family: var(--font-accent2);
  display: block;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
/* ホバー効果はマウス操作が可能な環境（PC）でのみ適用する。
   タッチデバイスでは「タップ＝ホバー」と解釈され、ページ遷移完了まで
   ホバー色が残ってしまい、現在の言語と2色同時に見えてしまうため。 */
@media (hover: hover) and (pointer: fine) {
  .lang-switcher a:hover { background: var(--gold); color: #fff; }
}
.lang-switcher .current-lang,
.lang-switcher .current-lang a { background: var(--gold); color: #fff; }
.lang-switcher li.current-lang a,
.lang-switcher .lang-item-current a { background: var(--gold); color: #fff; }

.nav-book-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  padding: 11px 28px;
  font-family: var(--font-accent);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: var(--radius);
  transition: background .25s;
}
.nav-book-btn:hover { background: var(--brown2); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-y: auto;
  padding: 40px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
}
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: .15em;
  color: var(--brown);
  text-decoration: none;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brown);
  cursor: pointer;
  z-index: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-tag-line { width: 36px; height: 1px; background: var(--gold); }
.hero-tag-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .28em;
  color: var(--gold2);
}
.hero-top-image {
  display: block;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 28px rgba(92,51,23,.12);
  opacity: 0;
  transform: translateY(12px);
  animation: bua-fade-in-up 1.2s ease .15s forwards;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}
.hero-top-image img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes bua-fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text3);
  letter-spacing: .22em;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-divider { width: 56px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.hero-desc {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text2);
  max-width: 400px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: nowrap; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: bua-hero-img-in 1.8s ease forwards;
}
@keyframes bua-hero-img-in {
  to { opacity: 1; transform: scale(1); }
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -24px;
  background: var(--cream);
  border: 1px solid var(--divider);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(92,51,23,.08);
}
.hero-badge-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold2);
  line-height: 1;
}
.hero-badge-lbl { font-size: .88rem; letter-spacing: .15em; color: var(--text3); }
.hero-badge-stars { font-size: .8rem; color: var(--gold); margin-top: 2px; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-line { width: 40px; height: 1px; background: var(--divider); }
.hero-scroll-text {
  font-size: .88rem;
  letter-spacing: .25em;
  color: var(--text3);
  font-family: 'Cormorant Garamond', serif;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs { display: flex; flex-direction: column; }
.about-img-frame {
  position: relative;
  height: 440px;
}
.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 78%; height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: bua-hero-img-in 1.6s ease .1s forwards;
}
.about-img-sub {
  position: absolute;
  left: 0; bottom: 0;
  width: 48%; height: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  background: var(--bg3);
}
.about-img-sub img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: bua-hero-img-in 1.6s ease .35s forwards;
}
.about-img-store {
  margin: 20px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(92,51,23,.1);
}
.about-img-store img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.03);
  animation: bua-hero-img-in 1.6s ease .2s forwards;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.stat-item {
  position: relative;
  padding: 22px 12px 20px;
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 28px; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}
.stat-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--gold2);
  line-height: 1;
  margin-top: 6px;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--text3);
  line-height: 1.5;
}
.about-body p { font-size: 1.05rem; line-height: 2.1; color: var(--text2); margin-bottom: 18px; }
.about-awards { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.award-row { display: flex; align-items: center; gap: 12px; font-size: 1.12rem; color: var(--text2); }
.award-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* =============================================
   WHY / FEATURES
   ============================================= */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.feature-card {
  background: var(--cream);
  padding: 40px 32px;
  border: 1px solid var(--divider);
  transition: all .3s;
}
.feature-card:hover { background: #fff; border-color: var(--gold); }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 300;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.feature-body { font-size: 1.02rem; line-height: 1.9; color: var(--text2); }

/* =============================================
   MENU
   ============================================= */
.menu-section { background: #fff; }
.menu-filter-tabs {
  display: flex;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  letter-spacing: .1em;
  color: var(--text3);
  margin-bottom: -1px;
  transition: all .25s;
}
.menu-tab.active, .menu-tab:hover { color: var(--brown); border-bottom-color: var(--gold); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  background: #fff;
  position: relative;
}
.menu-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.menu-card.featured { border-color: var(--gold); border-width: 1.5px; }
.menu-badge-label {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .15em;
  padding: 4px 12px;
  border-radius: var(--radius);
  z-index: 2;
}
.menu-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg2);
}
.menu-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-body { padding: 24px; }
.menu-cat { font-size: .85rem; letter-spacing: .25em; color: var(--gold2); margin-bottom: 6px; }
.menu-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.menu-duration { font-size: .92rem; color: var(--text3); letter-spacing: .1em; margin-bottom: 12px; }
.menu-desc { font-size: .98rem; line-height: 1.85; color: var(--text2); margin-bottom: 18px; }
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brown2);
}
.menu-price small { font-size: .85rem; font-weight: 400; color: var(--text3); }
.menu-reserve-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--brown2);
  font-size: .88rem;
  letter-spacing: .12em;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  transition: all .25s;
}
.menu-reserve-btn:hover { background: var(--gold); color: #fff; }
.menu-more { text-align: center; margin-top: 40px; }

/* =============================================
   STAFF
   ============================================= */
.staff-section { background: var(--bg); }
.staff-intro { max-width: 560px; margin: 0 auto 56px; text-align: center; font-size: 1.05rem; line-height: 2; color: var(--text2); }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.review-stars { color: var(--gold); font-size: 1.08rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 1.02rem;
  line-height: 2;
  color: var(--text2);
  margin-bottom: 20px;
  font-style: italic;
}
.review-text::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.4em;
  margin-right: 4px;
}
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--divider); padding-top: 16px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: .98rem;
  color: var(--brown2);
  flex-shrink: 0;
}
.review-name { display: block; font-size: .98rem; color: var(--text); font-weight: 500; }
.review-meta { font-size: .9rem; color: var(--text3); }

/* =============================================
   SHOP INFO
   ============================================= */
.shopinfo-section { background: var(--bg); }
.shopinfo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.info-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 40px;
}
.info-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  letter-spacing: .15em;
  color: var(--brown);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}
.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg3);
}
.info-row:last-child { border-bottom: none; }
.info-key { font-size: .92rem; letter-spacing: .1em; color: var(--text3); }
.info-val { font-size: 1.02rem; color: var(--text2); line-height: 1.8; }
.info-val strong { color: var(--text); font-weight: 500; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; height: 240px; background: var(--bg2); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.sns-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.sns-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--divider);
  background: #fff;
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--text2);
  transition: all .25s;
  letter-spacing: .05em;
}
.sns-btn:hover { border-color: var(--gold); color: var(--brown); }
.access-card { margin-top: 24px; }

/* =============================================
   BOOKING CTA
   ============================================= */
.booking-section {
  background: var(--brown);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking-deco {
  position: absolute;
  right: -60px; top: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.03);
  pointer-events: none;
}
.booking-deco-2 {
  position: absolute;
  left: -40px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.booking-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.booking-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.booking-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.booking-body { font-size: 1.05rem; line-height: 2; color: rgba(253,248,242,.7); margin-bottom: 40px; }
.booking-channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--cream);
  padding: 16px 26px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: all .25s;
  font-family: var(--font-accent3);
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
}
.ch-btn:hover { background: rgba(255,255,255,.15); color: var(--cream); }
.ch-btn.primary-ch { background: var(--gold); border-color: var(--gold); }
.ch-btn.primary-ch:hover { background: var(--gold2); }
.ch-btn-phone {
  flex-direction: column;
  gap: 2px;
  padding: 14px 26px;
}
.ch-btn-phone i { font-size: 1.3rem; margin-bottom: 2px; }
.ch-btn-phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ch-btn-phone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--cream);
  line-height: 1.1;
}
.booking-note { font-size: .92rem; color: rgba(253,248,242,.35); letter-spacing: .1em; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--text); padding: 56px 80px 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ft-brand { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); letter-spacing: .12em; margin-bottom: 6px; }
.ft-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .92rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .2em;
  margin-bottom: 16px;
}
.ft-desc { font-size: .95rem; line-height: 1.9; color: rgba(255,255,255,.4); max-width: 240px; }
.ft-col-title { font-family: 'Cinzel', serif; font-size: .88rem; letter-spacing: .15em; color: var(--gold); margin-bottom: 16px; }
.ft-col a { display: block; font-size: .95rem; color: rgba(255,255,255,.45); margin-bottom: 10px; letter-spacing: .05em; transition: color .2s; }
.ft-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy { font-size: .9rem; color: rgba(255,255,255,.3); letter-spacing: .08em; }
.ft-lang-text { font-size: .9rem; color: rgba(255,255,255,.3); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 40px; }
  .hero-right { height: 50vw; min-height: 320px; }
  .hero-badge { left: 20px; bottom: 20px; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame { height: 360px; }

  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .shopinfo-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-wrap { padding: 64px 24px; }
  .site-nav { padding: 0 24px; }
  .nav-menu-list { display: none; }
  .nav-book-btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-left { padding: 48px 24px; }
  .hero-top-image { max-width: 100%; }

  /* メニューのタブをSPで1列の横スクロールに収める */
  .menu-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .menu-filter-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    flex: 0 0 auto;
    padding: 12px 16px;
    font-size: .95rem;
    white-space: nowrap;
  }
  .menu-grid { grid-template-columns: 1fr; }
  .booking-section { padding: 64px 24px; }
  .site-footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .about-img-frame { height: 300px; }
  /* About本文はSPでも左寄せ（元のデザインのまま） */
  .about-body { text-align: left; }
  .about-body .gold-line { margin-left: 0; margin-right: auto; }
  .about-awards { align-items: flex-start; }
  .award-row { flex-direction: row; font-size: .95rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-num { font-size: 1.7rem; }

  /* Hero ボタンをSPでも横一列に収める */
  .hero-btns .btn-fill,
  .hero-btns .btn-ghost {
    padding: 13px 18px;
    font-size: .85rem;
    letter-spacing: .04em;
    flex: 1 1 0;
    text-align: center;
    white-space: nowrap;
  }
  .about-body .btn-ghost { display: inline-block; }

  /* お客様の声・選ばれる理由：SPでは1枚ずつのスナップカルーセルに */
  .reviews-grid,
  .features-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar { display: none; }
  .review-card,
  .feature-card {
    flex: 0 0 calc(100% - 16px);
    scroll-snap-align: center;
  }
  .reviews-dots,
  .features-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .reviews-dots .carousel-dot,
  .features-dots .carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bg3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .reviews-dots .carousel-dot.active,
  .features-dots .carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }
}

@media (min-width: 769px) {
  .reviews-dots, .features-dots { display: none; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .hero-btns .btn-fill,
  .hero-btns .btn-ghost {
    padding: 12px 10px;
    font-size: .78rem;
    letter-spacing: 0;
  }
}

/* =============================================
   STAFF CAROUSEL
   ============================================= */
.staff-carousel-outer {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}
.staff-carousel-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding: 8px 4px 16px;
}
.staff-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.staff-slide {
  display: block;
  flex: 0 0 220px;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font: inherit;
}
.staff-slide-photo {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  transition: box-shadow .25s;
}
.staff-slide:hover .staff-slide-photo,
.staff-slide:focus-visible .staff-slide-photo {
  box-shadow: 0 8px 28px rgba(92,51,23,.16);
}
.staff-slide-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-slide-origin {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(92,51,23,.75);
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .12em;
  padding: 3px 9px;
  border-radius: var(--radius);
}
.staff-slide-name {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  color: var(--brown);
  letter-spacing: .05em;
  margin-top: 12px;
}
.staff-slide-role {
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--gold2);
  margin-top: 3px;
}
.staff-carousel-btn {
  position: static;
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--brown);
}
.staff-carousel-btn i {
  display: block;
  line-height: 1;
}
.staff-carousel-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.staff-carousel-btn:disabled { opacity: .35; cursor: default; }
.staff-carousel-btn:disabled:hover { background: var(--cream); color: var(--brown); border-color: var(--divider); }
.staff-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.staff-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bg3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.staff-dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 768px) {
  .staff-carousel-outer { gap: 0; }
  .staff-carousel-wrap { padding: 8px 0 16px; }
  .staff-slide { flex: 0 0 100%; }
  .staff-slide-photo { height: 460px; }
  .staff-carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    font-size: 1rem;
    background: rgba(253,248,242,.9);
    box-shadow: 0 2px 10px rgba(46,26,14,.15);
    z-index: 6;
  }
  .staff-carousel-btn.prev { left: 4px; }
  .staff-carousel-btn.next { right: 4px; }
}

@media (max-width: 480px) {
  .staff-slide-photo { height: 420px; }
}

/* =============================================
   STAFF MODAL
   ============================================= */
.staff-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,26,14,.55);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.staff-modal-overlay.open { display: flex; }
.staff-modal-box {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  position: relative;
}
.staff-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  font-size: 1.1rem;
  color: var(--brown);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-modal-photo {
  background: var(--bg2);
  min-height: 280px;
}
.staff-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-modal-body { padding: 40px 36px; }
.staff-modal-name { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--brown); letter-spacing: .05em; }
.staff-modal-role { font-size: .92rem; letter-spacing: .15em; color: var(--gold2); margin-top: 6px; }
.staff-modal-origin { font-size: .95rem; color: var(--text3); margin-top: 10px; }
.staff-modal-divider { width: 40px; height: 1px; background: var(--gold); margin: 18px 0; }
.staff-modal-bio { font-size: 1.02rem; line-height: 2; color: var(--text2); }
.staff-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }

@media (max-width: 640px) {
  .staff-modal-box { grid-template-columns: 1fr; max-height: 90vh; }
  .staff-modal-photo { min-height: 360px; }
  .staff-modal-body { padding: 28px 24px; }
}

/* =============================================
   GALLERY — おしゃれなコラージュ風レイアウト
   画像はトリミングせず元の縦横比のまま表示。CSS columnsで
   Masonry風に詰め、各タイルに微妙なランダム回転を加えて
   手作りのスクラップブック風の雰囲気を出す。
   ============================================= */
.gallery-section { background: #fff; }
.gallery-mosaic {
  margin-top: 56px;
  column-count: 3;
  column-gap: 28px;
}
.gallery-tile {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 28px;
  background: var(--cream);
  padding: 10px 10px 14px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(92,51,23,.12);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, z-index 0s;
}
.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.gallery-tile img.is-shown {
  opacity: 1;
  transform: scale(1);
}
.gallery-tile-cap {
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--text2);
  padding-top: 10px;
  min-height: 1.4em;
}

/* ランダムな回転と微妙な高低差を nth-child パターンで演出（7パターンで繰り返す） */
.gallery-tile:nth-child(7n+1) { transform: rotate(-2deg); }
.gallery-tile:nth-child(7n+2) { transform: rotate(1.5deg); margin-top: 18px; }
.gallery-tile:nth-child(7n+3) { transform: rotate(-1deg); }
.gallery-tile:nth-child(7n+4) { transform: rotate(2deg); margin-top: 8px; }
.gallery-tile:nth-child(7n+5) { transform: rotate(-1.5deg); }
.gallery-tile:nth-child(7n+6) { transform: rotate(1deg); margin-top: 14px; }
.gallery-tile:nth-child(7n)   { transform: rotate(-2.5deg); }

.gallery-tile:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 14px 32px rgba(92,51,23,.22);
  z-index: 5;
}
.gallery-tile:hover img.is-shown { transform: scale(1.02); }

@media (max-width: 1024px) {
  .gallery-mosaic { column-count: 2; column-gap: 22px; }
}
@media (max-width: 640px) {
  .gallery-mosaic { column-count: 2; column-gap: 14px; }
  .gallery-tile { margin-bottom: 18px; padding: 7px 7px 10px; }
  .gallery-tile-cap { font-size: .82rem; padding-top: 7px; }
  /* SPでは縦の高低差を抑えて見やすく */
  .gallery-tile:nth-child(7n+2),
  .gallery-tile:nth-child(7n+4),
  .gallery-tile:nth-child(7n+6) { margin-top: 0; }
}
@media (max-width: 420px) {
  .gallery-mosaic { column-count: 1; max-width: 360px; margin-left: auto; margin-right: auto; }
  .gallery-tile:nth-child(n) { transform: rotate(0deg); margin-top: 0; }
}

/* Lightbox for gallery */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,11,6,.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}
.gallery-lightbox.open { opacity: 1; visibility: visible; }
.gallery-lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  transition: opacity .5s ease;
}
.gallery-lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}
.gallery-lightbox-nav.prev { left: 20px; }
.gallery-lightbox-nav.next { right: 20px; }

/* =============================================
   ANNOUNCEMENT IMAGE MODAL
   ============================================= */
.announcement-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,11,6,.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}
.announcement-modal-overlay.open { opacity: 1; visibility: visible; }
.announcement-modal-overlay img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.announcement-modal-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* =============================================
   MENU — MULTIPLE DURATION/PRICE ROWS
   ============================================= */
.menu-price-rows {
  border-top: 1px solid var(--divider);
  padding-top: 14px;
  margin-top: 4px;
}
.menu-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 1rem;
}
.menu-price-row .mpr-duration { color: var(--text3); letter-spacing: .05em; font-size: .95rem; }
.menu-price-row .mpr-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brown2);
  line-height: 1;
}
.menu-price-row .mpr-price small { font-size: .82rem; font-weight: 400; color: var(--text3); margin-left: 3px; }
