/* ================================================================
   炉ばた 楽助 — 共通スタイル
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=EB+Garamond:wght@400;500&family=Noto+Serif+JP:wght@400;500;600&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

:root {
  --bg:       #0c0907;
  --bg2:      #15100c;
  --paper:    #1a120c;
  --ink:      #f3ebd9;
  --sub:      rgba(243,235,217,0.6);
  --line:     rgba(243,235,217,0.16);
  --accent:   #a01a1a;
  --gold:     #c9a85c;
  --gold-soft:#d9b870;
  --green:    #06c755;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Serif JP","Yu Mincho",serif;
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: .02em;
  overflow-x: hidden;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 12px 16px;
  background: rgba(12,9,7,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  gap: 10px;
}
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 38px; width: auto; display: block;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--ink);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .18em;
  white-space: nowrap;
}
.nav-r { display: none; }
.menu-btn {
  background: none; border: 1px solid var(--line);
  color: var(--ink); cursor: pointer;
  width: 52px; height: 52px;
  font-size: 22px;
  touch-action: manipulation;
}
.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(12,9,7,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-top: 1px solid var(--line); }
.mobile-menu a {
  display: flex; align-items: center;
  min-height: 64px; padding: 18px 32px;
  font-family: "Shippori Mincho",serif;
  font-size: 17px; letter-spacing: .25em;
  touch-action: manipulation;
}

/* ─── 言語切替（JP / EN / KO） ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(12,9,7,0.5);
}
.lang-btn {
  appearance: none;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--sub);
  font-family: "Cormorant Garamond","EB Garamond",serif;
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 500;
  padding: 8px 10px;
  min-width: 36px;
  cursor: pointer;
  touch-action: manipulation;
  transition: color .2s, background .2s;
  line-height: 1;
}
.lang-btn:first-child { border-left: 0; }
.lang-btn:hover { color: var(--gold); }
.lang-btn.is-active {
  color: var(--bg);
  background: var(--gold);
  font-weight: 600;
}
.mobile-menu .lang-switch {
  margin: 16px 32px 20px;
}

/* ─── 多言語時のヒーロー調整（英語・韓国語は文字数が多いので縮小） ─── */
html[lang="en"] .hero-title-wrap,
html[lang="ko"] .hero-title-wrap {
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 24px;
}
html[lang="en"] .hero-h1,
html[lang="ko"] .hero-h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: .01em;
}
html[lang="en"] .hero-logo,
html[lang="ko"] .hero-logo {
  height: 120px;
}

/* ─── ヒーロー CTA ボタン ─── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  max-width: 520px;
}
.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  background: rgba(201,168,92,0.10);
  color: var(--ink);
  font-family: "Shippori Mincho",serif;
  font-size: 14px;
  letter-spacing: .12em;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s, color .2s;
  flex: 1 1 calc(50% - 10px);
  min-width: 160px;
  text-align: center;
}
.hero-cta .btn:hover { background: var(--gold); color: var(--bg); }
.hero-cta .btn.tel { background: rgba(201,168,92,0.2); border-color: var(--gold); color: var(--ink); }
.hero-cta .btn.line { background: rgba(6,199,85,0.15); border-color: var(--green); color: var(--ink); }
.hero-cta .btn.line:hover { background: var(--green); color: #fff; }
.hero-cta .btn.email { background: rgba(255,255,255,0.05); border-color: var(--ink); color: var(--ink); }
.hero-cta .btn.email:hover { background: var(--ink); color: var(--bg); }
/* 日本語時は Email ボタンを非表示（インバウンド向け限定機能） */
html[lang="ja"] .hero-cta-email { display: none; }
@media (min-width: 768px) {
  .hero-cta { gap: 14px; margin-top: 16px; }
  .hero-cta .btn { padding: 16px 28px; font-size: 15px; }
}

