/* ============================================================
   NAMZUI — Foods & Beer Landing Page
   Color palette inspired by reference image
   ============================================================ */

:root {
  --orange:      #FF6B2B;
  --orange-dark: #E55A1B;
  --orange-light:#FFF0E8;
  --cream:       #FFF8F2;
  --dark:        #1A1A1A;
  --dark-2:      #2D2D2D;
  --gray:        #6B7280;
  --gray-light:  #F3F4F6;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      14px;
  --radius-sm:   8px;
  --font:        'Be Vietnam Pro', sans-serif;
  --topbar-h:    0px;
  --navbar-h:    76px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(245, 230, 195, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1001;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(185, 135, 55, 0.18);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__pin {
  font-size: .85rem;
  flex-shrink: 0;
}
.topbar__address-text {
  background: linear-gradient(90deg, #B85010, #C87A08);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: .01em;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.topbar__directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff !important;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.topbar__directions:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255,107,43,.35);
}
.topbar__directions svg { flex-shrink: 0; }

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent { color: var(--orange); }

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray);
  font-size: .95rem;
  max-width: 480px;
  margin-bottom: 28px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 26px;
  border-radius: 999px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,43,.35);
}
.btn-sm { padding: 8px 18px; font-size: .8rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.play-icon {
  width: 28px; height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(245, 230, 195, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(185, 135, 55, 0.22);
  transition: box-shadow .2s, background .2s;
}
.navbar.scrolled {
  background: rgba(245, 228, 190, 0.96);
  box-shadow: 0 4px 24px rgba(140, 90, 20, 0.12);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Address block now lives inside the navbar */
.navbar__address-block {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.navbar__pin { font-size: .85rem; flex-shrink: 0; }
.navbar__address-text {
  font-size: .75rem;
  font-weight: 600;
  color: #7A3510;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}

/* Navbar CTA call button */
.navbar__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,107,43,.35);
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.navbar__cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,43,.45);
}

/* Google Maps styled button */
.gmap-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #3c4043;
  font-size: .75rem;
  font-weight: 500;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1.5px solid #dadce0;
  box-shadow: 0 1px 4px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  white-space: nowrap;
  flex-shrink: 0;
  transition: box-shadow .25s, transform .2s;
  text-decoration: none;
}
.gmap-btn:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transform: translateY(-2px);
}
.gmap-btn__pin {
  width: 30px; height: 30px;
  background: #fce8e6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gmap-btn:hover .gmap-btn__pin { animation: pinBounce .5s ease; }
@keyframes pinBounce {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-6px) scale(1.1); }
  60%  { transform: translateY(-2px) scale(.96); }
  80%  { transform: translateY(-4px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}
.gmap-btn strong { color: #4285F4; font-weight: 700; }

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Footer logo: same size, natural colors, warm glow to pop on dark bg */
.footer__logo-img {
  height: 56px;
  filter: drop-shadow(0 2px 10px rgba(255,140,50,.50));
}
.footer__logo-link {
  display: inline-flex;
  margin-bottom: 12px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-light); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown:hover .dropdown-panel { display: flex; }
.dropdown-panel a {
  padding: 8px 12px;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  color: var(--gray);
  transition: background .15s, color .15s;
}
.dropdown-panel a:hover { background: var(--orange-light); color: var(--orange); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.search-box {
  display: flex;
  align-items: center;
  background: rgba(220, 195, 140, 0.35);
  border: 1px solid rgba(185, 135, 55, 0.25);
  border-radius: 999px;
  padding: 6px 8px 6px 14px;
  gap: 4px;
}
.search-box input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: .8rem;
  outline: none;
  width: 140px;
  color: var(--dark);
}
.search-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: .6;
}

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(220, 195, 140, 0.35);
  border: 1px solid rgba(185, 135, 55, 0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  position: relative;
  transition: background .2s;
}
.icon-btn:hover { background: rgba(255, 107, 43, 0.15); }

.badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + 40px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* ---- Beer icon background with dynamic foam sponge ---- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #F5E6C3;
}

/* Beer scene container — right-aligned, 70% opacity */
.hero__beer-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3%;
  opacity: 0.70;
  pointer-events: none;
}
.hero__beer-glass {
  height: 90%;
  max-height: 700px;
  width: auto;
  filter: drop-shadow(0 0 80px rgba(200,120,20,.40));
  animation: beerFloat 5s ease-in-out infinite;
}
@keyframes beerFloat {
  0%, 100% { transform: translateY(0)    rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}

/* Foam blob jiggle animations */
.fj { transform-origin: 50% 100%; }
.fj1 { animation: fj1 3.4s ease-in-out infinite; }
.fj2 { animation: fj2 2.9s ease-in-out infinite; }
.fj3 { animation: fj3 4.1s ease-in-out infinite; }
.fj4 { animation: fj4 3.7s ease-in-out infinite; }
.fj5 { animation: fj5 2.7s ease-in-out infinite; }
.fj6 { animation: fj6 3.2s ease-in-out infinite; }
@keyframes fj1 { 0%,100%{transform:scale(1)    translateY(0);   } 50%{transform:scale(1.07) translateY(-4px);} }
@keyframes fj2 { 0%,100%{transform:scale(1)    translateY(0);   } 40%{transform:scale(1.09) translateY(-6px);} }
@keyframes fj3 { 0%,100%{transform:scale(1)    translateY(0);   } 60%{transform:scale(1.12) translateY(-8px);} }
@keyframes fj4 { 0%,100%{transform:scale(1)    translateY(0);   } 45%{transform:scale(1.08) translateY(-5px);} }
@keyframes fj5 { 0%,100%{transform:scale(1)    translateY(0);   } 55%{transform:scale(1.06) translateY(-4px);} }
@keyframes fj6 { 0%,100%{transform:scale(1)    translateY(0);   } 50%{transform:scale(1.10) translateY(-6px);} }

/* Bubbles rising inside glass */
.hbub { animation: hbubRise var(--d,4s) ease-in var(--dl,0s) infinite; }
.hbub1 { --d:4.8s; --dl:0.0s; }
.hbub2 { --d:3.9s; --dl:0.9s; }
.hbub3 { --d:5.4s; --dl:1.7s; }
.hbub4 { --d:3.6s; --dl:2.5s; }
.hbub5 { --d:5.0s; --dl:0.5s; }
.hbub6 { --d:4.3s; --dl:3.1s; }
.hbub7 { --d:3.8s; --dl:1.3s; }
.hbub8 { --d:4.6s; --dl:2.0s; }
@keyframes hbubRise {
  0%   { transform: translateY(0);      opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: .75; }
  100% { transform: translateY(-380px); opacity: 0; }
}

/* Overlay removed — background color matches navbar */
.hero__vid-overlay {
  display: none;
}
/* Ensure content sits above background layers */
.hero__inner { position: relative; z-index: 2; }

/* Beer bubbles */
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0);    opacity: 0; }
  8%   { opacity: .65; }
  85%  { opacity: .35; }
  100% { transform: translateY(-90vh) translateX(12px); opacity: 0; }
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.65), rgba(255,160,30,.08));
  border: 1.5px solid rgba(255,150,30,.30);
  animation: bubbleRise linear infinite;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.b1  { width: 18px; height: 18px; left:  7%; animation-duration:  7.5s; animation-delay:  0.0s; }
