/* ============================================================
   LUCKY 8 — Design System (warm amber izakaya-speakeasy)
   Recolor từ template jungle8. Syne (headline 700/800) × Space Grotesk (body/small).
   Nền tối ẤM (tungsten + amber haze) + grain + neon GLOW thật.
   ============================================================ */
:root {
  /* Lucky 8 — warm amber izakaya-speakeasy (recolor từ template jungle8) */
  --bg: #160F0C;
  --bg2: #1d130d;
  --panel: #241a12;
  --line: #3a2418;
  --neon: #E5332A;
  --neon-2: #FF6A4D;
  --amber: #E8943A;
  --leaf: #B5673A;
  --leaf-d: #7A2E1E;
  --gold: #F5C977;
  --champagne: #F2E6CC;
  --cream: #F2E6CC;
  --muted: #C8B393;
  --r: 18px;
  --maxw: 1600px;
  --ratio-card: 4 / 3;   /* khung ảnh chuẩn (food/content) — scale theo width, giữ tỉ lệ */
  --ratio-wide: 3 / 2;
  --sec-y: clamp(56px, 5.5vw, 88px);   /* nhịp dọc chuẩn giữa các section (fluid theo width) */
  --botnav-h: 64px;                    /* chiều cao bottom-nav mobile */
  --font-display: 'Syne', system-ui, sans-serif;
  --glow: 0 0 26px rgba(229, 51, 42, 0.4);
  --glow-strong: 0 0 14px rgba(229, 51, 42,0.7), 0 0 42px rgba(229, 51, 42,0.45), 0 0 90px rgba(229, 51, 42,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  background:
    radial-gradient(1100px 680px at 50% -8%, rgba(229, 51, 42, 0.16), transparent 62%),
    radial-gradient(900px 620px at 88% 12%, rgba(232, 162, 74, 0.10), transparent 58%),
    radial-gradient(820px 600px at 6% 78%, rgba(236, 140, 242, 0.08), transparent 55%),
    radial-gradient(1400px 1000px at 50% 120%, rgba(0,0,0,0.55), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* grain + vignette — cho căn phòng có không khí */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.42) 100%);
}
main { display: block; position: relative; z-index: 2; }
.site-header, .book-bar, .consent { position: relative; z-index: 50; }

/* ===== Nền: interior Lucky 8 mờ — chiều sâu "đứng trong quán", áp TOÀN site =====
   Ảnh interior thật tách ra lớp riêng #bgfx (fixed, z-index -1: trên nền base, dưới mọi content)
   để BLUR mà KHÔNG làm mờ chữ. scale(1.08) đẩy mép-blur ra ngoài màn. */
#bgfx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 680px at 50% -8%, rgba(229, 51, 42,0.16), transparent 62%),
    radial-gradient(900px 620px at 88% 12%, rgba(232,162,74,0.10), transparent 58%),
    linear-gradient(180deg, rgba(18,12,18,0.42) 0%, rgba(15,10,15,0.80) 44%, var(--bg) 78%),
    url('/img/akl-hero.jpg') top center / cover no-repeat;
  filter: blur(7px);
  transform: scale(1.08);
}
h1, h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 0.98; text-transform: uppercase; }
h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.01em; line-height: 1.08; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--neon); color: #14060f; font-weight: 700; padding: 10px 18px; border-radius: 0 0 12px 12px; transition: top 0.18s; }
.skip-link:focus { top: 0; }

.tag { display: inline-flex; align-items: center; gap: 9px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); text-shadow: 0 0 16px rgba(229, 51, 42,0.55); }
.tag::before { content: ''; width: 26px; height: 2px; background: var(--neon); box-shadow: var(--glow); border-radius: 2px; }
.sec-label { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }
.glow { text-shadow: var(--glow); }