/* ─── NEWS（お知らせ）セクション — 控えめに ─── */
.news-section {
  border-top: 1px solid var(--line);
  padding: 48px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.news-section .eyebrow { font-size: 9px; margin-bottom: 6px; }
.news-section .h2 { font-size: 22px; margin-bottom: 0; }
.news-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.news-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
}
.news-item-date {
  font-family: "Cormorant Garamond","EB Garamond",serif;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 500;
}
.news-item-body { min-width: 0; }
.news-item-title {
  font-family: "Shippori Mincho",serif;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 0 0 4px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.news-item-text {
  font-size: 11px;
  color: var(--sub);
  line-height: 1.75;
  margin: 0;
}
.news-more-wrap { text-align: center; margin-top: 18px; }
.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: var(--sub);
  font-family: "Shippori Mincho",serif;
  font-size: 11px;
  letter-spacing: .15em;
  padding: 6px 14px;
  cursor: pointer;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(243,235,217,0.3);
}
.news-more-btn:hover { color: var(--gold); text-decoration-color: var(--gold); }
@media (min-width: 768px) {
  .news-section { padding: 64px 56px; }
  .news-section .eyebrow { font-size: 10px; }
  .news-section .h2 { font-size: 26px; }
  .news-list { margin-top: 28px; }
  .news-item { grid-template-columns: 100px 1fr; padding: 16px 6px; gap: 20px; }
  .news-item-date { font-size: 12px; }
  .news-item-title { font-size: 14px; }
  .news-item-text { font-size: 12px; }
  .news-more-btn { font-size: 12px; padding: 8px 18px; }
}

/* ─── NEWS モーダル ─── */
.news-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  padding: 60px 20px 20px;
  overflow-y: auto;
  justify-content: center;
  align-items: flex-start;
}
.news-modal.is-open { display: flex; }
.news-modal-inner {
  background: var(--bg2);
  border: 1px solid var(--line);
  max-width: 760px;
  width: 100%;
  padding: 28px 24px;
  position: relative;
}
.news-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: var(--sub);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.news-modal-close:hover { color: var(--ink); }
.news-modal-title {
  font-family: "Shippori Mincho",serif;
  font-size: 22px;
  letter-spacing: .08em;
  margin: 0 0 24px;
  color: var(--ink);
  font-weight: 500;
}
.news-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.modal-open { overflow: hidden; }
@media (min-width: 768px) {
  .news-modal { padding: 80px 40px 40px; }
  .news-modal-inner { padding: 40px 44px; }
  .news-modal-title { font-size: 28px; margin-bottom: 32px; }
}

/* ─── 店舗情報の横並びレイアウト（PC） ─── */
.info-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
.info-layout-map { min-width: 0; }
.info-layout-map .info-map,
.info-layout-map > div[style*="height"] {
  height: 100% !important;
  min-height: 280px;
}
@media (min-width: 768px) {
  .info-layout { grid-template-columns: 1.1fr 1fr; gap: 36px; margin-top: 36px; }
  .info-layout-map .info-map { min-height: 100%; height: 100%; }
}

/* ─── 宴会対応バナー ─── */
.banquet-banner {
  margin-top: 24px;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(201,168,92,0.15) 0%, rgba(201,168,92,0.05) 100%);
  border: 1px solid rgba(201,168,92,0.5);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.banquet-banner-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.banquet-banner-body { flex: 1; }
.banquet-banner-text {
  font-family: "Shippori Mincho",serif;
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.banquet-banner-sub {
  font-size: 12px;
  color: var(--sub);
  letter-spacing: .04em;
  line-height: 1.7;
  margin: 4px 0 0;
}
@media (min-width: 768px) {
  .banquet-banner { padding: 22px 28px; gap: 18px; }
  .banquet-banner-icon { font-size: 28px; }
  .banquet-banner-text { font-size: 17px; }
  .banquet-banner-sub { font-size: 13px; margin-top: 6px; }
}

/* ─── トップページのイベントプレビュー（写真付き） ─── */
.event-preview-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.event-preview-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-preview-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.82);
  display: block;
}
.event-preview-body {
  padding: 16px 14px 18px;
}
.event-preview-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.event-preview-title {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: .12em;
  margin-bottom: 6px;
  font-weight: 500;
}
.event-preview-text {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 768px) {
  .event-preview-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
  .event-preview-num { font-size: 28px; }
  .event-preview-title { font-size: 16px; }
  .event-preview-text { font-size: 13px; }
  .event-preview-body { padding: 20px 18px 22px; }
}