.b2  { width: 10px; height: 10px; left: 14%; animation-duration:  5.2s; animation-delay:  1.4s; }
.b3  { width: 26px; height: 26px; left: 23%; animation-duration:  9.8s; animation-delay:  0.6s; }
.b4  { width:  8px; height:  8px; left: 38%; animation-duration:  6.0s; animation-delay:  2.2s; }
.b5  { width: 20px; height: 20px; left: 50%; animation-duration:  8.4s; animation-delay:  0.9s; }
.b6  { width: 13px; height: 13px; left: 63%; animation-duration:  5.8s; animation-delay:  1.7s; }
.b7  { width: 30px; height: 30px; left: 75%; animation-duration: 11.0s; animation-delay:  3.1s; }
.b8  { width:  9px; height:  9px; left: 86%; animation-duration:  6.3s; animation-delay:  0.4s; }
.b9  { width: 15px; height: 15px; left: 93%; animation-duration:  7.1s; animation-delay:  2.8s; }

/* Floating food icons */
@keyframes foodDrift {
  0%, 100% { transform: translateY(0)    rotate(-4deg) scale(1);    }
  50%       { transform: translateY(-14px) rotate(4deg)  scale(1.04); }
}
.food-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: .07;
  animation: foodDrift ease-in-out infinite;
  z-index: 0;
}
.fd1 { font-size: 6rem; top: 12%; right:  3%; animation-duration: 6.5s; }
.fd2 { font-size: 7rem; bottom: 8%; left:  1%; animation-duration: 8.2s; animation-delay: 1.1s; }
.fd3 { font-size: 4rem; top: 55%; right:  9%; animation-duration: 7.0s; animation-delay: 2.0s; }
.fd4 { font-size: 5rem; top:  8%; left:  4%; animation-duration: 5.5s; animation-delay: 0.6s; }
.fd5 { font-size: 3.5rem; bottom: 22%; right: 18%; animation-duration: 9.0s; animation-delay: 1.8s; }

.hero__bg-decoration { position: absolute; inset: 0; pointer-events: none; }
.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
}
.dot-1 { width: 12px; height: 12px; top: 18%; right: 15%; opacity: .4; }
.dot-2 { width: 8px;  height: 8px;  top: 60%; left: 8%;  opacity: .3; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: .12;
}
.circle-1 { width: 300px; height: 300px; top: -80px; right: -40px; }
.circle-2 { width: 180px; height: 180px; bottom: 60px; left: -30px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--topbar-h) - var(--navbar-h) - 80px);
}

.hero__content { display: flex; flex-direction: column; gap: 0; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(255,107,43,.15);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars { display: flex; }
.avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -8px;
  object-fit: cover;
}
.stars { color: var(--orange); font-size: .9rem; }
.review-label { font-size: .8rem; color: var(--gray); }

/* Hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }

.hero__image-wrap {
  position: relative;
  width: 500px;
  height: 500px;
}

/* Warm glow halo behind the plate */
.hero__circle-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,140,60,.22) 0%,
    rgba(255,170,90,.10) 45%,
    transparent 72%);
}

/* Main circular plate image */
.hero__main-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255,255,255,.85),
    0 24px 64px rgba(255,107,43,.22),
    0 8px 24px rgba(0,0,0,.12);
  z-index: 2;
}