/* HEADER / NAV */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(15, 13, 13, 0.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.menu-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-size: 0.95rem; opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.nav-links a:hover, .nav-links a[aria-current='page'] { opacity: 1; color: var(--neon); }
.logo { display: inline-flex; align-items: center; height: 40px; transition: 0.2s; }
.logo img { height: 100%; width: auto; display: block; filter: drop-shadow(0 0 14px rgba(229, 51, 42,0.4)); transition: filter 0.2s; }
.site-header .logo:hover img { filter: drop-shadow(0 0 20px rgba(229, 51, 42,0.75)); }
.site-footer .logo { height: 46px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; color: var(--cream); width: 42px; height: 42px; cursor: pointer; }

/* BUTTONS */
.btn { background: var(--neon); color: #14060f; border: none; font-weight: 700; padding: 11px 26px; border-radius: 999px; cursor: pointer; font-size: 0.95rem; transition: transform 0.15s, background 0.2s, box-shadow 0.2s; display: inline-block; }
.btn:hover { background: var(--neon-2); transform: translateY(-1px); box-shadow: var(--glow); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--neon); background: transparent; box-shadow: none; color: var(--neon); }
.btn-leaf { background: var(--leaf); color: #0c1410; }
.btn-leaf:hover { background: #8fd457; }

/* HERO */
.hero { padding: 46px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; }
.hero-video { position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px; background: linear-gradient(135deg, #241830, #120a16); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.hero-video video, .hero-video > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(229, 51, 42, 0.15), transparent 60%); pointer-events: none; }
.hero-video .label { position: absolute; bottom: 18px; left: 20px; z-index: 2; font-weight: 900; font-size: 1.7rem; }
.hero-video .label span { color: var(--neon); text-shadow: var(--glow); }
.play { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--cream); display: grid; place-items: center; z-index: 2; cursor: pointer; transition: 0.2s; background: rgba(0, 0, 0, 0.25); }
.play:hover { background: var(--neon); border-color: var(--neon); box-shadow: var(--glow); }
.play svg { fill: var(--cream); } .play:hover svg { fill: #14060f; }
.promo { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.promo h3 { font-size: 1.5rem; }
.promo p { color: var(--muted); font-size: 0.92rem; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.pill { background: var(--bg2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 10px; flex: 1; text-align: center; font-size: 0.8rem; }
.pill b { display: block; color: var(--gold); font-size: 1.1rem; font-weight: 800; }

/* TIME STRIP */
.timestrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); }
.timestrip .inner { display: grid; grid-template-columns: 30% 1fr; align-items: stretch; }
.time-open { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 24px 28px 24px 0; border-right: 1px solid var(--line); }
.time-open .row { display: flex; align-items: center; gap: 10px; }
.time-open .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px var(--neon); }
.time-open small { color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.7rem; }
.time-open b { color: var(--gold); font-size: 1.5rem; font-weight: 800; }
.time-open span { color: var(--cream); font-size: 0.9rem; }
.badges { display: grid; grid-template-columns: repeat(3, 1fr); padding-left: 28px; }
.badge { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 8px 18px; }
.badge:not(:last-child) { border-right: 1px solid var(--line); }
.badge .num { font-weight: 900; font-size: 1.7rem; color: var(--neon); }
.badge .num span { color: var(--gold); }
.badge .lbl { color: var(--muted); font-size: 0.85rem; line-height: 1.35; }

/* GENERIC SECTION */
section.block { padding: var(--sec-y) 0; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.album { border-radius: var(--r); aspect-ratio: var(--ratio-card); border: 1px solid var(--line); background: linear-gradient(160deg, #2a1f35, #100a16); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 24px; }
.album img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.album .cap { position: relative; font-weight: 800; font-size: 1.4rem; z-index: 2; }
.about h2 { font-size: 2.4rem; margin-bottom: 18px; }
.about p { color: var(--muted); margin-bottom: 14px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; }
.section-head h2 { font-size: 2.2rem; }
.section-head .more { color: var(--neon); white-space: nowrap; flex-shrink: 0; }

/* MENU (tabbed) */
.menucard { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.tab { border: 1px solid var(--line); border-radius: 999px; padding: 9px 22px; font-size: 0.92rem; color: var(--cream); background: transparent; cursor: pointer; font-family: inherit; transition: 0.2s; }
.tab:hover { border-color: var(--neon); }
.tab.active { background: var(--neon); color: #14060f; border-color: var(--neon); font-weight: 700; }
.subtabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.subtab { border: 1px solid var(--line); border-radius: 10px; padding: 7px 16px; font-size: 0.85rem; color: var(--muted); background: transparent; cursor: pointer; font-family: inherit; transition: 0.2s; }
.subtab.active { color: var(--gold); border-color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-item { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; min-width: 0; }
.menu-item .pic { height: 150px; background: linear-gradient(160deg, #2a1f35, #100a16); position: relative; }
.menu-item .pic img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .pic .empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--neon); font-size: 1.5rem; opacity: 0.28; background: radial-gradient(circle at 50% 45%, rgba(229, 51, 42,0.10), transparent 60%); }
.menu-item .info { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.menu-item .info h4 { font-size: 1.05rem; font-weight: 800; }
.menu-item .info .v { font-size: 0.7rem; color: var(--leaf); border: 1px solid var(--leaf-d); border-radius: 6px; padding: 1px 7px; width: fit-content; }
.menu-item .info p { color: var(--muted); font-size: 0.85rem; }
.menu-item .price { color: var(--gold); font-weight: 800; margin-top: auto; }
.allergen { margin-top: 22px; font-size: 0.82rem; color: var(--muted); border-left: 2px solid var(--neon); padding-left: 14px; line-height: 1.5; }
.voucher-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voucher { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: linear-gradient(135deg, rgba(229, 51, 42, 0.12), transparent), var(--panel); position: relative; overflow: hidden; }
.voucher::before, .voucher::after { content: ''; position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%; background: var(--bg2); transform: translateY(-50%); }
.voucher::before { left: -10px; } .voucher::after { right: -10px; }
.voucher small { color: var(--neon); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.7rem; }
.voucher .val { font-weight: 900; font-size: 2rem; color: var(--gold); margin: 8px 0; }
.voucher p { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.voucher .use { display: flex; gap: 6px; flex-wrap: wrap; }
.voucher .use span { font-size: 0.72rem; border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; }

/* FIVE WAYS / CARD SCROLLER */
.card-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 18px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.feast-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; scroll-snap-align: start; transition: transform 0.2s, border-color 0.2s; }
.feast-card:hover { transform: translateY(-3px); border-color: var(--neon); }
.feast-card .pic { height: 150px; background: linear-gradient(160deg, #2a1f35, #100a16); position: relative; }
.feast-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.feast-card .body { padding: 16px; }
.feast-card .body h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.feast-card .body p { color: var(--muted); font-size: 0.85rem; }
.feast-card .body .lnk { color: var(--neon); font-size: 0.85rem; display: inline-block; margin-top: 8px; }

/* VIBE / SPACE */
.vibe { position: relative; background: linear-gradient(180deg, var(--bg), #0a0810); }
.vibe h2 { font-size: 2.6rem; margin-bottom: 12px; }
.vibe .lead { color: var(--muted); max-width: 640px; margin-bottom: 30px; }
.sub-h { font-size: 1.4rem; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; font-weight: 800; }
.sub-h::before { content: ''; width: 26px; height: 2px; background: var(--neon); box-shadow: var(--glow); }
/* The space — mosaic theo aspect-ratio (scale theo width, không vỡ tỉ lệ) */
.space-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 12vw, 215px); gap: 14px; margin-bottom: 56px; }
.space-grid > div { border-radius: 16px; background: linear-gradient(160deg, #221a2c, #0d0a12); position: relative; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,0.42); }
.space-grid > div img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.space-grid > div:hover img { transform: scale(1.05); }
.space-grid > div::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,6,10,0.85) 100%); }
.space-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.space-grid > div:nth-child(n+2) { grid-column: span 2; }
.space-grid b { position: absolute; bottom: 14px; left: 16px; font-weight: 800; font-size: 1rem; z-index: 2; }

/* DJ — full-bleed immersive feature (ấn tượng: bg lớn + equalizer + live pulse) */
.dj-feature { position: relative; margin: clamp(40px, 4.5vw, 60px) 0; min-height: 56vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: clamp(64px, 7vw, 104px) 0; }
.dj-feature-bg { position: absolute; inset: 0; z-index: -1; }
.dj-feature-bg img { width: 100%; height: 100%; object-fit: cover; }
.dj-feature-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,5,10,0.95) 0%, rgba(8,5,10,0.7) 42%, rgba(120,20,90,0.32) 100%), radial-gradient(80% 120% at 0% 50%, rgba(229, 51, 42,0.22), transparent 55%); }
.dj-feature-inner { position: relative; }
.live-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,84,112,0.16); color: #ff9db0; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5470; box-shadow: 0 0 0 0 rgba(255,84,112,0.7); animation: livePulse 1.7s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(255,84,112,0.65); } 70% { box-shadow: 0 0 0 12px rgba(255,84,112,0); } 100% { box-shadow: 0 0 0 0 rgba(255,84,112,0); } }
.eq { display: flex; align-items: flex-end; gap: 5px; height: 40px; margin: 22px 0 16px; }
.eq span { width: 6px; height: 100%; border-radius: 3px; background: linear-gradient(180deg, var(--neon-2), var(--neon)); box-shadow: 0 0 14px rgba(229, 51, 42,0.7); transform-origin: bottom; transform: scaleY(0.3); animation: eqbar 1s ease-in-out infinite; }
.eq span:nth-child(1) { animation-delay: -0.8s; }
.eq span:nth-child(2) { animation-delay: -0.4s; }
.eq span:nth-child(3) { animation-delay: -0.65s; }
.eq span:nth-child(4) { animation-delay: -0.15s; }
.eq span:nth-child(5) { animation-delay: -0.55s; }
.eq span:nth-child(6) { animation-delay: -0.3s; }
.eq span:nth-child(7) { animation-delay: -0.7s; }
.eq span:nth-child(8) { animation-delay: -0.2s; }
@keyframes eqbar { 0%, 100% { transform: scaleY(0.25); } 50% { transform: scaleY(1); } }
.dj-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 6.5vw, 5.4rem); line-height: 0.88; letter-spacing: -0.02em; margin-bottom: 16px; }
.dj-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.7rem); color: var(--cream); line-height: 1.25; max-width: 22ch; margin-bottom: 12px; }
.dj-sub { color: #d9cfe2; font-size: 1rem; line-height: 1.5; max-width: 46ch; margin-bottom: 26px; }
.dj-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.dj-stats div { background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border-radius: 14px; padding: 14px 22px; }
.dj-stats b { font-family: var(--font-display); font-weight: 800; color: var(--cream); font-size: 1.15rem; display: block; }
.dj-stats span { color: var(--muted); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 640px) { .dj-feature { min-height: 72vh; } .dj-stats div { padding: 12px 16px; } }

/* The space — gallery grid (click → lightbox) + nút sang /gallery */
.space-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sg-tile { position: relative; border: none; padding: 0; margin: 0; background: linear-gradient(160deg, #221a2c, #0d0a12); border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; cursor: zoom-in; box-shadow: 0 14px 34px rgba(0,0,0,0.42); display: block; width: 100%; }
.sg-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.sg-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,6,10,0.82) 100%); }
.sg-tile:hover img { transform: scale(1.06); }
.sg-tile:hover { box-shadow: 0 0 0 2px rgba(229, 51, 42,0.6), 0 0 34px rgba(229, 51, 42,0.28), 0 18px 42px rgba(0,0,0,0.5); }
.sg-tile:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }
.sg-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: var(--cream); font-weight: 700; font-size: 0.9rem; text-align: left; text-shadow: 0 2px 12px rgba(0,0,0,0.85); }
.sg-zoom { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(18,12,18,0.7); backdrop-filter: blur(6px); color: var(--neon); font-size: 1rem; opacity: 0; transform: scale(0.8); transition: opacity 0.25s, transform 0.25s; }
.sg-tile:hover .sg-zoom { opacity: 1; transform: none; }
.space-more { margin-top: 24px; text-align: center; }
@media (max-width: 860px) { .space-gallery { grid-template-columns: 1fr 1fr; } }

/* === FIX grid blowout → tràn ngang mobile (1fr = minmax(auto,1fr), auto min = min-content ảnh → track không co) === */
.sig-grid > *, .ig-grid > *, .reviews > *, .review-grid > *, .dish-grid > *,
.station-grid > *, .addon-grid > *, .menu-grid > *, .voucher-grid > *, .cards > *,
.three-up > *, .space-gallery > *, .j-grid > *, .ldp-strip > *, .feast-scroll > *,
.tier-grid > *, .station-grid > * { min-width: 0; }
img { max-width: 100%; }

/* Lightbox — xem ảnh to (dùng cả homepage + trang gallery) */
.m-open { position: absolute; inset: 0; z-index: 3; border: none; background: transparent; cursor: zoom-in; padding: 0; }
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 5vh 4vw; background: rgba(8,5,10,0.94); backdrop-filter: blur(10px); animation: lbfade 0.2s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 0; }
.lb-stage img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.65); }
.lb-stage figcaption { display: flex; align-items: center; gap: 12px; color: var(--cream); font-size: 0.92rem; flex-wrap: wrap; justify-content: center; }
.lb-cat { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(245, 201, 119,0.16); padding: 4px 10px; border-radius: 999px; }
.lb-count { color: var(--muted); font-size: 0.82rem; }
.lb-close { position: absolute; top: 18px; right: 22px; z-index: 2; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--cream); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background 0.2s, color 0.2s; }
.lb-close:hover { background: var(--neon); color: #14060f; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px; border: none; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--cream); font-size: 2rem; line-height: 1; cursor: pointer; transition: background 0.2s, color 0.2s; }
.lb-nav:hover { background: var(--neon); color: #14060f; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
@media (max-width: 640px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; } .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 14px; } .lb-stage img { max-height: 72vh; }
}
.dj { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; margin-bottom: 48px; }
.dj-art { min-height: 200px; border-radius: 14px; background: linear-gradient(135deg, #351f35, #0d0a12); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; }
.dj-art .live { position: absolute; top: 14px; left: 14px; background: var(--neon); color: #14060f; font-size: 0.7rem; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.dj-info small { color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.dj-info h3 { font-size: 1.8rem; margin: 6px 0 10px; }
.dj-info p { color: var(--muted); margin-bottom: 16px; }
.dj-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.dj-meta div b { color: var(--cream); display: block; font-size: 1.1rem; font-weight: 800; }
.dj-meta div span { color: var(--muted); font-size: 0.8rem; }
.reviews { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.reel { aspect-ratio: 9 / 16; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(160deg, #221a2c, #0d0a12); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 14px; cursor: pointer; transition: 0.2s; }
.reel img, .reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel:hover { border-color: var(--neon); transform: translateY(-3px); }
.reel .pl { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--cream); display: grid; place-items: center; background: rgba(0, 0, 0, 0.3); z-index: 2; }
.reel .pl svg { fill: var(--cream); }
.reel .src { position: absolute; top: 12px; right: 12px; font-size: 0.62rem; background: rgba(0, 0, 0, 0.55); padding: 3px 8px; border-radius: 6px; z-index: 2; }
.reel b { font-size: 0.82rem; z-index: 2; }

/* LOCATION + MAP */
.loc .two { align-items: stretch; }
.map { border-radius: var(--r); border: 1px solid var(--line); min-height: 320px; background: repeating-linear-gradient(0deg, rgba(229, 51, 42, 0.05) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(229, 51, 42, 0.05) 0 1px, transparent 1px 40px), #120a16; position: relative; overflow: hidden; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.map .pin { position: absolute; top: 44%; left: 48%; color: var(--neon); font-size: 2rem; text-shadow: var(--glow); }
.loc-info h2 { font-size: 2.2rem; margin-bottom: 18px; }
.loc-info ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.loc-info li { display: flex; gap: 12px; color: var(--muted); }
.loc-info li b { color: var(--cream); min-width: 90px; display: inline-block; font-weight: 600; }
.loc-info li a { color: var(--neon); }
.r18 { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.r18 span { font-size: 0.74rem; border: 1px solid var(--line); border-radius: 8px; padding: 7px 11px; color: var(--cream); line-height: 1.3; }
.r18 span b { color: var(--gold); }

/* BLOG / JOURNAL */
.blog { background: var(--bg2); border-top: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.card:hover { transform: translateY(-4px); border-color: var(--neon); }
.card .thumb { height: 170px; background: linear-gradient(160deg, #221a2c, #0d0a12); position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 20px; }
.card .body small { color: var(--neon); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; }
.card .body h3 { font-size: 1.15rem; margin: 8px 0; }
.card .body p { color: var(--muted); font-size: 0.9rem; }

/* FOOTER */
.site-footer { background: #0a0810; border-top: 1px solid var(--line); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.foot-grid h4 { margin-bottom: 16px; font-size: 1.05rem; font-weight: 800; }
.foot-grid p, .foot-grid a { color: var(--muted); font-size: 0.92rem; display: block; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--neon); }
.foot-about p { max-width: 320px; }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--cream); }
.socials a:hover { border-color: var(--neon); color: var(--neon); box-shadow: var(--glow); }
.hotline { color: var(--gold); font-size: 1.5rem; font-weight: 800; }
.copy { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.hg { opacity: 0.7; font-size: 0.82rem; margin-top: 6px; }
.ig-feed { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.ig-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.ig-head h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; font-weight: 800; }
.ig-head a { color: var(--neon); font-size: 0.88rem; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-grid a { aspect-ratio: 1; border-radius: 10px; border: 1px solid var(--line); overflow: hidden; background: linear-gradient(160deg, #2a1f35, #100a16); position: relative; transition: 0.2s; }
.ig-grid a img { width: 100%; height: 100%; object-fit: cover; }
.ig-grid a:hover { border-color: var(--neon); transform: scale(1.03); }

/* sticky mobile book bar */
.book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(15, 13, 13, 0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.book-bar .btn { width: 100%; text-align: center; }

/* ===== Bottom nav (mobile) — thay cho book-bar ===== */
.bottom-nav { display: none; }
@media (max-width: 860px) {
  .bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    justify-content: space-around; align-items: stretch;
    background: rgba(16,11,16,0.94); backdrop-filter: blur(16px);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    padding: 7px 4px calc(7px + env(safe-area-inset-bottom)); }
  .bottom-nav a { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--muted); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.02em;
    text-decoration: none; padding: 3px 0; transition: color 0.15s; position: relative; }
  .bottom-nav .bn-lb { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .bottom-nav .bn-ic { display: grid; place-items: center; }
  .bottom-nav svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .bottom-nav a.on { color: var(--neon); }
  .bottom-nav a.on svg { filter: drop-shadow(0 0 7px rgba(229, 51, 42,0.6)); }
  /* Book — nút giữa nổi bật neon, nhô lên */
  .bottom-nav .bn-book .bn-ic { width: 50px; height: 50px; border-radius: 50%; margin-top: -22px;
    background: var(--neon); box-shadow: 0 6px 22px rgba(229, 51, 42,0.55), 0 0 0 5px rgba(16,11,16,0.94); }
  .bottom-nav .bn-book svg { width: 25px; height: 25px; stroke: #14060f; stroke-width: 2; }
  .bottom-nav .bn-book .bn-lb { color: var(--neon); font-weight: 700; }

  /* nhường chỗ + đẩy các thanh khác lên trên bottom-nav */
  body { padding-bottom: calc(var(--botnav-h) + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(34px + var(--botnav-h)); }
  .consent { bottom: calc(14px + var(--botnav-h)) !important; }
  .ldp-stickybar { bottom: var(--botnav-h); padding: 11px 18px; box-shadow: 0 -6px 22px rgba(0,0,0,0.45); }
}

/* page hero (inner pages) */
.page-hero { padding: 80px 0 40px; text-align: center; position: relative; }
.page-hero h1 { font-size: 3rem; margin-bottom: 12px; }
.page-hero h1 span { color: var(--neon); text-shadow: var(--glow); }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-grid, .two, .foot-grid, .dj { grid-template-columns: 1fr; }
  .menu-grid, .voucher-grid, .cards { grid-template-columns: 1fr 1fr; }
  .space-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(140px, 30vw, 185px); }
  .space-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .space-grid > div:nth-child(n+2) { grid-column: span 1; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg2); border-bottom: 1px solid var(--line); padding: 8px 22px 16px; }
  .nav-links.open li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: grid; place-items: center; }
  .timestrip .inner { grid-template-columns: 1fr; }
  .time-open { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .badges { padding-left: 0; padding-top: 8px; }
  .badge { padding: 8px; }
  .btn-book-desktop { display: none; }
  .book-bar { display: block; }
}
@media (max-width: 560px) {
  .menu-grid, .cards { grid-template-columns: 1fr; }
  .vibe h2, .about h2, .loc-info h2, .page-hero h1 { font-size: 1.9rem; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .section-head h2 { font-size: 1.6rem; }
}

/* ============================ CINEMATIC HERO ============================ */
/* HERO — Centered spotlight (brand là tâm điểm, vignette đối xứng) */
.hero-cine { position: relative; height: 84vh; min-height: 580px; max-height: 880px; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-vid { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background:
  radial-gradient(78% 92% at 50% 46%, rgba(10,7,12,0.32), rgba(10,7,12,0.88) 92%),
  linear-gradient(180deg, rgba(10,7,12,0.55) 0%, transparent 22%, transparent 58%, rgba(10,7,12,0.9) 100%),
  radial-gradient(60% 70% at 50% 50%, rgba(229, 51, 42,0.12), transparent 62%); }
.hero-cine-inner { position: relative; padding: 96px 24px; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-eyebrow { margin-bottom: 18px; animation: rise 0.7s 0.05s both; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 800; letter-spacing: -0.015em; line-height: 0.94; text-transform: uppercase; margin: 0 auto 20px; animation: rise 0.8s 0.12s both; text-shadow: 0 2px 30px rgba(0,0,0,0.55); }
.hero-title .neon { color: var(--neon); text-shadow: var(--glow-strong); }
.hero-sub { max-width: 50ch; color: #ece3f2; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.5; margin: 0 auto 28px; animation: rise 0.8s 0.2s both; }
.hero-sub b { color: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; animation: rise 0.8s 0.28s both; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; color: #cfc3da; font-size: 0.86rem; animation: rise 0.8s 0.36s both; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--cream); font-size: 1.3rem; opacity: 0.8; animation: bob 1.8s ease-in-out infinite; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================ MARQUEE ============================ */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); padding: 16px 0; }
.marquee-track { display: inline-flex; gap: 0; white-space: nowrap; animation: scroll-x 28s linear infinite; }
.marquee-item { font-family: var(--font-display); font-weight: 900; font-size: 1.7rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--cream); display: inline-flex; align-items: center; }
.marquee-item:nth-child(3n) { color: var(--neon); text-shadow: var(--glow); }
.marquee-dot { color: var(--leaf); margin: 0 26px; font-size: 0.9rem; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ $8.88 STATEMENT ============================ */
.statement { position: relative; padding: calc(var(--sec-y) + 8px) 0; text-align: center; background: radial-gradient(70% 120% at 50% 0%, rgba(229, 51, 42,0.14), transparent 60%), var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement .sec-label { color: var(--neon); }
.stmt-price { font-family: var(--font-display); font-size: clamp(4.5rem, 17vw, 11rem); font-weight: 800; letter-spacing: -0.02em; line-height: 0.92; color: var(--cream); text-shadow: 0 0 70px rgba(229, 51, 42,0.45), 0 0 30px rgba(232,162,74,0.25); margin: 10px 0 18px; }
.stmt-price span { color: var(--gold); }
.statement p { max-width: 540px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* image fill helpers for revealed cards */
.album img, .dj-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dj-art img { opacity: 0.85; }
.dj-art .live { z-index: 2; }
.space-grid b { text-shadow: 0 2px 12px rgba(0,0,0,0.8); }

/* RESPONSIVE — hero */
@media (max-width: 860px) {
  .hero-cine { height: auto; min-height: 82vh; max-height: none; }
  .hero-cine-inner { padding: 96px 22px 84px; }
  .hero-sub { font-size: 1rem; }
  .marquee-item { font-size: 1.05rem; }
}

/* SHOT MODE — freeze cho screenshot (?shot=1) */
.shot .reveal { opacity: 1 !important; transform: none !important; }
/* shot-mode: ép hero/vibe height cố định → bỏ vh inflation, chụp full-page 1 phát */
.shot .ldp-hero { min-height: 660px !important; }
.shot .ldp-vibe { min-height: 420px !important; }
.shot .dj-feature { min-height: 540px !important; }
.shot .hero-cine { height: 660px !important; }
.shot *, .shot *::before, .shot *::after { animation: none !important; transition: none !important; }

/* ============================================================
   INNER PAGES (menu · reservations · experiences · events ·
   gallery · journal · about · contact) — added 2026-06-05
   ============================================================ */

/* page-hero with background image */
.page-hero.exp-hero, .page-hero.menu-hero { overflow: hidden; isolation: isolate; padding: 110px 0 56px; text-align: left; }
.exp-hero .hero-bg, .menu-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.exp-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.exp-hero .hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,13,0.7), rgba(15,13,13,0.92)), radial-gradient(70% 60% at 80% 10%, rgba(229, 51, 42,0.18), transparent 70%); }
.page-hero.exp-hero h1, .page-hero.menu-hero h1, .page-hero.exp-hero p, .page-hero.menu-hero p { text-align: left; margin-left: 0; margin-right: 0; }
.page-hero.exp-hero .tag, .page-hero.menu-hero .tag { margin-bottom: 16px; }
.page-hero.exp-hero p, .page-hero.menu-hero p { max-width: 600px; }

/* sticky jump-nav (menu + experiences) */
.menu-jump { position: sticky; top: 72px; z-index: 40; background: rgba(22,18,26,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.jump-inner { display: flex; gap: 8px; overflow-x: auto; padding-top: 12px; padding-bottom: 12px; scrollbar-width: none; }
.jump-inner::-webkit-scrollbar { display: none; }
.jump-link { white-space: nowrap; font-size: 0.86rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; transition: 0.2s; flex-shrink: 0; }
.jump-link:hover { color: var(--neon); border-color: var(--neon); }
.jump-link.gift-link { color: var(--gold); border-color: var(--gold); }

/* MENU body */
.menu-body { padding: 44px 22px 20px; }
.menu-section { scroll-margin-top: 130px; margin-bottom: 52px; }
.ms-head { margin-bottom: 22px; }
.ms-head h2 { font-size: 2rem; }
.ms-head h2::after { content: ''; display: block; width: 40px; height: 3px; background: var(--neon); box-shadow: var(--glow); margin-top: 10px; border-radius: 2px; }
.ms-head p { color: var(--muted); margin-top: 10px; font-size: 0.95rem; }
.menu-item .info .v { font-size: 0.66rem; }
.tick { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tick li { color: var(--muted); padding-left: 26px; position: relative; }
.tick li::before { content: '✦'; position: absolute; left: 0; color: var(--neon); }

/* CTA strip (shared, end of pages) */
.cta-strip { text-align: center; padding: var(--sec-y) 0; background: radial-gradient(60% 120% at 50% 0%, rgba(229, 51, 42,0.12), transparent 60%), var(--bg2); border-top: 1px solid var(--line); }
.cta-strip h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-strip p { color: var(--muted); margin-bottom: 22px; }

/* RESERVATIONS */
.resv-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; padding-top: 38px; padding-bottom: 20px; align-items: start; }
.embed-frame { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--panel); min-height: 620px; }
.embed-frame iframe { position: relative; z-index: 1; width: 100%; height: 720px; border: 0; display: block; background: transparent; }
.embed-loading { position: absolute; inset: 0; z-index: 0; display: grid; place-content: center; justify-items: center; gap: 12px; text-align: center; padding: 24px; background: radial-gradient(60% 60% at 50% 40%, rgba(229, 51, 42,0.08), transparent 70%), var(--panel); }
.embed-loading p { color: var(--cream); font-weight: 600; }
.embed-loading small { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.04em; }
.embed-loading .spin { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--neon); animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.embed-fallback { color: var(--muted); font-size: 0.85rem; margin-top: 14px; line-height: 1.6; }
.embed-fallback a { color: var(--neon); }
.policy-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; position: sticky; top: 96px; }
.policy-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.policy-list li { display: flex; flex-direction: column; gap: 3px; }
.policy-list li b { color: var(--cream); font-size: 0.92rem; font-weight: 700; }
.policy-list li span { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.r18-block { margin-top: 18px; padding: 14px; border: 1px solid var(--gold); border-radius: 12px; display: flex; flex-direction: column; gap: 4px; }
.r18-block b { color: var(--gold); }
.r18-block span { color: var(--cream); font-size: 0.82rem; line-height: 1.5; }
.aside-hours { margin-top: 16px; }
.aside-hours b { color: var(--cream); display: block; font-size: 0.92rem; }
.aside-hours span { color: var(--muted); font-size: 0.85rem; }
.aside-links { margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
.aside-links a { color: var(--neon); }

/* ACCORDION / FAQ */
.faq-block .accordion { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--panel); }
.acc-item.open { border-color: var(--neon); }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; background: none; border: none; color: var(--cream); font-family: inherit; font-size: 1.02rem; font-weight: 700; cursor: pointer; text-align: left; }
.acc-q i { color: var(--neon); font-size: 1.4rem; font-style: normal; flex-shrink: 0; line-height: 1; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-item.open .acc-a { max-height: 320px; }
.acc-a p { color: var(--muted); padding: 0 20px 18px; font-size: 0.92rem; line-height: 1.6; }

/* EXPERIENCES blocks */
.exp-body { padding: 40px 22px 10px; }
.exp-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 64px; scroll-margin-top: 130px; }
.exp-block.flip .exp-media { order: 2; }
.exp-media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: var(--ratio-wide); background: linear-gradient(160deg, #2a1f35, #100a16); position: relative; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; }
.exp-copy .sec-label { color: var(--gold); }
.exp-copy h2 { font-size: 2.4rem; margin: 10px 0 14px; }
.exp-copy p { color: var(--muted); margin-bottom: 14px; max-width: 460px; }
.exp-price { display: inline-block; color: var(--neon); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; margin-bottom: 18px; }
.exp-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* EVENTS */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.event-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-4px); border-color: var(--neon); }
.event-card .pic { height: 200px; position: relative; background: linear-gradient(160deg, #2a1f35, #100a16); }
.event-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.event-card .body { padding: 22px; }
.cap-chip { display: inline-block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; margin-bottom: 12px; }
.event-card .body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.event-card .body p { color: var(--muted); font-size: 0.92rem; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.steps li { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.steps li b { color: var(--cream); display: block; margin-bottom: 2px; }

/* QUOTE WALL */
.quote-wall { padding: var(--sec-y) 0; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 22px auto 0; text-align: left; }
.quotes blockquote { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--neon); border-radius: 12px; padding: 20px 22px; color: var(--cream); font-size: 1.1rem; font-weight: 600; line-height: 1.45; }

/* GALLERY */
.gallery-body { padding: 36px 22px 20px; }
.g-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 20px; font-size: 0.9rem; color: var(--cream); background: transparent; cursor: pointer; font-family: inherit; transition: 0.2s; }
.chip:hover { border-color: var(--neon); }
.chip.active { background: var(--neon); color: #14060f; border-color: var(--neon); font-weight: 700; }
.masonry { columns: 4 240px; column-gap: 14px; }
.m-item { break-inside: avoid; margin: 0 0 14px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); position: relative; background: linear-gradient(160deg, #2a1f35, #100a16); }
.m-item img { width: 100%; display: block; transition: transform 0.4s; }
.m-item:hover img { transform: scale(1.05); }
.m-item figcaption { position: absolute; inset: auto 0 0 0; padding: 28px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: var(--cream); font-size: 0.86rem; font-weight: 600; opacity: 0; transition: opacity 0.25s; display: flex; flex-direction: column; gap: 3px; }
.m-item:hover figcaption { opacity: 1; }
.m-cat { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); }

/* JOURNAL featured + newsletter */
.feature-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--panel); margin-top: 8px; }
.fp-media { position: relative; min-height: 340px; background: linear-gradient(160deg, #2a1f35, #100a16); }
.fp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fp-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.fp-body small { color: var(--neon); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }
.fp-body h2 { font-size: 2rem; margin: 12px 0 14px; }
.fp-body p { color: var(--muted); margin-bottom: 22px; }
.fp-body .btn { align-self: flex-start; }
.newsletter { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.news-inner h2 { font-size: 1.8rem; margin-bottom: 6px; }
.news-inner p { color: var(--muted); max-width: 420px; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input { background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; color: var(--cream); font-family: inherit; font-size: 0.95rem; min-width: 240px; }
.news-form input:focus { outline: none; border-color: var(--neon); }

/* ABOUT three-up + family */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.up-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.up-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--neon); }
.up-card p { color: var(--muted); font-size: 0.92rem; }
.fam-block { text-align: center; }
.fam-block h2 { font-size: 2.2rem; }

/* CONTACT */
.contact-grid { padding-top: 40px; align-items: stretch; }
.contact-grid .loc-info ul { margin-bottom: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; color: var(--cream); font-family: inherit; font-size: 0.95rem; width: 100%; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--neon); }
.contact-form .btn { align-self: flex-start; }

/* EVENT FORM CARD */
.event-form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.event-form-card h3 { font-size: 1.4rem; margin-bottom: 16px; }

/* REVIEWS (social proof) */
.reviews-band { padding: var(--sec-y) 0; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-head { text-align: center; margin-bottom: 30px; }
.reviews-head .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }
.reviews-head h2 { font-size: 2rem; margin: 8px 0 6px; }
.reviews-head p { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--neon); border-radius: 14px; padding: 22px; }
.review-card .q { color: var(--cream); font-size: 1.05rem; font-weight: 600; line-height: 1.5; margin-bottom: 12px; }
.review-card .src { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

/* CONSENT BANNER */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 720px; margin: 0 auto; background: rgba(22,18,26,0.97); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.consent p { color: var(--cream); font-size: 0.86rem; flex: 1; min-width: 220px; line-height: 1.5; }
.consent a { color: var(--neon); }
.consent-btns { display: flex; gap: 10px; }
.consent-btns .btn { padding: 9px 18px; font-size: 0.85rem; }
@media (max-width: 560px) { .book-bar ~ .consent, .consent { bottom: 76px; } }

/* LEAD FORM states */
.form-done { color: var(--leaf); font-weight: 700; font-size: 1.05rem; padding: 6px 0; }
.form-err { color: var(--neon-2); font-size: 0.85rem; width: 100%; }
.news-form button:disabled, .contact-form button:disabled { opacity: 0.6; cursor: default; }

/* FAQ page + LEGAL prose */
.faq-page { padding: 30px 22px 10px; max-width: 880px; }
.faq-group { margin-bottom: 34px; }
.faq-group-h { font-size: 1.5rem; margin-bottom: 16px; color: var(--neon); }
.legal { max-width: 760px; padding: 30px 22px 60px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.legal h2 { font-family: 'Space Grotesk', system-ui, sans-serif; text-transform: none; letter-spacing: -0.01em; font-size: 1.35rem; margin: 28px 0 12px; color: var(--cream); }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--neon); }
.legal b { color: var(--cream); }
.legal-note { margin-top: 32px; font-size: 0.82rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }

/* POST DETAIL (/journal/[slug]) */
.post-hero { padding: 96px 0 40px; }
.post-hero .hero-bg img { opacity: 0.4; }
.post-back { display: inline-block; color: var(--neon); font-size: 0.88rem; margin-bottom: 14px; }
.post-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 880px; margin-top: 8px; }
.post-meta { color: var(--muted); font-size: 0.86rem; margin-top: 12px; }
.post-wrap { max-width: 760px; padding-top: 36px; padding-bottom: 20px; }
.post-lead { font-size: 1.25rem; line-height: 1.5; color: var(--cream); font-weight: 600; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.post-body { color: #d9d0e0; font-size: 1.06rem; line-height: 1.75; }
.post-body h2 { font-size: 1.55rem; color: var(--cream); margin: 32px 0 12px; }
.post-body h3 { font-size: 1.25rem; color: var(--cream); margin: 26px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body a { color: var(--neon); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.post-body blockquote { border-left: 3px solid var(--neon); padding: 4px 0 4px 18px; margin: 22px 0; color: var(--cream); font-weight: 600; font-size: 1.15rem; }
.post-cta { margin-top: 40px; padding: 30px; border: 1px solid var(--line); border-radius: var(--r); background: radial-gradient(60% 120% at 50% 0%, rgba(229, 51, 42,0.10), transparent 60%), var(--panel); text-align: center; }
.post-cta h3 { font-size: 1.5rem; margin-bottom: 8px; }
.post-cta p { color: var(--muted); margin-bottom: 18px; }
.post-cta .exp-cta { justify-content: center; }

/* RESPONSIVE — inner pages */
@media (max-width: 860px) {
  .resv-grid, .exp-block, .exp-block.flip .exp-media, .event-grid, .feature-post, .three-up, .quotes { grid-template-columns: 1fr; }
  .exp-block.flip .exp-media { order: 0; }
  .policy-card { position: static; }
  .embed-frame iframe { height: 640px; }
  .masonry { columns: 2 160px; }
  .cf-row { grid-template-columns: 1fr; }
  .page-hero.exp-hero, .page-hero.menu-hero { padding: 96px 0 44px; }
  .fp-media { min-height: 220px; }
}
@media (max-width: 560px) {
  .masonry { columns: 2 120px; column-gap: 10px; }
  .exp-copy h2, .fp-body h2 { font-size: 1.7rem; }
  .ms-head h2 { font-size: 1.6rem; }
  .news-form input { min-width: 0; flex: 1; }
}

/* SHOT MODE — reveal accordion content for screenshots */
.shot .acc-a { max-height: 320px !important; }
.shot .m-item figcaption { opacity: 1 !important; }

/* ============================================================
   EDITORIAL CARDS v2 — phá lưới "app", cho ảnh dẫn dắt (Steve Jobs)
   Bỏ viền hộp + panel bg → ảnh to, đổ bóng mềm, chữ trần bên dưới.
   ============================================================ */
.menu-item { background: transparent; border: none; border-radius: 0; overflow: visible; }
.menu-item .pic { aspect-ratio: var(--ratio-card); height: auto; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 36px rgba(0,0,0,0.5); }
.menu-item .pic img { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.menu-item:hover .pic img { transform: scale(1.05); }
.menu-item .pic .empty { background: linear-gradient(160deg, #2a1f35, #140d1c); font-size: 1.9rem; }
.menu-item .info { padding: 15px 2px 0; }
.menu-item .info h4 { font-size: 1.12rem; }
.menu-grid { gap: 26px 22px; }

.card { background: transparent; border: none; border-radius: 0; overflow: visible; }
.card .thumb { height: 250px; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.card .thumb img { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.card:hover { transform: translateY(-5px); }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 16px 2px 0; }
.cards { gap: 30px 24px; }

.feast-card { background: transparent; border: none; overflow: visible; }
.feast-card .pic { height: 230px; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 32px rgba(0,0,0,0.45); }
.feast-card .pic img { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.feast-card:hover { transform: translateY(-4px); }
.feast-card:hover .pic img { transform: scale(1.05); }
.feast-card .body { padding: 14px 2px 0; }

.event-card { background: transparent; border: none; overflow: visible; }
.event-card .pic { aspect-ratio: var(--ratio-wide); height: auto; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.event-card .pic img { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.event-card:hover { transform: translateY(-5px); }
.event-card:hover .pic img { transform: scale(1.05); }
.event-card .body { padding: 16px 2px 0; }

.review-card { background: linear-gradient(180deg, rgba(32,22,42,0.55), rgba(32,22,42,0.05)); border: none; border-left: 3px solid var(--neon); border-radius: 0 14px 14px 0; }

/* Feature post (journal) — bleed ảnh, bớt khung */
.feature-post { border: none; background: transparent; border-radius: 0; gap: 30px; align-items: center; }
.feature-post .fp-media { border-radius: 20px; overflow: hidden; min-height: 380px; box-shadow: 0 20px 48px rgba(0,0,0,0.5); }
.fp-body { padding: 0; }

/* ============================================================
   FIVE WAYS TO FEAST — 5 "cửa" neon (ảnh portrait, tên overlay)
   ============================================================ */
/* ============================================================
   THE JOURNAL — magazine editorial (1 lớn + 5 nhỏ, overlay title)
   ============================================================ */
.j-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(210px, 16vw, 300px); gap: 16px; }
.j-card { position: relative; display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 16px 38px rgba(0,0,0,0.5); isolation: isolate; }
.j-card.j-feat { grid-column: span 2; grid-row: span 2; }
.j-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.j-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,10,0.05) 0%, rgba(8,6,10,0.12) 45%, rgba(8,6,10,0.9) 100%); z-index: 1; }
.j-card:hover > img { transform: scale(1.06); }
.j-card:hover { box-shadow: 0 0 0 2px rgba(229, 51, 42,0.75), 0 0 40px rgba(229, 51, 42,0.32), 0 18px 44px rgba(0,0,0,0.55); }
.j-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 20px 18px; }
.j-cat { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); text-shadow: 0 0 14px rgba(229, 51, 42,0.6); margin-bottom: 8px; }
.j-overlay h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.98; font-size: 1.3rem; }
.j-card.j-feat .j-overlay h3 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); max-width: 16ch; }
.j-card.j-feat .j-overlay { padding: 30px; }
.j-go { display: inline-block; margin-top: 10px; color: var(--neon); font-size: 0.82rem; font-weight: 700; opacity: 0; transform: translateY(6px); transition: 0.3s; }
.j-card:hover .j-go { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .j-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .j-card.j-feat { grid-column: span 2; grid-row: span 1; }
  .j-go { opacity: 1; transform: none; }
}
@media (max-width: 560px) { .j-grid { grid-template-columns: 1fr; } .j-card.j-feat { grid-column: span 1; } }

/* MENU ITEM — mô tả + signature (data thật) */
.menu-item .info .m-tags { display: flex; gap: 6px; margin-bottom: 7px; min-height: 4px; }
.m-sig { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(245, 201, 119,0.15); border-radius: 6px; padding: 3px 9px; }
.menu-item .m-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item .m-head h4 { font-size: 1.08rem; }
.menu-item .m-head .price { color: var(--gold); font-weight: 800; white-space: nowrap; font-family: var(--font-display); font-size: 1.1rem; }
.m-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.45; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   LDP — immersive hero + menu-depth (rebuild 06/2026)
   Hướng #2 (visual) mix #1 (menu-forward): full-bleed hero,
   degustation editorial, drink tiers, conditions, booking embed.
   ═══════════════════════════════════════════════════════════ */

/* 1 · HERO — full-bleed cinematic */
.ldp-hero { position: relative; min-height: 84vh; display: flex; align-items: flex-end; padding-bottom: 54px; overflow: hidden; isolation: isolate; }
.ldp-hero-bg { position: absolute; inset: 0; z-index: -1; }
.ldp-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.ldp-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,12,0.45) 0%, rgba(10,7,12,0.18) 32%, rgba(10,7,12,0.82) 78%, var(--bg) 100%), radial-gradient(120% 80% at 12% 92%, rgba(229, 51, 42,0.2), transparent 58%); }
.ldp-hero-inner { position: relative; }
.ldp-hero-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 0.9; letter-spacing: -0.02em; margin: 14px 0 16px; }
.ldp-hero-hook { color: var(--cream); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.5; max-width: 56ch; }
.ldp-hero-foot { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 26px; }
.ldp-hero-price { display: flex; align-items: baseline; gap: 10px; }
.ldp-hero-price .lp-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); color: var(--neon); text-shadow: var(--glow); line-height: 1; }
.ldp-hero-price .lp-unit { color: var(--cream); font-size: 0.95rem; }
.ldp-badges { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ldp-badges li { display: flex; flex-direction: column; gap: 3px; background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 18px; min-width: 90px; }
.ldp-badges li b { font-family: var(--font-display); font-weight: 700; color: var(--cream); font-size: 1.02rem; }
.ldp-badges li span { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* 2 · THE OFFER */
.two-offer { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 44px; align-items: start; }
.offer-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 8px 0 18px; }
.offer-note { color: var(--gold); font-size: 0.9rem; line-height: 1.5; margin-top: 18px; border-left: 2px solid var(--gold); padding-left: 14px; }
.offer-card { background: linear-gradient(160deg, rgba(229, 51, 42,0.14), transparent 55%), var(--panel); border-radius: var(--r); padding: 28px; box-shadow: 0 18px 44px rgba(0,0,0,0.45); position: sticky; top: 96px; }
.oc-price { display: flex; align-items: baseline; gap: 8px; }
.oc-price b { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--neon); line-height: 1; text-shadow: var(--glow); }
.oc-price span { color: var(--muted); font-size: 0.9rem; }
.oc-note { color: var(--gold); font-size: 0.86rem; line-height: 1.4; margin: 8px 0 18px; }
.oc-meta { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.oc-meta li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.oc-meta li span { color: var(--muted); font-size: 0.84rem; }
.oc-meta li b { color: var(--cream); font-size: 0.9rem; font-weight: 600; text-align: right; }
.oc-btn { width: 100%; text-align: center; }
.oc-alt { display: block; text-align: center; color: var(--muted); font-size: 0.84rem; margin-top: 12px; }
.oc-alt:hover { color: var(--neon); }

/* 3a · COURSES — editorial degustation */
.course-menu { list-style: none; display: grid; gap: 2px; }
.course-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: start; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.course-row .c-num { font-family: var(--font-display); font-weight: 800; color: var(--neon); font-size: 1.4rem; opacity: 0.62; text-shadow: 0 0 16px rgba(229, 51, 42,0.4); }
.course-row .c-body h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.18rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; }
.course-row .c-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin-top: 5px; }
.course-row .c-tags { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; padding-top: 7px; }
.c-body .v { font-size: 0.6rem; color: var(--leaf); background: rgba(181, 103, 58,0.16); border-radius: 6px; padding: 2px 7px; font-style: normal; }

/* 3b · STATIONS — buffet grid */
.station-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.station-card { background: var(--panel); border-radius: var(--r); padding: 22px 22px 24px; box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.station-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; color: var(--cream); margin-bottom: 13px; padding-bottom: 11px; border-bottom: 1px solid rgba(229, 51, 42,0.28); }
.station-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.station-card li { color: var(--cream); font-size: 0.91rem; padding-left: 16px; position: relative; }
.station-card li::before { content: '·'; position: absolute; left: 3px; color: var(--neon); font-weight: 800; }
.station-note { color: var(--muted); font-size: 0.79rem; font-style: italic; margin-top: 13px; line-height: 1.4; }

/* 3c · DISHES — image cards */
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dish-card { display: flex; flex-direction: column; }
.dish-pic { aspect-ratio: var(--ratio-card); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 38px rgba(0,0,0,0.5); background: linear-gradient(160deg, #2a1f35, #140d1c); }
.dish-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.dish-card:hover .dish-pic img { transform: scale(1.06); }
.dish-pic .empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--neon); opacity: 0.4; font-size: 1.6rem; }
.dish-body { padding: 14px 2px 0; }
.dish-body h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.04rem; letter-spacing: -0.01em; }
.dish-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.45; margin-top: 5px; }
.dish-tags { display: inline-block; color: var(--gold); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
.dishlist-head { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; color: var(--cream); margin: 36px 0 6px; }
.dish-namelist { list-style: none; columns: 3; column-gap: 44px; margin-top: 8px; }
.dish-namelist li { color: var(--cream); font-size: 0.94rem; padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.07); break-inside: avoid; }
.dish-namelist li::before { content: '✦'; position: absolute; left: 0; top: 11px; color: var(--neon); font-size: 0.74rem; }
@media (max-width: 860px) { .dish-namelist { columns: 2; column-gap: 30px; } }
@media (max-width: 560px) { .dish-namelist { columns: 1; } }

/* 3d · DRINK TIERS — comparison */
.tier-grid { display: grid; gap: 20px; }
.tier-grid.tier-1 { grid-template-columns: minmax(0, 540px); }
.tier-grid.tier-2 { grid-template-columns: 1fr 1fr; }
.tier-card { background: var(--panel); border-radius: var(--r); padding: 26px; box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.tier-feat { background: linear-gradient(165deg, rgba(229, 51, 42,0.16), transparent 55%), var(--panel); box-shadow: 0 0 0 1px rgba(229, 51, 42,0.4), 0 18px 44px rgba(0,0,0,0.5); }
.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tier-head h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; }
.tier-price { font-family: var(--font-display); font-weight: 800; color: var(--neon); font-size: 1.5rem; text-shadow: var(--glow); }
.tier-sub { display: block; color: var(--muted); font-size: 0.82rem; margin: 4px 0 16px; }
.tier-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tier-list li { color: var(--cream); font-size: 0.92rem; padding-left: 24px; position: relative; }
.tier-list li::before { content: '✦'; position: absolute; left: 0; color: var(--neon); }
.tier-feat .tier-list li::before { color: var(--neon-2); }

/* 3e · ADD-ONS */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon-card { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 22px; }
.addon-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.addon-head h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; }
.addon-head span { font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 1.05rem; white-space: nowrap; }
.addon-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.45; }

/* 4 · VIBE band + gallery strip */
.ldp-vibe { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; margin-top: 24px; }
.ldp-vibe-bg { position: absolute; inset: 0; z-index: -1; }
.ldp-vibe-bg img { width: 100%; height: 100%; object-fit: cover; }
.ldp-vibe-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,7,12,0.92) 0%, rgba(10,7,12,0.6) 45%, rgba(10,7,12,0.28) 100%); }
.ldp-vibe-inner { position: relative; max-width: 600px; }
.ldp-vibe-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 8px 0 14px; }
.ldp-vibe-inner p { color: var(--cream); font-size: 1.02rem; line-height: 1.55; margin-bottom: 20px; }
.ldp-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.strip-tile { aspect-ratio: var(--ratio-wide); border-radius: 16px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,0.45); }
.strip-tile img { width: 100%; height: 100%; object-fit: cover; }