/* ─── PAGE HERO（サブページ用） ─── */
.page-hero {
  position: relative;
  height: 260px;
  background: var(--paper);
  overflow: hidden;
  margin-top: 65px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42) contrast(1.1) saturate(1.05);
}
.page-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,7,.35) 0%, rgba(12,9,7,.88) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 32px;
  max-width: 1280px; margin: 0 auto;
}
.page-eyebrow {
  font-family: "Cormorant Garamond",serif;
  font-size: 10px; letter-spacing: .5em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.page-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.page-h1 {
  font-family: "Shippori Mincho",serif;
  font-size: 44px; font-weight: 500;
  letter-spacing: .08em; margin: 0; line-height: 1.2;
}

/* ─── HERO（トップページ用） ─── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--paper); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.70) contrast(1.05) saturate(1.05);
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,7,.38) 0%, rgba(12,9,7,.62) 45%, rgba(12,9,7,.82) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 96px 24px 80px;
}
.hero-title-wrap {
  display: flex; align-items: flex-end;
  justify-content: flex-start; gap: 16px;
  margin-bottom: 32px; width: 100%;
}
.hero-logo {
  height: 140px; width: auto; display: block;
  flex-shrink: 0;
}
.hero-en {
  font-family: "Cormorant Garamond",serif;
  font-size: 10px; letter-spacing: .5em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-en::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: "Shippori Mincho",serif;
  font-size: 56px; line-height: .98;
  letter-spacing: .04em; margin: 0; font-weight: 500; color: var(--ink);
}
.hero-banquet {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(201,168,92,0.12);
  border: 1px solid rgba(201,168,92,0.55);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
}
.hero-banquet-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.hero-banquet-body { flex: 1; min-width: 0; }
.hero-banquet-title {
  font-family: "Shippori Mincho",serif;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
}
.hero-banquet-sub {
  font-size: 11px;
  color: var(--sub);
  letter-spacing: .03em;
  line-height: 1.7;
  margin: 3px 0 0;
}
@media (min-width: 768px) {
  .hero-banquet { padding: 18px 22px; gap: 16px; margin-top: 28px; }
  .hero-banquet-icon { font-size: 28px; }
  .hero-banquet-title { font-size: 17px; }
  .hero-banquet-sub { font-size: 13px; margin-top: 5px; }
}
.hero-tagline {
  font-family: "Shippori Mincho",serif;
  font-size: 14px; line-height: 2.2; color: var(--ink);
  max-width: 360px; margin-bottom: 32px;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: "Cormorant Garamond",serif;
  font-size: 9px; letter-spacing: .4em; color: var(--sub); text-transform: uppercase;
}

/* ─── PHOTO SLIDER ─── */
.slider {
  position: relative; height: 330px; background: var(--bg2);
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.slider-track { position: absolute; inset: 0; display: flex; will-change: transform; }
.slider-item {
  flex: 0 0 280px; height: 100%; margin-right: 14px;
  position: relative; overflow: hidden;
  user-select: none; -webkit-user-select: none;
}
.slider-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) saturate(1.05); }
.slider-cap {
  position: absolute; left: 14px; bottom: 12px;
  font-family: "Shippori Mincho",serif;
  font-size: 12px; letter-spacing: .25em; color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.slider-cap small {
  display: block; font-family: "Cormorant Garamond",serif;
  font-size: 9px; letter-spacing: .3em; color: var(--ink);
  opacity: .85; margin-top: 3px; text-transform: uppercase;
}

/* ─── SECTION COMMON ─── */
.section { padding: 80px 24px; }
.eyebrow {
  font-family: "Cormorant Garamond",serif;
  font-size: 10px; letter-spacing: .5em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.h2 {
  font-family: "Shippori Mincho",serif; font-size: 36px;
  letter-spacing: .08em; line-height: 1.3; font-weight: 500; margin: 0 0 24px;
}
.h2 .gold { color: var(--gold); }
.lead { font-size: 15px; line-height: 2.1; color: var(--sub); }

/* ─── SECTION LINK CARDS（トップ → 各ページ） ─── */
.page-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px;
}
.page-link-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/2; display: flex; align-items: flex-end;
  border: 1px solid var(--line);
}
.page-link-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.5) saturate(1.05);
  transition: transform .4s ease;
}
.page-link-card:hover .page-link-card-bg { transform: scale(1.04); }
.page-link-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,9,7,.9) 100%);
}
.page-link-card-body {
  position: relative; z-index: 2; padding: 18px;
}
.page-link-card-en {
  font-family: "Cormorant Garamond",serif;
  font-size: 9px; letter-spacing: .4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 4px;
}
.page-link-card-jp {
  font-family: "Shippori Mincho",serif;
  font-size: 16px; letter-spacing: .15em; color: var(--ink);
}

