*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #060608; --dark: #0e0e12; --dark2: #13131a;
  --gold: #c9a96e; --gold-light: #e0c48a;
  --white: #f5f0eb; --gray: #666;
  --pink: #ff4fa0; --purple: #b94fff; --cyan: #00d4ff;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Space Grotesk', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-jp); font-weight: 300; line-height: 1.8; overflow-x: hidden; }

/* ── NAV ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: background 0.4s, backdrop-filter 0.4s; }
#navbar.scrolled { background: rgba(6,6,8,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,169,110,0.15); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-svg { height: 34px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: rgba(245,240,235,0.75); text-decoration: none; font-family: var(--font-en); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important; color: var(--black) !important; padding: 8px 20px !important; border-radius: 100px !important; font-weight: 700 !important; letter-spacing: 0.08em !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 300; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ── HERO ── */
#hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,6,8,0.25) 0%, rgba(6,6,8,0.5) 50%, rgba(6,6,8,0.88) 100%); z-index: 1; }
.hero-noise { position: absolute; inset: 0; z-index: 2; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 20px; max-width: 700px; }
.hero-badge { display: inline-block; background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.4); color: var(--gold); font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.25em; padding: 6px 18px; border-radius: 100px; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero-sub { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.4em; color: rgba(245,240,235,0.5); text-transform: uppercase; margin-bottom: 12px; }
.hero-content h1 { font-family: var(--font-en); font-size: clamp(3.5rem, 14vw, 9rem); font-weight: 700; line-height: 0.88; letter-spacing: -0.02em; background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, var(--pink) 70%, var(--purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; filter: drop-shadow(0 0 40px rgba(255,79,160,0.3)); }
.hero-desc { font-size: 0.95rem; color: rgba(245,240,235,0.65); letter-spacing: 0.12em; margin-bottom: 28px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.hero-tags span { font-size: 0.72rem; letter-spacing: 0.06em; padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); color: rgba(245,240,235,0.7); backdrop-filter: blur(8px); background: rgba(255,255,255,0.05); }
.btn-hero { display: inline-block; padding: 15px 44px; background: linear-gradient(135deg, var(--pink), var(--purple)); color: white; text-decoration: none; font-family: var(--font-en); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 100px; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 30px rgba(255,79,160,0.4); }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(255,79,160,0.6); }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll span { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollLine 2s ease-in-out infinite; }
.hero-scroll small { font-family: var(--font-en); font-size: 0.58rem; letter-spacing: 0.3em; color: rgba(245,240,235,0.3); }
@keyframes scrollLine { 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} }
.hero-dots { position: absolute; bottom: 28px; right: 20px; z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 6px; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s, width 0.3s; }
.hero-dot.active { background: var(--gold); width: 22px; }

/* ── TICKER ── */
.ticker-wrap { background: var(--dark); border-top: 1px solid rgba(201,169,110,0.15); border-bottom: 1px solid rgba(201,169,110,0.15); overflow: hidden; padding: 12px 0; }
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track span { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,235,0.5); padding: 0 20px; }
.ticker-dot { color: var(--gold) !important; font-size: 0.5rem !important; padding: 0 4px !important; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── COMMON ── */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: 0.05em; }

/* ── ABOUT ── */
#about { background: var(--dark); padding: 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-split-img { position: relative; overflow: hidden; min-height: 400px; }
.about-split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: transform 8s ease; }
.about-split-img:hover img { transform: scale(1.05); }
.about-split-img2 { position: absolute; bottom: 32px; right: -60px; width: 200px; height: 260px; overflow: hidden; border: 3px solid var(--black); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.about-split-img2 img { width: 100%; height: 100%; object-fit: cover; }
.about-split-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; background: var(--dark); }
.about-split-content h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; margin-bottom: 24px; }
.about-split-content p { font-size: 0.9rem; color: rgba(245,240,235,0.7); margin-bottom: 16px; line-height: 1.9; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.08); margin: 32px 0; }
.stat { background: var(--dark); padding: 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-en); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.72rem; color: rgba(245,240,235,0.5); letter-spacing: 0.04em; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tags span { padding: 5px 12px; border: 1px solid rgba(201,169,110,0.3); color: var(--gold); font-size: 0.73rem; border-radius: 2px; }
.bell-teaser { margin-top: 24px; display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(255,79,160,0.06); border: 1px dashed rgba(255,79,160,0.35); border-radius: 8px; flex-wrap: wrap; }
.bell-icon { font-size: 1.4rem; animation: bellRing 2.5s ease-in-out infinite; display: inline-block; }
@keyframes bellRing { 0%,100%{transform:rotate(0)} 10%{transform:rotate(15deg)} 20%{transform:rotate(-12deg)} 30%{transform:rotate(10deg)} 40%{transform:rotate(-8deg)} 50%{transform:rotate(0)} }
.bell-text { font-size: 0.9rem; color: var(--white); letter-spacing: 0.04em; flex: 1; min-width: 0; }
.bell-hint { font-size: 0.7rem; color: var(--pink); letter-spacing: 0.1em; white-space: nowrap; }