/* 5 · FINE PRINT */
.rules-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rules-list li { color: var(--cream); font-size: 0.95rem; padding-left: 26px; position: relative; line-height: 1.45; }
.rules-list li::before { content: '→'; position: absolute; left: 0; color: var(--neon); }
.rules-aside { display: flex; flex-direction: column; gap: 16px; }
.rules-block { background: rgba(255,255,255,0.05); border-radius: 14px; padding: 18px 20px; }
.rules-block b { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.rules-block span { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* 6 · SOCIAL PROOF */
.ldp-proof { padding: var(--sec-y) 0; background: radial-gradient(80% 120% at 50% 0%, rgba(229, 51, 42,0.08), transparent 60%); text-align: center; }
.ldp-proof .stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 22px; }
.proof-quotes { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin: 0 auto; }
.proof-quotes blockquote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.8rem); line-height: 1.25; color: var(--cream); }
.proof-src { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 22px; letter-spacing: 0.08em; text-transform: uppercase; }

/* 7 · BOOK */
.book-direct { max-width: 660px; }
.book-direct > p { color: var(--cream); font-size: 1.05rem; line-height: 1.55; margin-bottom: 22px; }

/* Sticky book bar — mobile */
.ldp-stickybar { display: none; }

@media (max-width: 980px) {
  .two-offer { grid-template-columns: 1fr; }
  .offer-card { position: static; }
  .station-grid, .addon-grid, .dish-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ldp-hero { min-height: 76vh; }
  .ldp-strip { grid-template-columns: 1fr 1fr; }
  .ldp-stickybar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); background: rgba(18,12,18,0.94); backdrop-filter: blur(14px); box-shadow: 0 -8px 30px rgba(0,0,0,0.5); }
  .ldp-stickybar .sb-price b { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--neon); }
  .ldp-stickybar .sb-price span { color: var(--muted); font-size: 0.8rem; margin-left: 3px; }
  .ldp-stickybar .btn { flex-shrink: 0; }
  .site-footer { padding-bottom: 96px; }
}
@media (max-width: 640px) {
  .course-row { grid-template-columns: 40px 1fr; }
  .course-row .c-tags { grid-column: 2; padding-top: 2px; }
  .tier-grid.tier-2 { grid-template-columns: 1fr; }
  .station-grid, .addon-grid, .dish-grid { grid-template-columns: 1fr; }
  .rules-cols, .ldp-strip { grid-template-columns: 1fr; gap: 24px; }
}