/* ─── KODAWARI ─── */
.kw-list { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
.kw-item { background: var(--paper); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.kw-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.88); }
.kw-body { padding: 24px 22px 28px; }
.kw-num {
  font-family: "Cormorant Garamond",serif; color: var(--gold);
  font-size: 32px; letter-spacing: .04em; line-height: 1;
  font-weight: 500; display: block; margin-bottom: 12px;
}
.kw-title { font-family: "Shippori Mincho",serif; font-size: 18px; letter-spacing: .15em; margin: 0 0 12px; font-weight: 500; }
.kw-text { font-size: 14px; line-height: 2; color: var(--sub); margin: 0; }

/* ─── COURSES ─── */
.section-courses { background: var(--bg2); padding: 80px 24px; }
.course-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.course {
  padding: 32px 24px 28px; background: var(--paper); border: 1px solid var(--line);
  position: relative; display: flex; flex-direction: column; gap: 14px; transition: border-color .25s;
}
.course:hover { border-color: var(--gold); }
.course-mark { font-family: "Shippori Mincho",serif; font-size: 56px; letter-spacing: .05em; line-height: 1; color: var(--gold); }
.course-name { font-family: "Shippori Mincho",serif; font-size: 16px; letter-spacing: .25em; }
.course-note { font-size: 11px; letter-spacing: .2em; color: var(--gold-soft); font-family: "Shippori Mincho",serif; margin-top: 4px; }
.course-price { font-family: "DIN Alternate", sans-serif; font-size: 32px; letter-spacing: .04em; color: var(--ink); line-height: 1; font-weight: 500; font-variant-numeric: tabular-nums; }
.course-price small { font-family: "Shippori Mincho",serif; font-size: 10px; letter-spacing: .2em; color: var(--sub); margin-left: 6px; font-weight: normal; }
.course-desc { font-size: 14px; line-height: 1.95; color: var(--sub); margin: 0; border-top: 1px solid var(--line); padding-top: 14px; flex: 1; }
.course-items { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); padding-top: 14px; }
.course-items li { font-size: 13px; color: var(--sub); padding: 4px 0; border-bottom: 1px solid rgba(243,235,217,0.06); letter-spacing: .06em; }
.course-items li:last-child { border-bottom: none; }
.course-nomi-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-bottom: 28px; padding: 16px 20px;
  background: rgba(201,168,92,0.08);
  border: 1px solid rgba(201,168,92,0.3); border-left: 3px solid var(--gold);
}
.course-nomi-badge { font-family: "Shippori Mincho",serif; font-size: 14px; letter-spacing: .15em; color: var(--gold-soft); font-weight: 600; white-space: nowrap; }
.course-nomi-desc { font-size: 13px; color: var(--sub); letter-spacing: .05em; line-height: 1.7; }