/* ---- Illustration visual wrap ---- */
.hero__illus-wrap {
  position: relative;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__illus-svg {
  width: 100%;
  height: auto;
  max-width: 500px;
  overflow: visible;
}

/* Floating food emojis inside SVG — reuse floatY keyframe */
.illus-float { animation: floatY 5s ease-in-out infinite; }
.if1 { animation-delay: 0s;    animation-duration: 5.5s; }
.if2 { animation-delay: 1.0s;  animation-duration: 6.0s; }
.if3 { animation-delay: 1.8s;  animation-duration: 5.2s; }
.if4 { animation-delay: 2.6s;  animation-duration: 6.5s; }
.if5 { animation-delay: 0.6s;  animation-duration: 5.8s; }
.if6 { animation-delay: 3.2s;  animation-duration: 5.0s; }
.if7 { animation-delay: 1.4s;  animation-duration: 6.2s; }

/* Beer bubbles inside SVG */
@keyframes bubRise {
  0%   { opacity: 0;   transform: translateY(0); }
  15%  { opacity: .65; }
  100% { opacity: 0;   transform: translateY(-60px); }
}
.illus-bubble { animation: bubRise linear infinite; }
.ib1 { animation-duration: 3.0s; animation-delay: 0.0s; }
.ib2 { animation-duration: 2.5s; animation-delay: 0.6s; }
.ib3 { animation-duration: 3.5s; animation-delay: 1.2s; }
.ib4 { animation-duration: 2.8s; animation-delay: 1.8s; }
.ib5 { animation-duration: 3.2s; animation-delay: 0.4s; }

/* ---- Scattered ingredient decorations (reference: herbs around the plate) ---- */
.hero-scatter {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  border: 3px solid rgba(255,255,255,.80);
  animation: floatY 5s ease-in-out infinite;
}
.hs1 { width: 90px;  height: 90px;  top:  -20px; right:  20px; transform: rotate(12deg);  animation-delay: 0s;   }
.hs2 { width: 75px;  height: 75px;  bottom: 10px; left:   -10px; transform: rotate(-18deg); animation-delay: 1.2s; }
.hs3 { width: 110px; height: 110px; bottom: -10px; right:   30px; transform: rotate(6deg);  animation-delay: 0.6s; }
.hs4 { width: 68px;  height: 68px;  top:   60px;  left:   -20px; transform: rotate(-8deg);  animation-delay: 1.8s; }
.hs5 { width: 80px;  height: 80px;  top:   -10px; left:    80px; transform: rotate(20deg);  animation-delay: 2.4s; }

/* ---- Stats strip ---- */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hstat__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hstat__lbl {
  font-size: .72rem;
  color: var(--gray);
  font-weight: 500;
}
.hstat__sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatY 4s ease-in-out infinite;
  z-index: 3;
}
.card-top    { top: 40px;    right: -10px; }
.card-bottom { bottom: 80px; left: -10px;  animation-delay: -2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__floating-card img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.fc-icon { font-size: 1.8rem; }
.fc-name   { font-size: .68rem; font-weight: 600; }
.fc-review { font-size: .60rem; color: var(--gray); max-width: 160px; line-height: 1.35; margin: 2px 0; font-style: italic; }
.fc-stars  { color: var(--orange); font-size: .60rem; }
.fc-sub   { font-size: .7rem; color: var(--gray); }

/* ============================================================
   ABOUT
   ============================================================ */
/* ===== BIA HƠI SECTION (formerly About) ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  background: #1A0D00;
}

/* Left: photo */
.about__image-side {
  position: relative;
  overflow: hidden;
}
.about__img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.about__img-fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(180,90,10,.50) 100%);
  pointer-events: none;
}

/* Right: golden content */
.about__content-side {
  background: linear-gradient(150deg, #C97010 0%, #E8A020 45%, #9A5500 100%);
  display: flex;
  align-items: center;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}
.bh-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.bh-blob1 { width: 280px; height: 280px; top: -90px; right: -70px; }
.bh-blob2 { width: 190px; height: 190px; bottom: -55px; left: -45px; }

/* Inner content */
.biahoi-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.biahoi-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

/* Headline */
.biahoi-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.bh-announce {
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}
.bh-main {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #1A0500;
  line-height: 1.05;
  display: block;
}
.bh-accent {
  font-style: normal;
  color: #fff;
  text-shadow: 2px 3px 0 rgba(0,0,0,.22);
}

/* Taglines */
.biahoi-tagline {
  font-size: .86rem;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.biahoi-shout {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1A0500;
  margin-bottom: 20px;
}

/* Price badge */
.biahoi-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #1A0500;
  border-radius: 14px;
  padding: 12px 28px;
  margin-bottom: 22px;
  width: fit-content;
  box-shadow: 0 6px 24px rgba(0,0,0,.32);
}
.bpb-top {
  font-size: .70rem;
  font-weight: 600;
  color: rgba(255,255,255,.60);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.bpb-num { font-size: 1.4rem; font-weight: 700; color: #FFD700; line-height: 1.1; }
.bpb-num strong { font-size: 2.1rem; font-weight: 900; }
.bpb-num small { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.60); }

/* 4 perks grid */
.biahoi-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.bhperk {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.22);
  color: #fff;
  font-size: .79rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 10px;
}
.bhperk span { font-size: 1.05rem; flex-shrink: 0; }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: 100px 0;
  background: var(--cream);
}
.menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.menu__nav-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.arrow-btn:hover { background: var(--orange-dark); transform: scale(1.08); }
.arrow-btn:disabled { background: var(--border); color: var(--gray); cursor: default; transform: none; }

.menu__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.menu__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + 16px);
  align-self: start;
  z-index: 10;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  text-align: left;
  transition: background .2s, color .2s;
  width: 100%;
}
.tab-btn:hover  { background: var(--orange-light); color: var(--orange); }
.tab-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,107,43,.3);
}
.tab-btn span { font-size: 1.2rem; }

