/* ============================================================
   Cafe&Bar NICO — Renewal Proposal Demo
   Midnight Elegance / Urban Hideaway
   ============================================================ */

:root {
  --ink: #0c0a08;          /* ディープブラック（ベース） */
  --ink-2: #131009;        /* セクション差の黒 */
  --charcoal: #1b1712;     /* パネル */
  --charcoal-2: #221d16;
  --ivory: #f1ebe0;        /* 見出し・主要文字 */
  --text: #d8d1c4;         /* 本文 */
  --muted: #a2988a;        /* 補助文字 */
  --gold: #c9a86a;         /* シャンパンゴールド */
  --gold-bright: #e0c48d;
  --gold-dim: rgba(201, 168, 106, 0.35);
  --line: rgba(201, 168, 106, 0.18);
  --bordeaux: #6b2737;     /* 深いボルドー（少量） */
  --line-green: #06c755;   /* LINEブランド色（予約導線のみ） */
  --serif-en: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --serif-jp: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  --sans-jp: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Meiryo', sans-serif;
  --header-h: 72px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans-jp);
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; }
li { list-style: none; }
small { display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 10px 18px; text-decoration: none;
}
.skip-link:focus { left: 0; }
.sp-only { display: none; }
.nobr { white-space: nowrap; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* ---------- 共通レイアウト ---------- */
.container { max-width: 1080px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 11vw, 128px); background: var(--ink); }
.section-dark { background: var(--ink-2); border-block: 1px solid var(--line); }

