/* ============================================================
   NOIR — Members Only Bar | style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --noir:    #080608;
  --noir-2:  #100d10;
  --noir-3:  #1a141a;
  --noir-4:  #231b23;
  --ivory:   #f0ece4;
  --ivory-2: #d8d0c0;
  --gold:    #b8966a;
  --gold-2:  #cfa97c;
  --gold-3:  #9a7852;
  --silver:  #9a9898;
  --border:  rgba(184,150,106,0.16);
  --border-s:rgba(184,150,106,0.30);

  --ff-en:   'Cormorant Garamond', 'Times New Roman', serif;
  --ff-ja:   'Noto Serif JP', 'Yu Mincho', serif;
  --ff-mono: 'Montserrat', sans-serif;

  --ease:    cubic-bezier(.25,.46,.45,.94);
  --ease-in: cubic-bezier(.42,0,1,1);

  --max-w:   1200px;
  --header-h:72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--noir);
  color: var(--ivory);
  font-family: var(--ff-ja);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }

.section-label {
  font-family: var(--ff-mono);
  font-weight: 200;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-en);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 20px;
}
.section-sub {
  font-size: .9rem;
  color: var(--ivory-2);
  max-width: 520px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 72px; }

.body-text {
  font-size: .95rem;
  color: var(--ivory-2);
  line-height: 2;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--ff-mono);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s;
}
.btn-primary:hover { background: var(--gold-2); }

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid var(--border-s);
  color: var(--ivory-2);
  font-family: var(--ff-mono);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}
.link-arrow:hover { gap: 14px; }

/* ── Anim ──────────────────────────────────────────────── */
[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-anim="fade"] { transform: none; }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* ─── DEMO BAR ─────────────────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,6,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(240,236,228,0.35);
}
.demo-badge {
  font-family: var(--ff-mono); font-size: 0.54rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(184,150,106,0.15); color: var(--gold);
  padding: 3px 10px; flex-shrink: 0;
}
.demo-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(240,236,228,0.15); font-size: 0.62rem; margin-left: 4px; }
@media(max-width:640px){ .demo-copy { display: none; } }

/* ── HEADER ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(8,6,8,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-logo {
  display: flex; flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-en {
  font-family: var(--ff-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--gold);
}
.logo-tagline {
  font-family: var(--ff-mono);
  font-size: .55rem;
  font-weight: 200;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-2);
}
.header-nav {
  display: flex; gap: 36px; margin-left: auto;
}
.header-nav a {
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory-2);
  transition: color .3s;
}
.header-nav a:hover { color: var(--gold); }

.btn-reserve-header {
  display: inline-block;
  padding: 9px 24px;
  border: 1px solid var(--border-s);
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.btn-reserve-header:hover { background: var(--gold); color: var(--noir); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--ivory); transition: .3s; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,6,8,.5) 0%,
    rgba(8,6,8,.3) 40%,
    rgba(8,6,8,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-sub {
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 200;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade 1.2s .3s var(--ease) forwards;
}
.hero-title {
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 1.2s .6s var(--ease) forwards;
}
.ht-en {
  display: block;
  font-family: var(--ff-en);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 300;
  letter-spacing: .18em;
  line-height: 1;
  color: var(--ivory);
}
.ht-ja {
  display: block;
  font-family: var(--ff-ja);
  font-size: clamp(.95rem, 2.2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: .18em;
  color: var(--ivory-2);
  margin-top: 12px;
}
.hero-desc {
  font-size: clamp(.85rem, 1.6vw, 1rem);
  line-height: 2;
  color: var(--ivory-2);
  margin-bottom: 48px;
  opacity: 0;
  animation: heroUp 1.2s .9s var(--ease) forwards;
}
.hero-cta {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 1.2s 1.1s var(--ease) forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-2);
  opacity: 0;
  animation: heroFade 1.2s 1.5s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s 2s infinite;
}

@keyframes heroFade { to { opacity: 1; } }
@keyframes heroUp   { to { opacity: 1; transform: translateY(0); } }
.hero-title, .hero-desc, .hero-cta { transform: translateY(20px); }
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--noir-2);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 200;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-2);
  padding: 0 24px;
}
.marquee-track .sep { color: var(--gold); padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ─────────────────────────────────────────────── */
.about-section { background: var(--noir); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-main {
  width: 84%;
  height: 100%;
  overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-sub {
  position: absolute;
  bottom: -32px; right: 0;
  width: 48%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--noir);
}
.about-img-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-img-sub:hover img { transform: scale(1.06); }
.about-text { padding: 40px 0; }
.about-stats {
  display: flex; gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--ff-en);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-num small { font-size: 1rem; }
.stat-label {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--silver);
}