.menu__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card__img-wrap { position: relative; }
.menu-card img {
  width: 100%; height: 180px;
  object-fit: cover;
  display: block;
}
.menu-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.menu-card__body { padding: 14px; }
.menu-card__name { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.menu-card__desc { font-size: .75rem; color: var(--gray); margin-bottom: 10px; }
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card__price { font-size: 1rem; font-weight: 700; color: var(--orange); }
.menu-card__btn {
  background: var(--orange-light);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.menu-card:hover .menu-card__btn { background: var(--orange); color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.testimonials__image { position: relative; }
.testi-person {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.testi-reviewer-strip {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testi-label { font-size: .7rem; color: var(--gray); font-weight: 600; }
.testi-avatars {
  display: flex;
}
.testi-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -6px;
  object-fit: cover;
}

.testi-avatars-top {
  display: flex;
  margin-bottom: 16px;
}
.testi-avatars-top img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -8px;
  object-fit: cover;
}

.testimonial { display: none; }
.testimonial.active { display: block; }

.testi-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-reviewer img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-name  { font-size: .9rem; font-weight: 600; }
.testi-stars { color: var(--orange); font-size: .85rem; }

.testi-quote {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  font-style: italic;
}

.testi-dots {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #150A00 0%, #2A1400 50%, #1A1000 100%);
  padding: 0;
}

/* Amber glow radials */
.promo-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 55%, rgba(255,175,30,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 75%, rgba(255,107,43,.10) 0%, transparent 48%);
  pointer-events: none;
}

/* Rising beer bubbles */
.promo-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pb {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255,185,40,.16);
  border: 1px solid rgba(255,185,40,.28);
  animation: pbRise var(--dur, 7s) ease-in var(--delay, 0s) infinite;
}
.pb1  { width: 18px; height: 18px; left: 8%;  --dur: 8s;   --delay: 0s;   }
.pb2  { width: 11px; height: 11px; left: 22%; --dur: 5.5s; --delay: 1.3s; }
.pb3  { width: 26px; height: 26px; left: 40%; --dur: 9s;   --delay: 2.2s; }
.pb4  { width: 9px;  height: 9px;  left: 58%; --dur: 6.5s; --delay: 0.6s; }
.pb5  { width: 15px; height: 15px; left: 74%; --dur: 7.5s; --delay: 3.4s; }
.pb6  { width: 21px; height: 21px; left: 87%; --dur: 6s;   --delay: 1.9s; }
@keyframes pbRise {
  0%   { transform: translateY(0)     scale(1);  opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: .45; }
  100% { transform: translateY(-105vh) scale(.55); opacity: 0; }
}

/* Layout */
.promo-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
  position: relative;
  gap: 40px;
}
.promo-banner__content {
  padding: 60px 0;
  color: var(--white);
}

/* Tuesday-only badge */
.promo-thu-ba {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D42020, #FF3A3A);
  border: none;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  padding: 9px 20px;
  border-radius: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(210,30,30,.50), 0 0 0 3px rgba(255,80,80,.20);
  animation: thuBaPulse 2s ease-in-out infinite;
}
.promo-thu-ba__dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPing 1.6s ease-in-out infinite;
}
@keyframes thuBaPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(210,30,30,.50), 0 0 0 3px rgba(255,80,80,.20); }
  50%       { box-shadow: 0 4px 26px rgba(210,30,30,.70), 0 0 0 5px rgba(255,80,80,.10); }
}
@keyframes dotPing {
  0%, 100% { opacity: 1;  transform: scale(1);   }
  50%       { opacity: .5; transform: scale(1.4); }
}

/* Labels / heading */
.promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
}
.promo-banner__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.15;
}
.promo-accent { color: #FFD700; }

/* Includes list */
.promo-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.promo-includes li {
  font-size: .91rem;
  color: rgba(255,255,255,.80);
  font-weight: 500;
}

.promo-banner__content p {
  color: rgba(255,255,255,.55);
  font-size: .90rem;
  max-width: 400px;
  margin-bottom: 26px;
  line-height: 1.65;
}

/* CTA row */
.promo-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.promo-price { display: flex; align-items: baseline; gap: 10px; }
.price-now { font-size: 1.7rem; font-weight: 900; color: #FFD700; }
.price-was { font-size: 1rem; color: rgba(255,255,255,.38); text-decoration: line-through; }

/* Savings tag */
.promo-save-tag {
  display: inline-block;
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.28);
  color: #FFD700;
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  margin-top: 14px;
  letter-spacing: .03em;
}

/* Image column */
.promo-banner__image { display: flex; justify-content: center; align-items: flex-end; }
.promo-img-frame { position: relative; display: inline-block; }
.promo-img {
  width: 420px;
  height: 380px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -14px 60px rgba(255,175,30,.28), 0 0 0 2px rgba(255,175,30,.18);
  display: block;
}
.promo-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(to top, rgba(21,10,0,.70) 0%, transparent 45%);
  pointer-events: none;
}
.promo-img-float-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255,175,30,.90);
  color: #150A00;
  font-size: .84rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  letter-spacing: .02em;
}

/* ============================================================
   GET STARTED
   ============================================================ */
.getstarted {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), #FFEEE0);
}
.getstarted__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.getstarted__content { display: flex; flex-direction: column; gap: 0; }
.getstarted__content .btn-primary { margin-bottom: 28px; width: fit-content; }

.getstarted__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-person {
  display: flex; align-items: center; gap: 10px;
}
.contact-person img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.cp-name  { font-size: .85rem; font-weight: 600; }
.cp-role  { font-size: .75rem; color: var(--gray); }
.phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: border-color .2s, color .2s;
}
.phone-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Phone mockup */
.getstarted__visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 240px;
  background: var(--dark);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 60px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  padding: 14px;
  min-height: 360px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .65rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.app-avatar {
  width: 24px; height: 24px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.app-banner {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: .65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.app-banner-icon { font-size: 1.4rem; }
.app-cats {
  display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap;
}
.app-cat {
  font-size: .55rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gray-light);
  color: var(--gray);
}
.active-cat { background: var(--orange); color: var(--white); }
.app-label { font-size: .65rem; font-weight: 600; margin-bottom: 8px; }
.app-items { display: flex; gap: 8px; }
.app-item {
  flex: 1;
  text-align: center;
  font-size: .55rem;
  color: var(--gray);
}
.app-item img { width: 100%; height: 44px; object-fit: cover; border-radius: 8px; margin-bottom: 4px; }

.order-now-badge {
  position: absolute;
  top: -20px; right: -30px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(255,107,43,.35);
  font-size: .85rem;
  animation: floatY 4s ease-in-out infinite;
}
.onb-title { font-size: .8rem; font-weight: 700; }
.onb-sub   { font-size: .65rem; opacity: .85; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #2E2E2E;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand p { font-size: .85rem; max-width: 240px; margin-bottom: 16px; }

.footer__socials, .footer__socials-inline {
  display: flex; gap: 10px;
}
.footer__socials a, .footer__socials-inline a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer__socials a:hover, .footer__socials-inline a:hover {
  background: var(--orange);
  color: #fff;
}

.footer__col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__contact-col .footer__socials-inline { margin: 12px 0 20px; }

.subscribe-form {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.subscribe-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: .8rem;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,.35); }
.subscribe-form input:focus { border-color: var(--orange); }
.subscribe-form .btn-primary { padding: 9px 16px; font-size: .85rem; }
.sub-note { font-size: .72rem; color: rgba(255,255,255,.35); }

.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  transition: color .2s;
}
.footer-fb-link:hover { color: var(--orange); }