/* ─── MENU ─── */
.menu-cat { margin-bottom: 56px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-title {
  font-family: "Shippori Mincho",serif; font-size: 13px;
  letter-spacing: .35em; color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px; margin-bottom: 0;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.menu-item-name {
  font-family: "Shippori Mincho",serif;
  font-size: 15px; letter-spacing: .1em; flex: 1;
}
.menu-item-note { font-size: 12px; color: var(--sub); letter-spacing: .05em; }
.menu-item-price {
  font-family: "DIN Alternate", sans-serif;
  font-size: 15px; color: var(--gold); white-space: nowrap; letter-spacing: .04em;
}
.menu-note { font-size: 12px; color: var(--sub); margin-top: 10px; letter-spacing: .04em; }

/* ─── FLOOR ─── */
.section-floor { background: var(--bg2); padding: 80px 24px; }
.seats { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.seat { background: var(--paper); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.seat-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: brightness(0.88); }
.seat-body { padding: 22px 22px 26px; }
.seat-num { font-family: "Shippori Mincho",serif; font-size: 22px; color: var(--gold); letter-spacing: .08em; line-height: 1; margin-bottom: 10px; display: block; font-weight: 600; }
.seat-name { font-family: "Shippori Mincho",serif; font-size: 16px; letter-spacing: .2em; margin: 4px 0 10px; font-weight: 500; }
.seat-note { font-size: 14px; line-height: 1.95; color: var(--sub); margin: 0; }

/* ─── EVENTS ─── */
.events-stack { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
.event { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); overflow: hidden; display: flex; flex-direction: column; }
.event-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: brightness(0.88); }
.event-body { padding: 22px 24px 26px; }
.event-num { font-family: "Cormorant Garamond",serif; font-size: 28px; color: var(--gold); letter-spacing: .04em; line-height: 1; display: block; margin-bottom: 10px; }
.event h4 { font-family: "Shippori Mincho",serif; font-size: 17px; letter-spacing: .2em; margin: 0 0 10px; font-weight: 500; }
.event p { font-size: 14px; line-height: 1.95; color: var(--sub); margin: 0; }

/* ─── INFO ─── */
.info-dl { margin: 28px 0 0; display: grid; grid-template-columns: 88px 1fr; }
.info-dl dt { font-family: "Shippori Mincho",serif; font-size: 11px; letter-spacing: .25em; color: var(--gold); padding: 14px 0; border-top: 1px solid var(--line); }
.info-dl dd { margin: 0; font-size: 13px; line-height: 1.85; padding: 14px 0; border-top: 1px solid var(--line); }
.info-map { height: 280px; margin-top: 28px; background: var(--bg2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond",serif; font-size: 11px; letter-spacing: .35em; color: var(--sub); text-transform: uppercase; }
.info-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; font-family: "Shippori Mincho",serif; font-size: 12px; letter-spacing: .25em; text-decoration: none; border: 1px solid var(--line); color: var(--ink); cursor: pointer; transition: all .25s; background: transparent; }
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn.primary:hover { background: #c92020; border-color: #c92020; color: var(--ink); }
.btn.line { background: var(--green); border-color: var(--green); color: #fff; }
.btn.line:hover { background: #05a647; border-color: #05a647; color: #fff; }
.btn.gold { background: rgba(201,168,92,0.12); border-color: var(--gold); color: var(--gold); }
.btn.gold:hover { background: var(--gold); color: var(--bg); }
.btn.tabelog-tag {
  cursor: default;
  opacity: .72;
}
.btn.tabelog-tag:hover {
  border-color: var(--line);
  color: var(--ink);
}

/* ─── RESERVE ─── */
.reserve { position: relative; padding: 72px 24px 80px; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg) 0%, #150807 100%); overflow: hidden; }
.reserve-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(243,235,217,0.04) 0%, transparent 60%); }
.reserve-inner { position: relative; z-index: 1; }
.reserve-layout { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.reserve-logo-col { display: flex; align-items: center; justify-content: center; }
.reserve-logo { width: 200px; height: auto; display: block; opacity: 0.95; }
.reserve-content-col { text-align: center; }
.reserve-h2 { font-family: "Shippori Mincho",serif; font-size: 26px; letter-spacing: .1em; margin: 0 0 16px; font-weight: 500; }
.reserve-h2 .gold { color: var(--gold); }
.reserve-phone { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif; font-size: 38px; letter-spacing: .10em; color: var(--gold); text-decoration: none; margin: 20px 0 10px; line-height: 1; font-weight: 600; font-variant-numeric: tabular-nums; }
.reserve-phone svg { width: 28px; height: 28px; flex-shrink: 0; }
.reserve-note { color: var(--sub); font-size: 14px; line-height: 2; letter-spacing: .05em; margin: 0; }
.reserve-hp-note { font-family: "Shippori Mincho",serif; font-size: 15px; color: var(--gold-soft); letter-spacing: .08em; line-height: 1.8; margin: 10px 0 0; padding: 10px 16px; border: 1px solid rgba(201,168,92,0.3); display: inline-block; }
.reserve-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.footer {
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  border-top: 1px solid var(--line);
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  height: 44px;
  width: auto;
}
.footer-brand {
  color: var(--ink);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .18em;
  white-space: nowrap;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Cormorant Garamond",serif;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ─── FIXED MOBILE BAR ─── */
.fixed-bar { position: fixed; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 2fr 1fr 1fr; background: rgba(10,7,5,0.98); backdrop-filter: blur(10px); border-top: 1px solid rgba(201,168,92,0.3); z-index: 40; height: 72px; }
.fixed-bar-item { display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); color: var(--ink); gap: 2px; }
.fixed-bar-item:last-child { border-right: none; }
.fixed-bar-item .bar-icon { font-size: 20px; line-height: 1; }
.fixed-bar-item .bar-label { font-family: "Shippori Mincho",serif; font-size: 9px; letter-spacing: .2em; font-weight: 500; opacity: 0.75; }
.fixed-bar-item .bar-num { font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif; font-size: 17px; letter-spacing: .08em; font-weight: 700; line-height: 1; color: var(--gold); }
.fixed-bar-item.tel { background: rgba(201,168,92,0.08); }
.fixed-bar-item.line { color: var(--green); }
.fixed-bar-item.tabelog-tag { opacity: .72; }

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  body { padding-bottom: 0; font-size: 16px; }
  .nav { justify-content: space-between; padding: 16px 40px; }
  .nav-end { order: -1; }
  .nav-r { display: flex; gap: 28px; align-items: center; font-family: "Shippori Mincho",serif; font-size: 11px; letter-spacing: .3em; }
  .nav-r a { color: var(--ink); opacity: .85; }
  .nav-r a:hover { color: var(--gold); opacity: 1; }
  .nav-r a.active { color: var(--gold); opacity: 1; }
  .nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--gold); color: var(--gold); font-family: "Shippori Mincho",serif; font-size: 10px; letter-spacing: .3em; }
  .nav-cta:hover { background: var(--gold); color: var(--bg); }
  .menu-btn { display: none; }
  .nav-logo img { height: 44px; }
  .nav-brand { min-height: 44px; font-size: 20px; }
  .page-hero { height: 340px; }
  .page-hero-content { padding: 0 56px 48px; }
  .page-h1 { font-size: 68px; }
  .hero-content { padding: 120px 56px 100px; max-width: 1280px; margin: 0 auto; }
  .hero-logo { height: 240px; }
  .hero-h1 { font-size: 100px; }
  html[lang="en"] .hero-h1,
  html[lang="ko"] .hero-h1 { font-size: 80px; }
  .hero-tagline { font-size: 16px; max-width: 480px; }
  .slider { height: 420px; }
  .slider-item { flex: 0 0 480px; }
  .section { padding: 120px 56px; max-width: 1280px; margin: 0 auto; }
  .section-courses, .section-floor { max-width: 100%; padding-left: 0; padding-right: 0; }
  .section-courses-inner, .section-floor-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
  .h2 { font-size: 56px; margin-bottom: 32px; }
  .lead { font-size: 15px; max-width: 560px; }
  .page-links { grid-template-columns: repeat(5,1fr); gap: 16px; }
  .kw-list { grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .kw-num { font-size: 36px; }
  .kw-title { font-size: 20px; }
  .course-grid { grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .course-mark { font-size: 70px; }
  .course-price { font-size: 36px; }
  .seats { grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .seat-num { font-size: 32px; }
  .events-stack { grid-template-columns: 1fr 1fr; margin-top: 56px; gap: 24px; }
  .event-num { font-size: 34px; }
  .event h4 { font-size: 18px; }
  .info-dl { grid-template-columns: 110px 1fr; }
  .info-dl dt { font-size: 12px; }
  .info-dl dd { font-size: 14px; }
  .info-map { height: 360px; margin-top: 32px; }
  .reserve { padding: 100px 56px 110px; }
  .reserve-layout { flex-direction: row; align-items: center; justify-content: center; gap: 64px; max-width: 900px; margin: 0 auto; }
  .reserve-logo-col { flex: 0 0 auto; }
  .reserve-logo { width: 260px; }
  .reserve-content-col { flex: 0 0 auto; text-align: left; }
  .reserve-content-col .eyebrow { justify-content: flex-start; }
  .reserve-content-col .eyebrow::before { display: block; }
  .reserve-phone { justify-content: flex-start; font-size: 48px; }
  .reserve-phone svg { width: 34px; height: 34px; }
  .reserve-h2 { font-size: 36px; }
  .reserve-actions { flex-direction: row; max-width: none; gap: 12px; justify-content: flex-start; margin-left: 0; }
  .reserve-actions .btn { padding: 16px 28px; }
  .footer { flex-direction: row; justify-content: space-between; align-items: center; padding: 44px 56px; }
  .footer-logo { height: 56px; }
  .footer-right { font-size: 15px; flex-direction: row; gap: 24px; align-items: center; }
  .fixed-bar { display: none; }
}