.kicker {
  font-family: var(--serif-en);
  font-size: 13px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.kicker::after {
  content: ''; display: inline-block; vertical-align: middle;
  width: 42px; height: 1px; background: var(--gold-dim); margin-left: 16px;
}
.heading {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.5; letter-spacing: 0.08em;
  color: var(--ivory);
  margin-bottom: 22px;
}
.heading-note {
  display: inline-block; margin-left: 16px; padding: 4px 14px;
  border: 1px solid var(--gold-dim); border-radius: 999px;
  font-family: var(--sans-jp); font-size: 13px; letter-spacing: 0.14em;
  color: var(--gold-bright); vertical-align: middle;
}
.lead { color: var(--muted); margin-bottom: clamp(36px, 6vw, 56px); max-width: 640px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 34px;
  font-size: 15px; letter-spacing: 0.12em; text-decoration: none;
  border-radius: 2px; cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s, opacity .3s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408; font-weight: 700; border: none;
}
.btn-gold:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(241, 235, 224, 0.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-line {
  background: transparent; color: var(--ivory);
  border: 1px solid var(--gold); color: var(--gold-bright); font-weight: 600;
}
.btn-line:hover { background: var(--gold); color: #1a1408; }
.btn-mini {
  display: inline-block; padding: 5px 14px; margin-right: 8px;
  background: transparent; border: 1px solid var(--gold-dim); border-radius: 999px;
  color: var(--gold-bright); font-size: 12.5px; letter-spacing: 0.08em;
  text-decoration: none; cursor: pointer;
  transition: background-color .3s, color .3s;
}
.btn-mini:hover { background: var(--gold); color: #1a1408; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color .35s, box-shadow .35s;
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  max-width: 1240px; margin-inline: auto;
  padding: 18px 24px;
  transition: padding .35s;
}
.site-header.is-scrolled {
  background: rgba(10, 8, 6, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-scrolled .header-inner { padding-block: 10px; }
.header-logo img { width: 128px; height: auto; }
.header-nav { display: flex; gap: 26px; margin-left: auto; }
.header-nav a {
  font-family: var(--serif-en); font-size: 15px; letter-spacing: 0.16em;
  color: var(--ivory); text-decoration: none; position: relative; padding-block: 4px;
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .3s;
}
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-tel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  color: var(--gold-bright); transition: background-color .3s, color .3s;
}
.header-tel:hover { background: var(--gold); color: #1a1408; }
.btn-header { min-height: 42px; padding: 8px 22px; font-size: 13.5px; }
.drawer-toggle { display: none; }

/* ---------- ドロワー（モバイル） ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 8, 6, 0.97);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  font-family: var(--serif-en); font-size: 30px; letter-spacing: 0.1em;
  color: var(--ivory); text-decoration: none; padding-block: 10px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.12);
  display: flex; align-items: baseline; gap: 14px;
}
.drawer-nav a small { font-family: var(--sans-jp); font-size: 12px; color: var(--muted); }
.drawer-cta { display: flex; flex-direction: column; gap: 12px; }
.drawer-cta .btn { width: 100%; }
.drawer-insta { color: var(--muted); font-size: 13px; text-align: center; text-decoration: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: calc(var(--header-h) + 24px) 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(201, 168, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 110%, rgba(107, 39, 55, 0.22), transparent 65%),
    linear-gradient(180deg, #0e0b08 0%, #0c0a08 55%, #100d0a 100%);
}
.hero-bg::after {
  /* 上質さを出す微細ノイズ（画像不使用） */
  content: ''; position: absolute; inset: 0; opacity: 0.35;
  background-image: repeating-radial-gradient(circle at 17% 32%, transparent 0 2px, rgba(255,255,255,0.008) 2px 3px);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero-eyebrow {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: 0.5em;
  color: var(--gold); margin-bottom: 30px;
}
.hero-logo {
  width: min(480px, 82vw); height: auto; margin-inline: auto;
  margin-bottom: 38px;
}
.hero-copy {
  font-family: var(--serif-jp); font-weight: 600;
  font-size: clamp(24px, 4.6vw, 38px); line-height: 1.7; letter-spacing: 0.12em;
  color: var(--ivory); margin-bottom: 14px;
}
.hero-sub {
  color: var(--muted); font-size: clamp(14px, 2vw, 16.5px); letter-spacing: 0.22em;
  margin-bottom: 42px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-facts {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px 16px; color: var(--muted); font-size: 13px; letter-spacing: 0.1em;
}
.hero-facts .sep { width: 1px; height: 14px; background: var(--gold-dim); }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--muted);
  font-family: var(--serif-en); font-size: 11px; letter-spacing: 0.4em;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollcue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ---------- CONCEPT ---------- */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: clamp(36px, 6vw, 56px);
}
.concept-card {
  position: relative; background: var(--charcoal);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 40px 30px 34px;
}
.concept-card::before {
  content: ''; position: absolute; top: 0; left: 30px; width: 46px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.concept-num {
  font-family: var(--serif-en); font-size: 15px; letter-spacing: 0.2em;
  color: var(--gold);
}
.concept-card h3 {
  font-family: var(--serif-jp); font-weight: 600;
  font-size: 21px; line-height: 1.6; letter-spacing: 0.1em;
  color: var(--ivory); margin: 14px 0 16px;
}
.concept-card p { font-size: 14px; color: var(--muted); }

/* ---------- 飲み放題 PRICE ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.price-card {
  background: var(--charcoal);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 34px 30px; text-align: center;
  transition: border-color .3s;
}
.price-card:hover { border-color: var(--gold-dim); }
.price-min {
  font-family: var(--serif-en); color: var(--gold-bright);
  font-size: 15px; letter-spacing: 0.18em; margin-bottom: 20px;
}
.price-min b { font-size: 52px; font-weight: 500; line-height: 1; margin-right: 6px; }
.price-card dl { display: flex; flex-direction: column; gap: 10px; }
.price-card dl > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; border-bottom: 1px dotted rgba(201, 168, 106, 0.25);
}
.price-card dt { font-size: 13.5px; color: var(--muted); letter-spacing: 0.2em; }
.price-card dd {
  font-family: var(--serif-en); font-size: 26px; color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.price-notes {
  display: flex; gap: 8px 28px; flex-wrap: wrap;
  margin-top: 26px; color: var(--muted); font-size: 13px;
}
.price-notes li::before { content: '※ '; color: var(--gold); }
.freedrink-detail {
  margin-top: 34px; border: 1px solid var(--line); border-radius: 3px;
  background: var(--charcoal);
}
.freedrink-detail summary {
  cursor: pointer; list-style: none; padding: 18px 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif-jp); font-size: 16.5px; letter-spacing: 0.12em; color: var(--ivory);
}
.freedrink-detail summary::-webkit-details-marker { display: none; }
.freedrink-detail summary span { color: var(--gold); font-size: 20px; transition: transform .3s; }
.freedrink-detail[open] summary span { transform: rotate(45deg); }
.freedrink-cols {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px;
  padding: 6px 26px 28px; border-top: 1px solid var(--line);
}
.freedrink-cols h4 {
  font-family: var(--serif-en); font-weight: 500; font-size: 17px;
  letter-spacing: 0.24em; color: var(--gold-bright); margin: 20px 0 10px;
}
.freedrink-cols p { font-size: 13.5px; color: var(--text); padding-block: 4px; }

/* ---------- MENU ---------- */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.menu-tabs [role="tab"] {
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); font-size: 13.5px; letter-spacing: 0.08em;
  transition: background-color .25s, color .25s, border-color .25s;
}
.menu-tabs [role="tab"]:hover { border-color: var(--gold); color: var(--gold-bright); }
.menu-tabs [role="tab"][aria-selected="true"] {
  background: var(--gold); border-color: var(--gold);
  color: #1a1408; font-weight: 700;
}
.menu-panels {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 3px;
  padding: clamp(22px, 4vw, 44px);
  min-height: 300px;
}
.js .menu-panel { display: none; }
.js .menu-panel.is-active { display: block; animation: panelin .35s ease; }
@keyframes panelin { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; } }
/* JS無効時は全カテゴリを縦に表示し見出しも出す */
html:not(.js) .menu-panel { display: block; margin-bottom: 40px; }
html:not(.js) .menu-cat {
  position: static; width: auto; height: auto; margin: 0 0 12px; clip: auto;
  overflow: visible; white-space: normal;
  font-family: var(--serif-en); color: var(--gold); font-size: 20px; letter-spacing: 0.2em;
}
.menu-note { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.menu-note::before { content: '— '; color: var(--gold); }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 48px; }
.menu-list li {
  display: flex; align-items: baseline; gap: 12px;
  padding-block: 11px;
  border-bottom: 1px dotted rgba(201, 168, 106, 0.22);
}
.m-name { color: var(--ivory); font-size: 15px; }
.m-name small { color: var(--muted); font-size: 12px; margin-top: 1px; }
.menu-list li::after { content: ''; flex: 1; order: 2; }
.m-name { order: 1; }
.m-price {
  order: 3; margin-left: auto;
  font-family: var(--serif-en); font-size: 17px; color: var(--gold-bright);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.menu-list-cols { grid-template-columns: repeat(3, 1fr); gap: 2px 32px; }
.menu-list-cols li { color: var(--ivory); font-size: 14.5px; }

/* ---------- 中盤CTA ---------- */
.cta-band {
  background: linear-gradient(90deg, rgba(201,168,106,0.10), rgba(107,39,55,0.14)), var(--ink-2);
  border-block: 1px solid var(--line);
  padding-block: 44px;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band-copy {
  font-family: var(--serif-jp); font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: 0.1em; color: var(--ivory);
}
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- EVENT ---------- */
.event-grid {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px;
  align-items: start;
}
.event-card {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; transition: border-color .3s, transform .3s;
}
.event-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.event-card a { text-decoration: none; display: block; }
.event-card figure { position: relative; aspect-ratio: 707 / 900; overflow: hidden; }
.event-featured figure { aspect-ratio: 707 / 1000; }
.event-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.event-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(12, 10, 8, 0.85); border: 1px solid var(--gold-dim);
  color: var(--gold-bright); font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.26em; padding: 5px 12px;
}
.event-body { padding: 20px 22px 24px; }
.event-body time {
  display: block; font-family: var(--serif-en); font-size: 13px;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px;
}
.event-body h3 {
  font-family: var(--serif-en); font-weight: 500; font-size: 22px;
  letter-spacing: 0.06em; color: var(--ivory); line-height: 1.4; margin-bottom: 10px;
}
.event-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.event-more {
  font-size: 12.5px; letter-spacing: 0.2em; color: var(--gold-bright);
}
.event-more::after { content: ' →'; }
.event-follow { margin-top: 34px; color: var(--muted); font-size: 14px; }
.event-follow a { color: var(--gold-bright); text-underline-offset: 4px; }

/* ---------- ATMOSPHERE ---------- */
.atmo-wide {
  position: relative; max-width: 1240px; margin: 0 auto clamp(28px, 5vw, 48px);
  overflow: hidden;
}
.atmo-wide img { width: 100%; }
.atmo-wide figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 60px 28px 20px;
  background: linear-gradient(180deg, transparent, rgba(12, 10, 8, 0.88));
  color: var(--ivory); font-family: var(--serif-jp);
  font-size: clamp(14px, 2.2vw, 18px); letter-spacing: 0.14em; text-align: center;
}
.atmo-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.atmo-photo { border: 1px solid var(--line); padding: 10px; background: var(--charcoal); }
.atmo-quote {
  font-family: var(--serif-jp); font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.8; letter-spacing: 0.1em; color: var(--ivory); margin-bottom: 16px;
}
.atmo-text p:not(.atmo-quote) { color: var(--muted); font-size: 14px; }

/* ---------- ACCESS ---------- */
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.access-dl > div {
  display: grid; grid-template-columns: 92px 1fr; gap: 18px;
  padding-block: 16px; border-bottom: 1px solid rgba(201, 168, 106, 0.14);
}
.access-dl dt {
  color: var(--gold); font-size: 13px; letter-spacing: 0.2em; padding-top: 3px;
}
.access-dl dd { color: var(--text); font-size: 14.5px; }
.access-dl dd small { color: var(--muted); font-size: 12px; margin-top: 4px; }
.addr-btns { display: flex; gap: 8px; margin-top: 10px; }
.hours-row { display: flex; align-items: baseline; gap: 14px; }
.hours-row em {
  font-style: normal; font-family: var(--serif-en); font-size: 12px;
  letter-spacing: 0.22em; color: var(--gold-bright); width: 44px;
}
.closed-day {
  color: var(--ivory); background: var(--bordeaux);
  padding: 2px 14px; border-radius: 2px; font-weight: 600; letter-spacing: 0.2em;
}
.access-tel {
  font-family: var(--serif-en); font-size: 24px; color: var(--ivory);
  text-decoration: none; letter-spacing: 0.06em;
}
.access-tel:hover { color: var(--gold-bright); }
.access-link { color: var(--gold-bright); text-underline-offset: 4px; }
.access-photo { border: 1px solid var(--line); padding: 10px; background: var(--charcoal); }
.access-photo figcaption { padding-top: 10px; font-size: 12.5px; color: var(--muted); text-align: center; }
.map-facade {
  margin-top: 22px; min-height: 220px;
  border: 1px dashed var(--gold-dim); border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--charcoal);
}
.map-note { color: var(--muted); font-size: 12px; }
.map-facade iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(35%) contrast(95%); }
.map-facade.is-loaded { border-style: solid; padding: 0; min-height: 0; }

/* ---------- RESERVE ---------- */
.reserve { text-align: center; }
.reserve .lead { margin-inline: auto; }
.reserve-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 10px;
}
.reserve-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 300px; min-height: 84px; padding: 18px 40px;
  text-decoration: none; border-radius: 3px;
  transition: opacity .3s, background-color .3s;
}
.reserve-btn-label { font-size: 19px; font-weight: 700; letter-spacing: 0.1em; }
.reserve-btn-sub { font-size: 12px; margin-top: 5px; opacity: 0.8; }
.reserve-line { background: var(--line-green); color: #fff; }
.reserve-line:hover { opacity: 0.85; }
.reserve-tel { border: 1px solid var(--gold); color: var(--gold-bright); }
.reserve-tel .reserve-btn-label { font-family: var(--serif-en); font-size: 24px; font-weight: 500; }
.reserve-tel:hover { background: rgba(201, 168, 106, 0.12); }

/* ---------- FOOTER ---------- */
.site-footer { background: #080604; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-block: 64px 48px;
}
.footer-brand img { width: 180px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-links a {
  color: var(--muted); text-decoration: none; font-size: 13.5px; letter-spacing: 0.1em;
  transition: color .3s;
}
.footer-nav a:hover, .footer-links a:hover { color: var(--gold-bright); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom small { color: #6f675c; font-size: 11.5px; letter-spacing: 0.08em; }
.demo-note::before { content: '⚑ '; color: var(--gold); }

/* ---------- モバイル固定CTA ---------- */
.mobile-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: rgba(10, 8, 6, 0.96);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%); transition: transform .35s;
}
.mobile-cta.is-shown { transform: translateY(0); }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; text-decoration: none;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ivory);
}
.mobile-cta a:first-child { border-right: 1px solid var(--line); }
.mobile-cta-line { background: var(--line-green); color: #fff !important; }

/* ---------- スクロール出現 ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll span { animation: none; }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .menu-list { grid-template-columns: 1fr; }
  .menu-list-cols { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .event-featured { grid-column: 1 / -1; }
  .event-featured figure { aspect-ratio: 16 / 10; }
  .event-featured figure img { object-position: center 30%; }
}

@media (max-width: 768px) {
  .sp-only { display: inline; }
  :root { --header-h: 60px; }

  .header-nav { display: none; }
  .header-tel { display: none; }
  .btn-header { display: none; }
  .header-actions { margin-left: auto; }
  .drawer-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 46px; height: 46px; padding: 10px;
    background: transparent; border: none; cursor: pointer;
  }
  .drawer-toggle span {
    display: block; height: 1.5px; width: 100%;
    background: var(--ivory); transition: transform .3s, opacity .3s;
  }
  .drawer-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .drawer-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .drawer-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .header-logo img { width: 104px; }

  .container { padding-inline: 20px; }
  .section { padding-block: 64px; }

  .hero { padding-bottom: 110px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-facts { flex-direction: column; gap: 6px; }
  .hero-facts .sep { display: none; }

  .concept-grid { grid-template-columns: 1fr; gap: 16px; }
  .concept-card h3 br { display: none; }

  .price-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px; text-align: left; padding: 22px 24px; }
  .price-min { margin-bottom: 0; min-width: 96px; }
  .price-min b { font-size: 40px; }
  .freedrink-cols { grid-template-columns: 1fr; gap: 0; }

  .menu-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; margin-inline: -20px; padding-inline: 20px; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs [role="tab"] { flex: 0 0 auto; }
  .menu-list-cols { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band-btns { flex-direction: column; }

  .event-grid { grid-template-columns: 1fr; }
  .event-featured figure { aspect-ratio: 707 / 900; }

  .atmo-row { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .access-dl > div { grid-template-columns: 76px 1fr; gap: 12px; }

  .reserve-btns { flex-direction: column; }
  .reserve-btn { min-width: 0; width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-block: 44px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta { display: grid; }
  body { padding-bottom: 0; }
  main { scroll-margin-bottom: 60px; }
  .site-footer { padding-bottom: 64px; }
}