/* ── GALLERY ── */
#gallery { background: var(--black); padding-bottom: 0; }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 260px); gap: 3px; margin-top: 0; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.75) saturate(0.8); }
.gal-item:hover img { transform: scale(1.08); filter: brightness(0.95) saturate(1.1); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.8) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(245,240,235,0.9); }

/* ── MENU ── */
#menu { background: var(--dark2); }
.menu-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab { background: none; border: none; color: rgba(245,240,235,0.45); font-family: var(--font-jp); font-size: 0.85rem; padding: 14px 24px; cursor: pointer; position: relative; transition: color 0.2s; white-space: nowrap; letter-spacing: 0.06em; flex-shrink: 0; }
.menu-tab::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--purple)); transform: scaleX(0); transition: transform 0.3s; }
.menu-tab.active { color: var(--white); }
.menu-tab.active::after { transform: scaleX(1); }
.menu-tab:hover { color: var(--white); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel-inner { display: grid; grid-template-columns: 420px 1fr; min-height: 480px; }
.menu-panel-img { overflow: hidden; position: relative; }
.menu-panel-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: transform 0.6s; display: block; }
.menu-panel-img:hover img { transform: scale(1.04); }
.menu-panel-content { background: var(--dark); padding: 40px 44px; overflow-y: auto; max-height: 540px; }
.menu-panel-header h3 { font-size: 1.4rem; font-weight: 400; color: var(--gold); margin-bottom: 10px; }
.menu-panel-catch { font-size: 0.82rem; color: rgba(245,240,235,0.55); line-height: 1.9; margin-bottom: 28px; border-left: 2px solid var(--pink); padding-left: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; color: rgba(245,240,235,0.82); gap: 10px; }
.price-row span:last-child { color: var(--gold); white-space: nowrap; flex-shrink: 0; font-family: var(--font-en); }
.price-row.highlight { background: rgba(255,79,160,0.08); margin: 0 -8px; padding: 12px 8px; border-radius: 4px; border-bottom: none; border: 1px solid rgba(255,79,160,0.25); margin-bottom: 6px; }
.price-row.highlight span:first-child { color: var(--white); font-weight: 500; }
.price-row.highlight span:last-child { color: var(--pink); font-weight: 700; font-size: 0.95rem; }
.price-row.sm { padding: 6px 0; font-size: 0.79rem; }
.price-row.sm span:last-child { color: rgba(245,240,235,0.82); }
.price-note { font-size: 0.74rem; color: rgba(245,240,235,0.4); margin-top: 8px; padding-left: 4px; }
.flavor-section { margin-top: 8px; }
.flavor-title { font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.25em; color: var(--gold); text-align: center; margin-bottom: 14px; }
.flavor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.flavor-grid span { font-size: 0.78rem; color: rgba(245,240,235,0.72); padding: 7px 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; transition: border-color 0.2s, color 0.2s; }
.flavor-grid span:hover { border-color: var(--gold); color: var(--white); }
.drink-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.drink-col h4 { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold); font-weight: 500; margin: 20px 0 8px; text-transform: uppercase; }
.drink-col h4:first-child { margin-top: 0; }
.price-badge { font-size: 0.63rem; color: rgba(245,240,235,0.4); letter-spacing: 0.03em; font-weight: 300; margin-left: 6px; }