.footer-phone {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  transition: background .2s, color .2s;
  width: fit-content;
}
.footer-map-btn:hover { background: rgba(255,107,43,.25); color: #fff; }

/* Make contact tel/email links styled */
.footer__col a[href^="tel"],
.footer__col a[href^="mailto"] {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__col a[href^="tel"]:hover,
.footer__col a[href^="mailto"]:hover { color: var(--orange); }
.footer-fb-icon {
  width: 26px; height: 26px;
  background: #1877F2;
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer__bottom {
  padding: 18px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer__bottom-links a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .about__content-side { padding: 48px 36px; }
  .menu__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__actions .search-box { display: none; }
  .hamburger { display: flex; }

  .topbar__address-text { font-size: .66rem; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--topbar-h) + var(--navbar-h)); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__content { align-items: center; }
  .hero__sub { text-align: center; }
  .hero__visual { order: -1; }
  .hero__illus-wrap { width: 320px; }
  .card-top, .card-bottom { display: none; }

  .about__content-side { padding: 52px 28px; }

  .menu__layout { grid-template-columns: 1fr; }
  .menu__tabs { flex-direction: row; flex-wrap: wrap; }
  .menu__cards { grid-template-columns: repeat(2, 1fr); }

  .testimonials__inner { grid-template-columns: 1fr; }
  .testi-person { height: 320px; }

  .promo-includes li { font-size: .85rem; }

  .getstarted__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .menu__cards { grid-template-columns: 1fr; }
  .biahoi-perks { grid-template-columns: 1fr 1fr; }
  .hero__cta { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   REFERENCE-STYLE DESIGN UPGRADE
   Bold typography · Wave dividers · Organic cards · Scatter dots
   ============================================================ */

/* --- Typography: bold chunky headlines --- */
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-sub { font-size: 1rem; line-height: 1.7; }
.hero__sub    { font-size: 1.05rem; }

/* --- Scatter dots (used across sections) --- */
.sdot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sdot-f  { background: var(--orange); }
.sdot-o  { border: 2.5px solid var(--orange); background: transparent; }
.sdot-w  { background: rgba(255,255,255,.30); }
.sdot-wo { border: 2.5px solid rgba(255,255,255,.45); background: transparent; }
.sdot-s  { width:  8px; height:  8px; }
.sdot-m  { width: 14px; height: 14px; }
.sdot-l  { width: 24px; height: 24px; }

/* --- Wave dividers --- */
.wave-divider {
  display: block;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* --- About / Bia Hơi: dark base, no padding override needed --- */
.about { background: #1A0D00; }

/* --- Menu: orange background with all child overrides --- */
.menu              { background: var(--orange); padding-top: 80px; padding-bottom: 100px; }
.menu .section-label { background: rgba(255,255,255,.22); color: #fff; }
.menu .section-title { color: #fff; }

.menu__nav-arrows .arrow-btn {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.menu__nav-arrows .arrow-btn:hover   { background: rgba(255,255,255,.45); color: var(--orange); }
.menu__nav-arrows .arrow-btn:disabled { background: rgba(255,255,255,.10); color: rgba(255,255,255,.35); }

.menu__tabs .tab-btn {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}
.menu__tabs .tab-btn:hover {
  background: rgba(255,255,255,.28);
  color: #fff;
}
.menu__tabs .tab-btn.active {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Cards on orange: stay white, alternate organic shapes */
.menu-card                    { background: var(--white); }
#menuCards .menu-card:nth-child(1) { border-radius: 32px 6px 32px 6px; }
#menuCards .menu-card:nth-child(2) { border-radius: 6px 32px 6px 32px; }
#menuCards .menu-card:nth-child(3) { border-radius: 32px 6px 32px 6px; }

/* --- Testimonials: warm cream --- */
.testimonials { background: var(--cream); }

/* Testimonial quote card: organic shape */
.testi-quote {
  background: var(--white);
  border-radius: 24px 6px 24px 6px;
  padding: 20px 22px;
  border-left: none;
  box-shadow: var(--shadow);
  font-style: normal;
}

/* --- Promo banner: keep dark, remove top gap --- */
.promo-banner { margin-top: 0; }

/* --- Buttons: slightly chunkier --- */
.btn-primary {
  padding: 14px 30px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn-sm { padding: 9px 20px; font-size: .8rem; }

/* --- Section label: slightly larger --- */
.section-label { font-size: .78rem; }

/* ============================================================
   CTA SECTION  (replaces old getstarted)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #FF6B2B 0%, #E84A0A 45%, #C82C06 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative background blobs */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cb1 { width: 400px; height: 400px; top: -120px; left: -100px; }
.cb2 { width: 300px; height: 300px; bottom: -80px; right: -60px; }
.cb3 { width: 180px; height: 180px; top: 40%; left: 55%; }

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Badge pill */
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
}

/* Big headline */
.cta-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}
.cta-title__accent {
  color: #FFE066;
  display: block;
}

/* Sub-text */
.cta-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}
.cta-sub strong { color: #fff; font-weight: 700; }

/* Action buttons row */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* --- Primary: phone call button --- */
.cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: var(--orange);
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}
.cta-call-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.cta-call-btn__icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.cta-call-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.cta-call-btn__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cta-call-btn__number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .02em;
  line-height: 1;
}

/* --- Secondary: menu button --- */
.cta-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.38);
  transition: background .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.cta-menu-btn:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

/* --- Opening hours card --- */
.cta-hours {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 24px 32px;
  width: 100%;
  max-width: 420px;
}
.cta-hours__heading {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  text-align: center;
}
.cta-hours__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  transition: background .15s;
}
.hours-row + .hours-row {
  border-top: 1px solid rgba(255,255,255,.10);
}
.hours-day {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
}
.hours-time {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.90);
  letter-spacing: .02em;
}
/* ---- Today row: Fire & Beering theme ---- */
.hours-row--today {
  background: rgba(255,255,255,.22);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 11px 14px;
  animation: beerPulse 2s ease-in-out infinite;
}

/* Flickering flame overlay */
.hours-row--today::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,80,0,.18) 0%,
    rgba(255,200,0,.22) 50%,
    rgba(255,80,0,.18) 100%);
  background-size: 200% 100%;
  animation: fireSlide 2s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}

@keyframes fireSlide {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes beerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,220,0,.30); }
  50%       { box-shadow: 0 0 0 6px rgba(255,220,0,.00); }
}