.feast-scroll { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feast-tile:nth-child(-n+3) { grid-column: span 2; aspect-ratio: 3 / 2; }   /* 3 trên · landscape (ảnh ngang ~1.4-1.5 → tránh zoom) */
.feast-tile:nth-child(n+4) { grid-column: span 3; aspect-ratio: 16 / 9; }   /* 2 dưới · widescreen */
.feast-tile { position: relative; display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.5); isolation: isolate; }
.feast-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.feast-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,10,0.1) 0%, rgba(8,6,10,0.15) 45%, rgba(8,6,10,0.92) 100%); z-index: 1; transition: background 0.3s; }
.feast-tile:hover > img { transform: scale(1.07); }
.feast-tile:hover { box-shadow: 0 0 0 2px rgba(229, 51, 42,0.8), 0 0 40px rgba(229, 51, 42,0.35), 0 20px 48px rgba(0,0,0,0.55); }
.feast-num { position: absolute; top: 14px; left: 16px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: rgba(246,239,247,0.55); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.feast-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 18px; }
.feast-overlay h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; line-height: 0.98; letter-spacing: -0.01em; margin-bottom: 6px; }
.feast-overlay p { color: #d9d0e0; font-size: 0.82rem; line-height: 1.4; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.35s, opacity 0.35s, margin 0.35s; }
.feast-overlay .feast-go { display: inline-block; margin-top: 10px; color: var(--neon); font-size: 0.82rem; font-weight: 700; text-shadow: 0 0 14px rgba(229, 51, 42,0.6); }
.feast-tile:hover .feast-overlay p { max-height: 80px; opacity: 1; margin-bottom: 2px; }

/* ============================================================
   SIGNATURE PLATES — editorial, ảnh to, giá pill neon overlay
   ============================================================ */
.sig-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 24px; }
.sig-card { display: block; position: relative; }
.sig-pic { position: relative; aspect-ratio: var(--ratio-card); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,0,0,0.5); background: linear-gradient(160deg, #2a1f35, #140d1c); }
.sig-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.sig-card:hover .sig-pic img { transform: scale(1.06); }
.sig-card:hover .sig-pic { box-shadow: 0 0 0 2px rgba(229, 51, 42,0.7), 0 0 38px rgba(229, 51, 42,0.3), 0 20px 46px rgba(0,0,0,0.55); }
.sig-price { position: absolute; top: 14px; right: 14px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #14060f; background: var(--neon); padding: 6px 14px; border-radius: 999px; box-shadow: 0 0 22px rgba(229, 51, 42,0.7); }
.sig-info { padding: 16px 2px 0; position: relative; }
.sig-info h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; line-height: 1; letter-spacing: -0.01em; margin-bottom: 5px; }
.sig-info p { color: var(--muted); font-size: 0.9rem; }
.sig-info .v { display: inline-block; font-size: 0.66rem; color: var(--leaf); background: rgba(181, 103, 58,0.14); border-radius: 6px; padding: 2px 8px; margin-bottom: 7px; }

@media (max-width: 860px) {
  /* Five ways: bung FULL dọc 1 cột, KHÔNG cuộn ngang (tránh khách lướt dọc bỏ sót) */
  .feast-scroll { grid-template-columns: 1fr; grid-auto-flow: row; overflow-x: visible; gap: 14px; padding-bottom: 0; }
  .feast-scroll .feast-tile { grid-column: auto !important; aspect-ratio: 16 / 10 !important; scroll-snap-align: none; }
  .feast-overlay p { max-height: 80px; opacity: 1; }
  /* Signature reel: bung FULL grid 2 cột, KHÔNG cuộn ngang
     (selector specificity .sreel-scroller .sreel để thắng base .sreel{display:flex} định nghĩa SAU media này) */
  .sreel-scroller .sreel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; overflow: visible; scroll-snap-type: none; }
  .sreel-scroller .sreel .rl-card { flex-basis: auto; }
  .sreel-scroller.more-next::after { display: none !important; }
  .sreel-scroller .sreel-nav { display: none; }
  .sig-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px 16px; }
  /* sig-pic: bỏ height cố định — để aspect-ratio dẫn width co theo cell (fix tràn ngang) */
}