/* ── PLAY & CHILL ── */
#play { background: var(--dark2); }
.section-sub { font-size: 0.88rem; color: rgba(245,240,235,0.5); margin-top: 12px; line-height: 1.9; }
.play-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.play-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
.play-card:hover { transform: translateY(-6px); }
.play-karaoke:hover { border-color: rgba(255,79,160,0.4); box-shadow: 0 16px 48px rgba(255,79,160,0.1); }
.play-darts:hover { border-color: rgba(0,212,255,0.4); box-shadow: 0 16px 48px rgba(0,212,255,0.1); }
.play-card-img { position: relative; height: 260px; overflow: hidden; }
.play-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) saturate(0.9); transition: transform 0.6s, filter 0.4s; }
.play-card:hover .play-card-img img { transform: scale(1.05); filter: brightness(0.8) saturate(1.1); }
.play-card-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; }
.play-glow-pink { background: linear-gradient(to top, rgba(255,79,160,0.5), transparent); }
.play-glow-cyan { background: linear-gradient(to top, rgba(0,212,255,0.4), transparent); }
.play-card-body { padding: 28px; }
.play-tag { display: inline-block; font-family: var(--font-en); font-size: 0.62rem; letter-spacing: 0.3em; font-weight: 700; color: var(--pink); border: 1px solid rgba(255,79,160,0.4); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.play-tag-cyan { color: var(--cyan) !important; border-color: rgba(0,212,255,0.4) !important; }
.play-card-body h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 12px; line-height: 1.4; }
.play-card-body p { font-size: 0.84rem; color: rgba(245,240,235,0.6); line-height: 1.9; margin-bottom: 20px; }
.play-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.play-points li { font-size: 0.8rem; color: rgba(245,240,235,0.55); letter-spacing: 0.04em; }
.nightcafe-banner { background: linear-gradient(135deg, rgba(185,79,255,0.12), rgba(0,212,255,0.08)); border: 1px solid rgba(185,79,255,0.2); border-radius: 16px; overflow: hidden; }
.nightcafe-banner-inner { padding: 48px 40px; text-align: center; }
.nightcafe-icons { display: flex; justify-content: center; gap: 16px; font-size: 1.6rem; margin-bottom: 20px; }
.nightcafe-banner-inner h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; margin-bottom: 14px; }
.nightcafe-banner-inner p { font-size: 0.88rem; color: rgba(245,240,235,0.6); line-height: 1.9; max-width: 520px; margin: 0 auto 28px; }
.btn-nightcafe { display: inline-block; padding: 14px 40px; background: linear-gradient(135deg, var(--purple), var(--cyan)); color: white; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; border-radius: 100px; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 4px 24px rgba(185,79,255,0.35); }
.btn-nightcafe:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── FEATURES BENTO ── */
#features { background: var(--black); }
.features-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); gap: 3px; }
.bento-item { position: relative; overflow: hidden; cursor: pointer; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); transition: transform 0.6s ease, filter 0.4s; }
.bento-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.game-collage { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.game-collage img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: filter 0.4s; }
.bento-game-collage:hover .game-collage img { filter: brightness(0.75); }
.game-slides { position: absolute; inset: 0; }
.game-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); opacity: 0; transition: opacity 0.8s ease; }
.game-slide.active { opacity: 1; }
.bento-game-slide:hover .game-slide.active { filter: brightness(0.7); }
.bento-neon { grid-column: span 2; grid-row: span 2; }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.92) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; transition: background 0.3s; }
.bento-item:hover .bento-overlay { background: linear-gradient(to top, rgba(6,6,8,0.96) 0%, rgba(6,6,8,0.15) 60%); }
.bento-num { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 6px; }
.bento-overlay h3 { font-size: 1rem; font-weight: 500; margin-bottom: 6px; }
.bento-neon .bento-overlay h3 { font-size: 1.4rem; }
.bento-overlay p { font-size: 0.8rem; color: rgba(245,240,235,0.6); }