.hours-row--today .hours-day {
  color: #fff;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.hours-row--today .hours-time {
  color: #FFE066;
  font-weight: 900;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(255,200,0,.6);
  position: relative;
  z-index: 1;
}

/* "Nhậu thôi! 🍺" badge */
.today-badge {
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: #FFE066;
  font-size: .62rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,220,0,.35);
  letter-spacing: .04em;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Floating beer/fire icons */
.hours-float {
  position: absolute;
  top: 6px;
  left: var(--x, 70%);
  font-size: .85rem;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: floatUp 2.4s ease-in-out var(--delay, 0s) infinite;
}
@keyframes floatUp {
  0%   { opacity: 0;   transform: translateY(0)    scale(.8); }
  20%  { opacity: .85; transform: translateY(-4px)  scale(1);  }
  80%  { opacity: .6;  transform: translateY(-18px) scale(.9); }
  100% { opacity: 0;   transform: translateY(-26px) scale(.7); }
}

/* Remove top border on adjacent rows so today row stands out cleanly */
.hours-row--today + .hours-row,
.hours-row:has(+ .hours-row--today) {
  border-top-color: transparent;
}

/* === Modern mega-time + pill redesign === */
.cta-hours__mega {
  text-align: center;
  margin: 12px 0 16px;
}
.hours-mega-time {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.hmtime-from, .hmtime-to {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.hmtime-from sup {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFE066;
  vertical-align: super;
  letter-spacing: 0;
}
.hmtime-to sup {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  vertical-align: super;
  letter-spacing: 0;
}
.hmtime-dash {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.40);
  margin: 0 2px;
}
.hours-mega-badge {
  font-size: .74rem;
  font-weight: 700;
  color: rgba(255,255,255,.60);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Day pills row */
.cta-hours__pills {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hpill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.11);
  border: 1.5px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.60);
  letter-spacing: .01em;
  transition: background .2s, transform .2s;
  cursor: default;
  user-select: none;
}
.hpill--today {
  background: #FFE066;
  border-color: #FFE066;
  color: #1A1A1A;
  transform: scale(1.18);
  box-shadow: 0 0 18px rgba(255,220,80,.50);
  animation: pillPop 2s ease-in-out infinite;
}
@keyframes pillPop {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,220,80,.55); }
  50%       { box-shadow: 0 0 0 9px rgba(255,220,80,.00); }
}

/* Funny day quip */
.cta-hours__quip {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  font-style: italic;
  min-height: 1.2em;
  padding: 0 8px;
}

/* Info strip */
.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  margin-top: 4px;
}
.cta-info a { color: rgba(255,255,255,.85); transition: color .2s; }
.cta-info a:hover { color: #fff; }
.cta-info__sep { opacity: .35; }

/* Mobile */
@media (max-width: 600px) {
  .cta-call-btn { padding: 16px 24px; gap: 12px; }
  .cta-call-btn__number { font-size: 1.4rem; }
  .cta-call-btn__icon { width: 42px; height: 42px; }
  .cta-menu-btn { padding: 16px 24px; font-size: .95rem; }
  .cta-info { font-size: .78rem; gap: 6px; }
}

/* ============================================================
   REVIEWS SECTION (replaces old testimonials)
   ============================================================ */
.reviews {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

/* --- Header --- */
.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews__header .section-title { margin-bottom: 16px; }

.reviews__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .88rem;
}
.rrb__stars { color: #FBBC05; font-size: 1rem; letter-spacing: .05em; }
.rrb__score { font-weight: 800; color: var(--dark); font-size: 1rem; }
.rrb__sep   { color: var(--border); }
.rrb__count { color: var(--gray); font-weight: 500; }

/* --- Cards grid --- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}

.rc__top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc__stars { color: #FBBC05; font-size: .95rem; letter-spacing: .04em; }

.rc__text {
  font-size: .92rem;
  color: #444;
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.rc__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}
.rc__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rc__name { font-size: .85rem; font-weight: 700; color: var(--dark); }
.rc__meta { font-size: .72rem; color: var(--gray); margin-top: 1px; }

/* --- Elfsight widget wrapper --- */
.reviews__elfsight {
  margin-bottom: 40px;
  min-height: 200px;
}

/* --- Map embed --- */
.reviews__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  margin-bottom: 28px;
}

/* --- CTA --- */
.reviews__cta { text-align: center; }
.reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, box-shadow .2s;
  text-decoration: none;
}
.reviews__cta-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(255,107,43,.15);
}

/* Responsive */
@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__map iframe { height: 280px; }
}

/* Responsive wave fix */
@media (max-width: 768px) {
  .wave-divider { height: 48px; }
  .sdot-l { width: 16px; height: 16px; }
  .menu { padding-top: 52px; }
  .about__features .feature-card:hover { transform: none; }
}

/* ============================================================
   MENU SECTION — Beer & Cheer Dark Tavern Style
   ============================================================ */