/* ── BOTTLES ───────────────────────────────────────────── */
.bottles-section { background: var(--noir-2); }
.bottles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.bottle-card {
  position: relative;
  overflow: hidden;
  transition-delay: var(--delay, 0s);
}
.bottle-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.bottle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.bottle-card:hover .bottle-img img { transform: scale(1.06); }
.bottle-info {
  padding: 28px 24px;
  background: var(--noir-3);
}
.bottle-cat {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.bottle-name {
  font-family: var(--ff-ja);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.bottle-desc {
  font-size: .82rem;
  color: var(--ivory-2);
  line-height: 1.8;
}
.menu-note {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.menu-note p {
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--ivory-2);
  margin-bottom: 16px;
}

/* ── COCKTAIL FEATURE ───────────────────────────────────── */
.cocktail-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.cf-img {
  overflow: hidden;
}
.cf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cf-img:hover img { transform: scale(1.04); }
.cf-text {
  background: var(--noir-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.cf-title {
  font-family: var(--ff-ja);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 24px;
}
.cf-list {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}
.cf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cf-name {
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .06em;
}
.cf-price {
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .08em;
}

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-section { background: var(--noir); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 0;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  transition-delay: var(--delay, 0s);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gi-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gi-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── MEMBERSHIP ─────────────────────────────────────────── */
.membership-section { background: var(--noir-2); }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.membership-card {
  padding: 44px 36px;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.mc-silver { background: var(--noir-3); }
.mc-gold.featured { background: var(--noir-4); }
.mc-black { background: var(--noir); border: 1px solid var(--border); }
.mc-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--ff-mono);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.mc-header { margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.mc-tier {
  display: block;
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.mc-fee {
  font-family: var(--ff-mono);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
}
.mc-period {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--silver);
  margin-left: 4px;
}
.mc-features li {
  font-size: .85rem;
  color: var(--ivory-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.mc-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-family: var(--ff-en);
}
.membership-note {
  text-align: center;
  font-size: .8rem;
  color: var(--silver);
}

/* ── PRIVATE ROOM ───────────────────────────────────────── */
.private-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.private-img { overflow: hidden; }
.private-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.private-img:hover img { transform: scale(1.04); }
.private-text {
  background: var(--noir-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  gap: 20px;
}
.private-title {
  font-family: var(--ff-ja);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
}

/* ── RESERVE ────────────────────────────────────────────── */
.reserve-section { background: var(--noir-2); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.ri-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.ri-label {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ri-val {
  font-size: .92rem;
  color: var(--ivory-2);
  line-height: 1.6;
}
.reserve-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-2);
}
.req {
  font-size: .6rem;
  color: var(--gold);
  margin-left: 8px;
  vertical-align: middle;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--noir-3);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--ff-ja);
  font-size: .9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 100px; }
.btn-full { width: 100%; text-align: center; padding: 16px; }

/* ── ACCESS ─────────────────────────────────────────────── */
.access-section { background: var(--noir); }
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--noir-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-family: var(--ff-mono);
  font-size: .8rem;
  letter-spacing: .14em;
}
.access-dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; align-items: start; }
.access-dl dt {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
  white-space: nowrap;
}
.access-dl dd { font-size: .9rem; color: var(--ivory-2); line-height: 1.7; }
.access-note {
  margin-top: 28px;
  font-size: .8rem;
  color: var(--silver);
  line-height: 1.8;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--noir);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-brand {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
}
.footer-nav a {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-2);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--silver);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 560px; margin: 0 auto; }
  .cocktail-feature,
  .private-section { grid-template-columns: 1fr; }
  .cf-text,
  .private-text { padding: 60px 40px; }
  .membership-grid { grid-template-columns: 1fr; gap: 2px; }
  .bottles-grid { grid-template-columns: 1fr 1fr; }
  .access-grid { grid-template-columns: 1fr; gap: 48px; }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Mobile Nav Overlay ─────────────────────────────────── */
.header-nav {
  transition: opacity .35s ease, transform .35s ease;
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 80px 0; }

  /* デフォルト非表示 */
  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: fixed;
    inset: 0;
    background: #080608;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
  }
  .header-nav.nav-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .header-nav a {
    font-family: var(--ff-en);
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    font-weight: 300;
    letter-spacing: .12em;
    color: var(--ivory-2);
    padding: 18px 0;
    border-bottom: 1px solid rgba(184,150,106,.12);
    width: 72%;
    text-align: center;
    transition: color .25s;
  }
  .header-nav a:first-child { border-top: 1px solid rgba(184,150,106,.12); }
  .header-nav a:hover, .header-nav a.active { color: var(--gold); }

  .btn-reserve-header { display: none; }
  .hamburger { display: flex; z-index: 1100; position: relative; }

  /* ハンバーガー → X 変換 */
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hamburger span { transition: transform .3s ease, opacity .3s ease; }

  /* メニュー展開時: backdrop-filter を無効化してスタッキングコンテキスト問題を回避 */
  .site-header.menu-active {
    background: #080608 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
  }

  .bottles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large, .gi-wide { grid-column: span 2; }
  .hero-content { padding: 100px 20px 60px; }
  .ht-en { font-size: 4.5rem; }
  .cocktail-feature { min-height: auto; }
  .private-section { min-height: auto; }
  .cf-text,
  .private-text { padding: 48px 24px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .footer-nav { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large, .gi-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .reserve-grid, .access-grid { grid-template-columns: 1fr; }
}