/* ── SNS ── */
#sns { background: var(--dark); }
.sns-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 56px; }
.sns-card { display: flex; align-items: center; gap: 16px; padding: 24px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); text-decoration: none; color: var(--white); transition: border-color 0.3s, background 0.3s, transform 0.3s; border-radius: 8px; }
.sns-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.sns-instagram:hover { border-color: #e1306c; box-shadow: 0 8px 32px rgba(225,48,108,0.15); }
.sns-hotpepper:hover { border-color: #e8171a; box-shadow: 0 8px 32px rgba(232,23,26,0.15); }
.sns-tabelog:hover { border-color: #e8a800; box-shadow: 0 8px 32px rgba(232,168,0,0.15); }
.sns-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--gold); }
.sns-icon svg { width: 100%; height: 100%; }
.sns-name { font-family: var(--font-en); font-size: 0.68rem; letter-spacing: 0.15em; color: var(--gold); font-weight: 500; margin-bottom: 3px; text-transform: uppercase; }
.sns-handle { font-size: 0.85rem; font-weight: 500; margin-bottom: 3px; }
.sns-desc { font-size: 0.71rem; color: var(--gray); }
.sns-arrow { margin-left: auto; font-size: 1rem; color: var(--gray); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.sns-card:hover .sns-arrow { transform: translateX(4px); color: var(--white); }
.instagram-embed-wrap { text-align: center; }
.insta-follow-label { font-family: var(--font-en); font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gray); margin-bottom: 20px; text-transform: uppercase; }
.insta-photos { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; margin-bottom: 32px; }
.insta-photo-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.insta-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.4s; filter: brightness(0.75) saturate(0.8); }
.insta-photo-item:hover img { transform: scale(1.1); filter: brightness(1) saturate(1.2); }
.insta-overlay { position: absolute; inset: 0; background: rgba(225,48,108,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.insta-overlay span { color: white; font-size: 0.7rem; letter-spacing: 0.15em; opacity: 0; transition: opacity 0.3s; }
.insta-photo-item:hover .insta-overlay { background: rgba(225,48,108,0.4); }
.insta-photo-item:hover .insta-overlay span { opacity: 1; }
.btn-instagram-follow { display: inline-flex; align-items: center; gap: 10px; padding: 14px 40px; background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; border-radius: 100px; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 4px 24px rgba(253,29,29,0.3); }
.btn-instagram-follow:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(253,29,29,0.4); }

/* ── ACCESS ── */
#access { background: var(--dark2); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.access-row { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.access-row:first-child { padding-top: 0; }
.access-row h3 { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; }
.access-row p { font-size: 0.86rem; color: rgba(245,240,235,0.75); line-height: 1.8; }
.access-row a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.access-row a:hover { color: var(--white); }
.closed { font-size: 0.78rem; color: var(--gray); }
.access-map iframe { border-radius: 4px; filter: grayscale(70%) invert(88%) hue-rotate(180deg); }

/* ── CONTACT ── */
#contact { padding: 0; }
.contact-hero { position: relative; padding: 100px 0; }
.contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.5); }
.contact-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(185,79,255,0.3), rgba(255,79,160,0.2)); }
.contact-hero .container { position: relative; z-index: 1; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-contact { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 40px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); text-decoration: none; font-size: 0.88rem; letter-spacing: 0.05em; transition: background 0.3s, border-color 0.3s, transform 0.3s; min-width: 200px; border-radius: 8px; backdrop-filter: blur(12px); }
.btn-contact:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); transform: translateY(-4px); }
.btn-contact.instagram:hover { border-color: var(--pink); background: rgba(255,79,160,0.12); }
.btn-icon { font-size: 1.8rem; }
.btn-contact small { font-size: 0.72rem; color: rgba(245,240,235,0.45); }
.contact-dm-banner { margin-bottom: 36px; }
.dm-banner-inner { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: linear-gradient(135deg, rgba(131,58,180,0.25), rgba(253,29,29,0.2), rgba(252,176,69,0.15)); border: 1px solid rgba(255,79,160,0.4); border-radius: 12px; backdrop-filter: blur(12px); flex-wrap: wrap; }
.dm-banner-icon { color: var(--pink); flex-shrink: 0; }
.dm-banner-text { flex: 1; min-width: 160px; }
.dm-banner-title { font-size: 0.95rem; font-weight: 500; margin-bottom: 3px; }
.dm-banner-sub { font-size: 0.79rem; color: rgba(245,240,235,0.65); }
.btn-dm-reserve { display: inline-block; padding: 12px 28px; background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.06em; border-radius: 100px; font-weight: 500; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 4px 24px rgba(253,29,29,0.35); white-space: nowrap; flex-shrink: 0; }
.btn-dm-reserve:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 48px 20px; }
.footer-logo-wrap { margin-bottom: 20px; display: flex; justify-content: center; }
.footer-logo-svg { height: 56px; width: auto; max-width: 100%; }
footer p { font-size: 0.78rem; color: var(--gray); line-height: 1.9; }
.footer-copy { margin-top: 24px; font-size: 0.68rem !important; color: rgba(102,102,102,0.5) !important; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE 1024px ── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { height: 55vw; max-height: 460px; }
  .about-split-img2 { display: none; }
  .about-split-content { padding: 56px 40px; }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(4, 220px); }
  .features-bento { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 240px); }
  .bento-neon { grid-column: span 2; grid-row: span 1; }
  .menu-panel-inner { grid-template-columns: 360px 1fr; }
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
  .nav-inner { padding: 12px 16px; }
  .nav-logo-svg { height: 28px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6,6,8,0.97); flex-direction: column; justify-content: center; gap: 36px; font-size: 1rem; z-index: 250; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 72px 0; }
  .container { padding: 0 16px; }

  .hero-content h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-tags span { font-size: 0.68rem; padding: 4px 12px; }
  .btn-hero { padding: 13px 36px; font-size: 0.78rem; }
  .hero-dots { right: 12px; bottom: 20px; }

  .about-split { grid-template-columns: 1fr; }
  .about-split-img { height: 65vw; min-height: 260px; }
  .about-split-content { padding: 40px 20px; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .stat { padding: 16px 8px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }
  .bell-teaser { padding: 14px 16px; }
  .bell-text { font-size: 0.82rem; }

  .gallery-masonry { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gal-tall, .gal-wide { grid-column: span 1; grid-row: span 1; }
  .gal-item { height: 180px; }

  .menu-tabs { padding: 0 4px; }
  .menu-tab { font-size: 0.78rem; padding: 12px 16px; }
  .menu-panel-inner { grid-template-columns: 1fr; }
  .menu-panel-img { height: 220px; }
  .menu-panel-content { padding: 28px 20px; max-height: none; }
  .drink-cols { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: 1fr 1fr; }

  .features-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-neon { grid-column: span 2; }
  .bento-item { height: 220px; }
  .bento-neon { height: 260px; }

  .sns-grid { grid-template-columns: 1fr; gap: 10px; }
  .sns-card { padding: 18px 16px; }
  .insta-photos { grid-template-columns: repeat(3,1fr); }
  .btn-instagram-follow { padding: 12px 28px; font-size: 0.8rem; }

  .play-grid { grid-template-columns: 1fr; gap: 16px; }
  .play-card-img { height: 220px; }
  .play-card-body { padding: 20px; }
  .nightcafe-banner-inner { padding: 32px 20px; }
  .nightcafe-icons { font-size: 1.3rem; gap: 12px; }
  .access-grid { grid-template-columns: 1fr; gap: 36px; }
  .access-map iframe { height: 260px; }

  .contact-hero { padding: 72px 0; }
  .contact-btns { flex-direction: column; align-items: stretch; }
  .btn-contact { min-width: unset; padding: 22px 24px; }
  .dm-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .btn-dm-reserve { width: 100%; text-align: center; }

  .footer-logo-svg { height: 44px; }
  footer p { font-size: 0.74rem; }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
  .hero-badge { font-size: 0.62rem; padding: 5px 14px; }
  .hero-sub { letter-spacing: 0.25em; font-size: 0.65rem; }
  .hero-desc { font-size: 0.85rem; }
  .hero-tags { gap: 6px; }
  .about-split-content h2 { font-size: 1.4rem; }
  .section-header h2 { font-size: 1.5rem; }
  .bento-overlay h3 { font-size: 0.9rem; }
  .bento-neon .bento-overlay h3 { font-size: 1.2rem; }
  .menu-tab { font-size: 0.72rem; padding: 10px 12px; }
  .price-row { font-size: 0.8rem; }
}