.menu {
  background: #0A0600 !important;
  background-image:
    radial-gradient(ellipse at 50% 0%,  rgba(200,110,10,.20) 0%, transparent 52%),
    radial-gradient(ellipse at 12% 85%, rgba(180,80,10,.08)  0%, transparent 42%),
    radial-gradient(ellipse at 88% 70%, rgba(200,120,20,.07) 0%, transparent 38%) !important;
  padding-top: 90px !important;
  padding-bottom: 110px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Amber crown glow at top */
.menu-bg-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 280px;
  background: radial-gradient(ellipse at 50% -10%, rgba(215,120,10,.28) 0%, transparent 65%);
  pointer-events: none;
}

/* === Heading block === */
.menu-heading {
  text-align: center;
  margin-bottom: 52px;
}
.menu-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,190,50,.12);
  border: 1px solid rgba(255,190,50,.24);
  color: rgba(255,200,80,.80);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 999px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.menu-title {
  font-family: 'Baloo 2', sans-serif !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-weight: 900 !important;
  color: #FFF0D0 !important;
  line-height: 1.18 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 2px 24px rgba(200,100,10,.35) !important;
}
.menu-title__sub {
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #F0A030;
  display: block;
  letter-spacing: .04em;
}
.menu-heading__rule {
  color: rgba(255,180,50,.38);
  font-size: .85rem;
  letter-spacing: .18em;
  user-select: none;
}

/* === Tab buttons: dark glass pill === */
.menu__tabs .tab-btn {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 11px 15px !important;
  border-radius: 12px !important;
  font-family: 'Baloo 2', 'Be Vietnam Pro', sans-serif !important;
  font-size: .87rem !important;
  font-weight: 700 !important;
  color: rgba(255,210,130,.68) !important;
  background: rgba(255,255,255,.055) !important;
  border: 1.5px solid rgba(255,190,50,.12) !important;
  text-align: left !important;
  width: 100% !important;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s !important;
  box-shadow: none !important;
}
.menu__tabs .tab-btn:hover {
  background: rgba(255,190,50,.13) !important;
  color: #FFD47A !important;
  border-color: rgba(255,190,50,.30) !important;
}
.menu__tabs .tab-btn.active {
  background: linear-gradient(135deg, #B86A08, #D98D20) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 22px rgba(170,90,8,.45) !important;
}

/* === Menu board: dark glass tavern === */
.trad-menu-paper {
  position: relative !important;
  background: rgba(255,255,255,.042) !important;
  border-radius: 20px !important;
  padding: 40px 40px 40px 64px !important;
  min-height: 380px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,190,50,.13) !important;
  box-shadow:
    inset 0 0 80px rgba(180,90,0,.07),
    0 28px 70px rgba(0,0,0,.55) !important;
}

/* Golden amber left binding */
.trad-menu-paper::before {
  content: '' !important;
  position: absolute !important;
  left: 28px !important;
  top: 22px !important;
  bottom: 22px !important;
  border-left: 3px dashed rgba(255,175,45,.42) !important;
}

/* Category title */
.trad-cat-title {
  font-family: 'Baloo 2', sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 900 !important;
  color: #FFD060 !important;
  text-align: center !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
  margin: 0 0 28px !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 14px rgba(255,175,45,.28) !important;
}

/* Category subtitle */
.trad-cat-subtitle {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: .97rem !important;
  font-weight: 500 !important;
  color: rgba(255,210,130,.68) !important;
  text-align: center !important;
  margin: -20px 0 26px !important;
  font-style: italic !important;
}

/* Sub-group divider titles */
.trad-group-title {
  font-family: 'Baloo 2', sans-serif !important;
  font-size: clamp(1rem, 2vw, 1.22rem) !important;
  font-weight: 800 !important;
  color: #F0A030 !important;
  text-align: center !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin: 32px 0 14px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(255,175,45,.18) !important;
}
.trad-group-title:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