/* ============================================================
   BỎ SẠCH LINE VIỀN hình & khối (Dang) — dùng nền-fill + đổ bóng
   ============================================================ */
.album, .map, .exp-media, .dj-art, .reel, .fp-media, .embed-frame, .m-item,
.menu-item .pic, .feast-card .pic, .event-card .pic, .card .thumb, .voucher,
.policy-card, .event-form-card, .up-card, .post-cta, .review-card, .acc-item,
.hero-video, .ig-grid a, .dj, .promo, .pill, .space-grid > div, .sig-pic {
  border: none !important;
}
.review-card { border-radius: 14px; }
.policy-card, .event-form-card, .up-card, .post-cta { box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.acc-item { box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
/* pill controls → nền fill thay viền */
.chip, .tab, .jump-link, .cap-chip, .exp-price { border: none; background: rgba(255,255,255,0.06); }
.subtab { border: none; background: rgba(255,255,255,0.05); }
.chip.active, .tab.active { background: var(--neon); }
.subtab.active { background: rgba(245, 201, 119,0.16); }
.jump-link.gift-link { background: rgba(245, 201, 119,0.14); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,0.07); border: none; }
.btn-ghost:hover { background: rgba(229, 51, 42,0.16); border: none; color: var(--neon); }
.socials a { border: none; background: rgba(255,255,255,0.07); }
.r18 span { border: none; background: rgba(255,255,255,0.06); }
.r18-block { border: none; background: rgba(245, 201, 119,0.10); }
.news-form input, .contact-form input, .contact-form textarea { border: none; background: var(--panel); }
.allergen { border-left: 2px solid var(--neon); }

/* Experiences hub → LDP affordance (Dang: phải nhấp xem được LDP nhóm) */
a.exp-media { display: block; position: relative; cursor: pointer; }
a.exp-media img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
a.exp-media:hover img { transform: scale(1.04); }
a.exp-media:hover { box-shadow: 0 0 0 2px rgba(229, 51, 42,0.6), 0 0 38px rgba(229, 51, 42,0.28), 0 20px 46px rgba(0,0,0,0.5); }
.exp-media-tag { position: absolute; bottom: 14px; left: 14px; z-index: 2; background: rgba(18,12,18,0.8); backdrop-filter: blur(6px); color: var(--neon); font-size: 0.78rem; font-weight: 700; padding: 7px 14px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
a.exp-media:hover .exp-media-tag { opacity: 1; transform: none; }
@media (max-width: 860px) { .exp-media-tag { opacity: 1; transform: none; } }

/* ===== Bỏ line giữa các section (Dang: line nhìn như công nghệ) ===== */
.marquee, .timestrip, .menucard, .statement, .blog, .reviews-band,
.newsletter, .cta-strip, .ig-feed, .site-footer, .loc, .vibe, .faq-block {
  border-top: none; border-bottom: none;
}
/* nav: bỏ line cứng, dùng đổ bóng mềm khi cuộn */
.site-header { border-bottom: none; box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.menu-jump { border-top: none; border-bottom: none; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.copy { border-top: none; }

/* MOTION (a11y) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-vid { display: none; }
  .hero-bg::after { content: ''; position: absolute; inset: 0; background: url('/media/hero-poster.jpg') center/cover; z-index: -1; }
  .marquee-track { animation: none; }
  .scroll-cue { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hover-card.coach { transition: opacity .2s; }
}

/* ============================================================
   MENU v2 — signature reel · scannable list · hover preview
   (Cycle 24 — thay layout thẻ ảnh cũ; reel dùng chung với homepage)
   ============================================================ */
/* signature reel (namespace .sreel* — tránh .reel của IG section)
   Cấu trúc: .sreel-wrap > .wrap > [.sreel-lab] + .sreel-scroller > .sreel(cards)
   → canh lề TRÁI theo .wrap (content 1600), scrollbar native ẩn, có nút mũi tên + fade phải */
.sreel-wrap { margin: 22px 0 8px; }
.sreel-lab { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.sreel-lab h3 { font-size: 1.1rem; color: var(--cream); }
.sreel-lab span { font: 500 .78rem/1 'Space Grotesk', system-ui, sans-serif; color: var(--muted); }
.sreel-scroller { position: relative; }
.sreel { display: flex; gap: 16px; overflow-x: auto; padding: 4px 0 6px; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.sreel::-webkit-scrollbar { display: none; height: 0; width: 0; }
.rl-card { flex: 0 0 236px; scroll-snap-align: start; }
.sreel-scroller.is-lg .rl-card { flex-basis: clamp(280px, 23vw, 360px); }
.rl-pic { position: relative; aspect-ratio: var(--ratio-card); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,.5); background: linear-gradient(160deg, #2a1f35, #100a16); }
.rl-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.rl-card:hover .rl-pic img { transform: scale(1.06); }
.rl-card:hover .rl-pic { box-shadow: 0 0 0 2px rgba(229, 51, 42,.6), 0 0 34px rgba(229, 51, 42,.28), 0 18px 40px rgba(0,0,0,.55); }
.rl-pic::after { content: '★ Signature'; position: absolute; left: 10px; top: 10px; font: 700 .62rem/1 'Space Grotesk', system-ui, sans-serif; letter-spacing: .05em; color: #160c1c; background: var(--neon); padding: 5px 9px; border-radius: 99px; box-shadow: var(--glow); }
.is-lg .rl-pic::after { font-size: .68rem; padding: 6px 11px; }
.rl-pic .empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--neon); font-size: 1.7rem; opacity: .3; }
.rl-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-top: 12px; }
.rl-name { font-weight: 700; font-size: .96rem; }
.is-lg .rl-name { font-size: 1.08rem; }
.rl-price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.is-lg .rl-price { font-size: 1.1rem; }
/* fade mép phải báo hiệu còn cuộn */
.sreel-scroller.more-next::after { content: ''; position: absolute; top: 0; bottom: 14px; right: -2px; width: 88px; background: linear-gradient(to right, transparent, var(--bg) 86%); pointer-events: none; z-index: 2; }
/* nút cuộn (desktop) */
.sreel-nav { position: absolute; top: 38%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(18,12,18,.86); border: 1px solid var(--line); color: var(--cream); font: 400 1.5rem/1 'Space Grotesk', system-ui, sans-serif; cursor: pointer; opacity: 0; transition: opacity .2s, background .2s, color .2s; box-shadow: 0 8px 24px rgba(0,0,0,.55); }
.sreel-nav.prev { left: -10px; } .sreel-nav.next { right: -10px; }
.sreel-nav:hover { background: var(--neon); color: #160c1c; border-color: var(--neon); }
.sreel-scroller:hover .sreel-nav { opacity: 1; }
.sreel-nav:disabled { opacity: 0 !important; pointer-events: none; }
@media (hover: none) { .sreel-nav { display: none; } .sreel-scroller.more-next::after { width: 56px; } }

/* discovery hint */
.menu-hint { display: flex; align-items: center; justify-content: center; gap: 9px; max-width: 1180px; margin: 0 auto; padding: 12px 22px 0; color: var(--muted); font: 500 .84rem/1.3 'Space Grotesk', system-ui, sans-serif; }
.menu-hint b { color: var(--neon); font-weight: 700; }
.menu-hint .hi-ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(229, 51, 42,.12); border: 1px solid rgba(229, 51, 42,.4); font-size: .85rem; box-shadow: var(--glow); }

/* group head (replaces .ms-head for v2 list) */
.grp-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.grp-head h2 { font-size: clamp(1.5rem, 3vw, 1.95rem); color: #fff; }
.grp-head p { color: var(--muted); font-size: .9rem; }

/* scannable 2-col list */
.mi-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 54px; row-gap: 18px; }
.mi { break-inside: avoid; min-width: 0; }
.mi-row { display: flex; align-items: baseline; gap: 8px; }
.mi-name { font-weight: 700; font-size: 1.04rem; color: #fff; }
.mi[data-img] .mi-name { cursor: pointer; border-bottom: 1px dotted rgba(229, 51, 42,.32); padding-bottom: 1px; transition: border-color .2s; }
.mi[data-img]:hover .mi-name, .mi[data-img]:focus .mi-name { border-bottom-color: var(--neon); outline: none; }
.mi-dot { flex: 1; border-bottom: 1px dotted #4a3f52; transform: translateY(-3px); min-width: 18px; }
.mi-price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.mi-desc { color: var(--muted); font-size: .85rem; margin: 3px 0 0; max-width: 46ch; }
.t-sig { color: var(--neon); margin-left: 7px; font-size: .85rem; text-shadow: var(--glow); }
.t-v { display: inline-block; color: var(--leaf); border: 1px solid var(--leaf-d); border-radius: 5px; font-size: .6rem; padding: 1px 5px; margin-left: 7px; vertical-align: middle; font-weight: 700; }

/* hover image preview (desktop) */
.hover-card { position: fixed; z-index: 80; width: 268px; aspect-ratio: var(--ratio-card); border-radius: 16px; overflow: hidden; box-shadow: 0 22px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(229, 51, 42,.25); pointer-events: none; opacity: 0; transform: translateY(-50%) scale(.96); transition: opacity .16s ease, transform .16s ease; background: var(--panel); }
.hover-card.on { opacity: 1; transform: translateY(-50%) scale(1); }
.hover-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hover-card .hc-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 12px 10px; font: 700 .82rem/1.2 'Space Grotesk', system-ui, sans-serif; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.hover-card .hc-hint { position: absolute; left: 0; right: 0; top: 0; padding: 9px 12px; font: 700 .68rem/1 'Space Grotesk', system-ui, sans-serif; letter-spacing: .04em; text-transform: uppercase; color: #160c1c; background: var(--neon); opacity: 0; transition: opacity .2s; }
.hover-card.coach .hc-hint { opacity: 1; }

/* mobile tap-to-reveal */
.mi-mob { display: none; }
.mi-mob img { width: 100%; aspect-ratio: var(--ratio-card); object-fit: cover; border-radius: 12px; display: block; }
@media (hover: hover) { .mi-mob { display: none !important; } }
@media (hover: none) {
  .mi[data-img] .mi-name::after { content: '📷'; font-size: .72rem; margin-left: 8px; opacity: .5; }
  .mi.open .mi-mob { display: block; margin-top: 10px; }
}

/* sticky float CTA */
.cta-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; background: var(--neon); color: #160c1c; font-weight: 700; padding: 14px 26px; border-radius: 99px; box-shadow: 0 10px 30px rgba(229, 51, 42,.45), var(--glow); font-family: 'Space Grotesk', system-ui, sans-serif; }
.cta-float:hover { background: var(--neon-2); }

@media (max-width: 760px) {
  .mi-list { grid-template-columns: 1fr; column-gap: 0; row-gap: 16px; }
  .cta-float { left: 16px; right: 16px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .rl-card:hover .rl-pic img { transform: none; }
}

/* ===== Footer giant wordmark — "HAOGOOD" full-bleed (parent group) ===== */
.foot-wordmark {
  display: block;
  width: 100%;
  margin: 28px 0 0;
  padding: 0.16em 0 0.04em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--font-display, 'Syne'), sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.78;
  font-size: clamp(2rem, 10.5vw, 11rem); /* "HAOGOOD" ~8.9em → vừa ~94% bề ngang, không cắt */
  color: transparent;
  background: linear-gradient(180deg, rgba(229, 51, 42,0.26), rgba(229, 51, 42,0.05));
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.foot-wordmark:hover {
  filter: drop-shadow(0 0 26px rgba(229, 51, 42,0.45));
}

/* ===== "As seen online" reel → popup phát YouTube Short tại chỗ ===== */
.reviews button.reel { font: inherit; color: var(--cream); text-align: left; }
.reel-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  background: rgba(6,4,8,0.9); backdrop-filter: blur(6px);
  animation: reelFade 0.2s ease;
}
@keyframes reelFade { from { opacity: 0 } to { opacity: 1 } }
.reel-modal-inner {
  position: relative; height: min(86vh, 800px); aspect-ratio: 9 / 16; max-width: 94vw;
  border-radius: 18px; overflow: hidden; background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(229, 51, 42,0.3), 0 0 60px rgba(229, 51, 42,0.2);
}
.reel-modal-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-close {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 1.05rem;
  display: grid; place-items: center; transition: 0.2s;
}
.reel-close:hover { background: var(--neon); color: #1a0f1f; }

/* ===== Header: lockup logo + tagline "Part of HaoGood Group" (champagne) ===== */
.brand-lockup { display: flex; align-items: center; gap: 14px; }
.nav-tagline {
  color: var(--champagne);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.92;
  border-left: 1px solid rgba(232,214,168,0.3);
  padding-left: 14px;
  line-height: 1.2;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-tagline:hover { color: #f5e9c8; text-shadow: 0 0 12px rgba(232,214,168,0.55); opacity: 1; }
@media (max-width: 600px) {
  /* Mobile: tagline NẰM DƯỚI logo, CĂN GIỮA (không giãn đều) */
  .brand-lockup { flex-direction: column; align-items: flex-start; gap: 3px; }
  .nav-tagline {
    display: block; width: 100%;
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(232,214,168,0.28); padding-top: 3px; margin-top: 1px;
    font-size: 0.6rem; letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
  }
}

/* ===== IG feed thật: badge video/album + skeleton loading ===== */
.ig-badge {
  position: absolute; top: 7px; right: 8px; z-index: 2;
  font-size: 0.7rem; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.7); pointer-events: none;
}
.ig-skel span {
  display: block; aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(110deg, #221a2c 30%, #2f2440 50%, #221a2c 70%);
  background-size: 200% 100%; animation: igShimmer 1.2s linear infinite;
}
@keyframes igShimmer { from { background-position: 200% 0 } to { background-position: -200% 0 } }

/* ===== Welcome popup (email capture, hiện sau 3s) ===== */
.wp-overlay {
  position: fixed; inset: 0; z-index: 220; display: grid; place-items: center; padding: 20px;
  background: rgba(6,4,8,0.86); backdrop-filter: blur(7px); animation: reelFade 0.25s ease;
}
.wp-card {
  position: relative; display: block;
  width: min(520px, 96vw); max-height: 92vh; overflow: hidden auto; border-radius: 20px;
  background: var(--bg2, #160f18);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(229, 51, 42,0.35), 0 0 70px rgba(229, 51, 42,0.25);
  animation: wpRise 0.35s cubic-bezier(0.22,1,0.36,1);
}
@keyframes wpRise { from { opacity: 0; transform: translateY(16px) scale(0.98) } to { opacity: 1; transform: none } }
/* Ảnh banner full-width TRÊN cùng, GIỮ NGUYÊN tỉ lệ (height:auto, KHÔNG crop) — PC & mobile */
.wp-media { position: relative; width: 100%; line-height: 0; }
.wp-media img { width: 100%; height: auto; display: block; }
.wp-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(22,15,24,0.95)); pointer-events: none; }
.wp-body { padding: clamp(22px, 4vw, 34px); display: flex; flex-direction: column; }
.wp-eyebrow { color: var(--neon); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; text-shadow: 0 0 14px rgba(229, 51, 42,0.6); margin-bottom: 10px; }
.wp-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 12px; }
.wp-title span { color: var(--neon); text-shadow: var(--glow-strong, 0 0 20px rgba(229, 51, 42,0.7)); }
.wp-sub { color: #d9d0e0; font-size: 0.96rem; line-height: 1.5; margin-bottom: 20px; }
.wp-form { display: flex; flex-direction: column; gap: 10px; }
.wp-form input[type=email] { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--cream); font-size: 1rem; }
.wp-form input[type=email]:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(229, 51, 42,0.2); }
.wp-form .btn { width: 100%; }
.wp-fine { color: var(--muted); font-size: 0.76rem; margin-top: 12px; }
.wp-done { color: var(--neon); font-weight: 700; font-size: 1.05rem; padding: 14px 0; }
.wp-err { color: #ff8d8d; font-size: 0.82rem; }
.wp-close {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer; background: rgba(0,0,0,0.55); color: #fff; font-size: 1.05rem;
  display: grid; place-items: center; transition: 0.2s;
}
.wp-close:hover { background: var(--neon); color: #1a0f1f; }
@media (max-width: 680px) {
  .wp-card { width: min(420px, 94vw); max-height: 90vh; }
}

/* ===== Booking widget (SevenRooms API — đặt bàn native) ===== */
.bk-card { max-width: 640px; margin: 0 auto; background: var(--bg2, #160f18); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 32px); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }
.bk-search { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.bk-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 110px; }
.bk-field label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.bk-field input, .bk-field select, .bk-form input { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--cream); font-size: 1rem; width: 100%; }
.bk-search .btn { flex: 0 0 auto; }
.bk-field input:focus, .bk-field select:focus, .bk-form input:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(229, 51, 42,0.2); }
.bk-label { font-size: 0.9rem; color: #d9d0e0; margin: 22px 0 12px; }
.bk-times { display: flex; flex-wrap: wrap; gap: 10px; }
.bk-time { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--cream); font-weight: 700; cursor: pointer; transition: 0.2s; }
.bk-time:hover { border-color: var(--neon); color: var(--neon); box-shadow: 0 0 16px rgba(229, 51, 42,0.3); }
.bk-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.bk-row { display: flex; gap: 10px; flex-wrap: wrap; }
.bk-row input { flex: 1; min-width: 140px; }
.bk-form .btn { margin-top: 6px; }
.bk-change { background: none; border: none; color: var(--neon); cursor: pointer; font-size: 0.85rem; text-decoration: underline; padding: 0 0 0 6px; }
.bk-err { color: #ff8d8d; font-size: 0.88rem; margin-top: 14px; }
.bk-empty { color: var(--muted); margin-top: 16px; }
.bk-done { text-align: center; }
.bk-tick { color: var(--neon); font-size: 2rem; text-shadow: var(--glow-strong, 0 0 20px rgba(229, 51, 42,0.7)); }
.bk-done h3 { font-family: var(--font-display); text-transform: uppercase; margin: 10px 0; }
.bk-fine { color: var(--muted); font-size: 0.8rem; margin-top: 10px; }
@media (max-width: 560px) { .bk-search { flex-direction: column; align-items: stretch; } .bk-search .btn { width: 100%; } }

/* ============================================================
   VENUE ARCHITECTURE — Hub portal · idea row · zones · accent
   ============================================================ */

/* --- Hub: idea row (3 cột $8.88) --- */
.idea-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.idea-cell { padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, var(--panel), var(--bg2)); }
.idea-cell b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--champagne); margin-bottom: 6px; }
.idea-cell span { color: var(--muted); font-size: .95rem; line-height: 1.5; }
@media (max-width: 760px){ .idea-row { grid-template-columns: 1fr; } }

/* --- Hub: Two cities portal --- */
.venue-portal { padding: clamp(48px, 7vw, 96px) 0; }
.portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1280px; margin: 28px auto 0; padding: 0 clamp(16px, 4vw, 40px); }
.portal-panel { position: relative; display: block; min-height: clamp(420px, 52vw, 620px);
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  isolation: isolate; transition: transform .4s ease, box-shadow .4s ease; }
.portal-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease; z-index: -2; }
.portal-scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,7,6,.15) 0%, rgba(10,7,6,.45) 45%, rgba(10,7,6,.92) 100%); }
.portal-panel:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.portal-panel:hover img { transform: scale(1.06); }
.portal-inner { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(24px, 3vw, 40px); }
.portal-eyebrow { font-family: var(--font-mono, monospace); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); }
.portal-inner h3 { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: .98; margin: 10px 0 12px; color: #fff; }
.portal-inner p { color: var(--champagne); max-width: 42ch; margin-bottom: 16px; line-height: 1.5; }
.portal-go { display: inline-block; font-weight: 600; color: var(--neon-2);
  border-bottom: 2px solid var(--neon-2); padding-bottom: 2px; }
@media (max-width: 820px){ .portal-grid { grid-template-columns: 1fr; } }

/* --- Venue: Four ways in (zones) --- */
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.zone-card { position: relative; padding: 28px 22px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, var(--panel), var(--bg2)); overflow: hidden; }
.zone-card .feast-num { position: static; display: block; font-family: var(--font-mono, monospace);
  color: var(--neon-2); opacity: .6; font-size: .8rem; margin-bottom: 10px; }
.zone-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--champagne); margin-bottom: 8px; }
.zone-card p { color: var(--muted); font-size: .92rem; line-height: 1.5; }
@media (max-width: 900px){ .zone-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .zone-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ACCENT theo quán (data-venue) — đè --neon / --neon-2
   AKL speakeasy đỏ-đồng · WLG neon điện
   ============================================================ */
[data-venue="akl"] { --neon: #D23A2A; --neon-2: #CE8A4A; --gold: #E8B873; }
[data-venue="wlg"] { --neon: #FF2E63; --neon-2: #35E0E0; --gold: #F5C977; }