/* Item row */
.trad-item {
  display: flex !important;
  align-items: baseline !important;
  margin-bottom: 18px !important;
  gap: 0 !important;
}
.trad-item:last-child { margin-bottom: 0 !important; }
.trad-hot { color: #FF8060 !important; font-size: .82em !important; }

.trad-item__name {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: clamp(.96rem, 1.7vw, 1.06rem) !important;
  font-weight: 500 !important;
  color: rgba(255,235,190,.86) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  letter-spacing: .012em !important;
}

/* Dotted leader — amber, subtle */
.trad-item__dots {
  flex: 1 !important;
  min-width: 24px !important;
  height: 1px !important;
  border-bottom: 2px dotted rgba(255,175,50,.25) !important;
  margin: 0 14px 4px !important;
  align-self: flex-end !important;
}

.trad-item__price {
  font-family: 'Baloo 2', sans-serif !important;
  font-size: clamp(.96rem, 1.7vw, 1.06rem) !important;
  font-weight: 800 !important;
  color: #FFD060 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  min-width: 42px !important;
  text-align: right !important;
  letter-spacing: .02em !important;
}

/* Responsive */
@media (max-width: 768px) {
  .trad-menu-paper { padding: 26px 22px 26px 46px !important; }
  .trad-menu-paper::before { left: 18px !important; }
  .trad-item__name { font-size: .92rem !important; white-space: normal !important; }
  .trad-item__price { font-size: .92rem !important; }
  .trad-cat-title { font-size: 1.4rem !important; }
  .menu-title { font-size: 1.8rem !important; }
  .menu-title__sub { font-size: 1.15rem !important; }
}

/* ============================================================
   MOBILE IMPROVEMENTS — comprehensive pass
   ============================================================ */

/* ── Navbar ── */
@media (max-width: 768px) {
  .navbar__address-block { display: none; }
  .gmap-btn              { display: none; }
  .navbar__inner         { gap: 10px; justify-content: space-between; }
  .navbar__cta-btn       { padding: 8px 16px; font-size: .76rem; gap: 6px; }
}
@media (max-width: 400px) {
  .navbar__cta-btn svg   { display: none; }
}

/* ── Hero ── */
@media (max-width: 768px) {
  .hero { padding-bottom: 60px; }

  /* Beer glass: shrink, center, fade behind content */
  .hero__beer-scene {
    justify-content: center;
    padding-right: 0;
    opacity: 0.18;
    align-items: flex-end;
  }
  .hero__beer-glass { height: 75%; max-height: 480px; }

  .hero__inner     { gap: 24px; }
  .hero__title     { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero__sub       { font-size: .92rem; }
  .hero__illus-wrap { width: 260px; margin: 0 auto; }
  .hero__social-proof { justify-content: center; }
  .hero__stats     { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hstat__num      { font-size: 1.5rem; }
  .hstat__sep      { display: none; }
  .avatars img     { width: 30px; height: 30px; }
}
@media (max-width: 480px) {
  .hero__visual  { display: none; }
  .hero__title   { font-size: clamp(1.9rem, 10vw, 2.4rem); }
  .hero__sub     { font-size: .88rem; }
  .btn-primary   { padding: 14px 24px; font-size: .9rem; }
  .hero__stats   { gap: 16px; }
  .hstat__num    { font-size: 1.35rem; }
  .hstat__lbl    { font-size: .64rem; }
  .hero__cta     { justify-content: center; }
}

/* ── Bia Hơi / About ── */
@media (max-width: 768px) {
  /* Show image as a banner above the content */
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
  }
  .about__image-side {
    display: block;
    height: 260px;
    overflow: hidden;
  }
  .about__img {
    min-height: unset;
    height: 260px;
    object-position: center 25%;
  }
  .about__img-fog {
    background: linear-gradient(to bottom, transparent 50%, rgba(180,90,10,.55) 100%);
  }
  .about__content-side { padding: 40px 24px 48px; }
  .biahoi-chip   { font-size: .68rem; padding: 5px 14px; }
  .bh-main       { font-size: 2.6rem !important; }
  .biahoi-perks  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .bpb-num strong { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .about__image-side { height: 220px; }
  .about__img        { height: 220px; }
  .about { grid-template-rows: 220px auto; }
  .about__content-side { padding: 32px 18px 44px; }
  .bh-main       { font-size: 2.2rem !important; }
  .biahoi-shout  { font-size: .95rem; }
  .biahoi-price-badge { padding: 10px 22px; }
  .bhperk        { font-size: .74rem; padding: 8px 10px; }
}

/* ── Menu ── */
@media (max-width: 768px) {
  .menu { padding-top: 60px !important; padding-bottom: 72px !important; }
  .menu-heading  { margin-bottom: 28px; }
  .menu-heading__eyebrow { font-size: .66rem; padding: 4px 14px; }

  /* Tabs: sticky horizontal scrollable bar */
  .menu__tabs {
    position: sticky !important;
    top: var(--navbar-h) !important;
    z-index: 50 !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 7px !important;
    background: rgba(10, 6, 0, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255,190,50,.15) !important;
    padding: 12px 24px !important;
    margin: 0 -24px !important;
    margin-bottom: 20px !important;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tabs .tab-btn {
    width: auto !important;
    flex-shrink: 0 !important;
    padding: 9px 14px !important;
    font-size: .80rem !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
  }
  .menu__layout { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 400px) {
  .menu__tabs .tab-btn { padding: 7px 10px !important; font-size: .73rem !important; }
}

/* ── Promo Banner ── */
@media (max-width: 768px) {
  .promo-banner__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .promo-banner__content { padding: 48px 24px 32px; }
  .promo-banner__content h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .promo-save-tag { font-size: .72rem; padding: 6px 14px; }

  /* Show food image below content on mobile */
  .promo-banner__image {
    display: flex;
    justify-content: center;
    padding: 0 24px 48px;
  }
  .promo-img-frame { width: 100%; max-width: 420px; }
  .promo-img {
    width: 100%;
    height: 240px;
    border-radius: 20px;
  }
  .promo-img-overlay { border-radius: 20px; }
}
@media (max-width: 480px) {
  .promo-banner__content { padding: 36px 18px 24px; }
  .promo-banner__content h2 { font-size: 1.7rem; }
  .promo-includes li { font-size: .80rem; }
  .price-now { font-size: 1.4rem; }
  .promo-banner__image { padding: 0 18px 40px; }
  .promo-img { height: 200px; }
}

/* ── CTA / Opening Hours ── */
@media (max-width: 768px) {
  .cta-section { padding: 72px 0 60px; }
  .cta-title   { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-sub     { font-size: .9rem; }
  .cta-actions { gap: 14px; }
  .cta-call-btn { padding: 16px 28px; gap: 12px; }
  .cta-call-btn__number { font-size: 1.5rem; }
  .cta-hours   { padding: 20px 18px; }
  .hmtime-from, .hmtime-to { font-size: 3rem; }
  .hmtime-dash { font-size: 1.8rem; }
  .hours-mega-badge { font-size: .68rem; }
  .cta-hours__pills { gap: 5px; }
  .hpill { width: 36px; height: 36px; font-size: .72rem; }
}
@media (max-width: 480px) {
  .cta-call-btn { width: 100%; justify-content: center; }
  .cta-title    { font-size: 1.8rem; }
  .hmtime-from, .hmtime-to { font-size: 2.6rem; }
  .cta-hours__quip { font-size: .76rem; }
}

/* ── Reviews ── */
@media (max-width: 768px) {
  .reviews { padding: 64px 0; }
  .reviews__header { margin-bottom: 32px; }
  .reviews__map iframe { height: 260px !important; }
  .reviews__cta-btn { font-size: .82rem; padding: 11px 20px; }
}
@media (max-width: 480px) {
  .reviews { padding: 48px 0; }
  .reviews__map iframe { height: 220px !important; }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer { padding: 52px 0 0; }
  .footer__inner { gap: 28px; }
  .footer__col h5 { font-size: .85rem; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; gap: 22px; }
  .footer__bottom .container {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
}
