/* ============================================================
   VIET LAB — Design System & Styles
   Modern · Minimalist · Luxury · Golden Bánh Mì Palette
   ============================================================ */

/* Fonts loaded via <link> in HTML for non-blocking render */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --gold-deep:    #8B6914;
  --gold-warm:    #C8901A;
  --gold:         #D4A017;
  --gold-bright:  #E8B520;
  --gold-light:   #F0C040;
  --gold-pale:    #FFF3C4;
  --gold-subtle:  rgba(212,160,23,0.08);
  --gold-border:  rgba(212,160,23,0.18);
  --cream:        #FEFBF3;
  --cream-dark:   #F7F0E4;
  --charcoal:     #1C1A16;
  --charcoal-soft:#2A2820;
  --taupe:        #7A6B57;
  --taupe-light:  #A69880;
  --white:        #FFFFFF;
  --text-main:    #1C1A16;
  --text-muted:   #7A6B57;
  --text-faint:   #A69880;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'Space Grotesk', monospace;

  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;

  --shadow-sm:  0 2px 12px rgba(28,26,22,0.06);
  --shadow-md:  0 8px 32px rgba(28,26,22,0.10);
  --shadow-lg:  0 20px 60px rgba(28,26,22,0.14);
  --shadow-gold:0 8px 32px rgba(212,160,23,0.18);

  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

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

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Custom cursor ───────────────────────────────────────── */
#cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99998; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99997; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-smooth), height 0.25s var(--ease-smooth), opacity 0.3s;
}
#cursor-ring.hover { width: 44px; height: 44px; border-color: var(--gold-bright); opacity: 0.6; }
@media (max-width: 1023px) { #cursor-dot, #cursor-ring { display: none; } }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .container { padding: 0 1.1rem; } }
@media (max-width: 480px) { .container { padding: 0 1rem; } }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.25s; }
/* Fallback: if JS fails to run IntersectionObserver, show everything */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.vl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(254,251,243,0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease-smooth);
}
.vl-header.scrolled {
  border-bottom-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex; align-items: center; gap: 2rem; width: 100%;
}
.nav-logo-wrap { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo { height: 42px; width: auto; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}
.nav-brand span { color: var(--gold-warm); }

.navbar {
  display: flex; align-items: center; gap: 0.25rem; margin-left: auto;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--taupe);
  padding: 0.45rem 0.85rem; border-radius: var(--radius-xl);
  transition: all 0.2s var(--ease-smooth);
}
.nav-link:hover, .nav-link.active {
  color: var(--charcoal);
  background: var(--gold-subtle);
}
.nav-link.active { color: var(--gold-warm); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.btn-order {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius-xl); border: 1.5px solid currentColor;
  transition: all 0.22s var(--ease-smooth);
}
.btn-order.doordash {
  color: var(--charcoal); border-color: var(--charcoal);
  background: transparent;
}
.btn-order.doordash:hover {
  background: var(--charcoal); color: var(--cream);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-order.ubereats {
  background: var(--gold); color: var(--charcoal); border-color: var(--gold);
}
.btn-order.ubereats:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  transform: translateY(-1px); box-shadow: var(--shadow-gold);
}

/* Mobile menu toggle */
#mobile-menu-toggle {
  display: none;
  background: none; border: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 4px;
}
#mobile-menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile nav */
#mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(254,251,243,0.98); backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-smooth);
}
#mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400; color: var(--charcoal);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold-warm); }
.mobile-order-btns { display: flex; gap: 0.75rem; margin-top: 1rem; }
#mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
}

@media (max-width: 900px) {
  .navbar { display: none; }
  .nav-actions .btn-order { display: none; }
  #mobile-menu-toggle { display: flex; }
  #mobile-overlay.open { display: block; }
}
@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .nav-logo { height: 34px; }
  .nav-brand { font-size: 1.1rem; }
  .mobile-nav-link { font-size: 1.6rem; }
  .mobile-order-btns { flex-direction: column; width: 100%; padding: 0 2rem; }
  .mobile-order-btns .btn-order { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION — Full Screen Cinematic
══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* iOS Safari 15.4+ — dynamic viewport */
  min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal); /* show charcoal while image loads */
}

/* Full-bleed background slideshow */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}

/* Each slide stacked on top of each other */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* The image inside each slide — Ken Burns zoom */
.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  display: block;
  transform: scale(1.08);
  transition: transform 7s ease-in-out;
  will-change: transform;
}
/* Active slide zooms in smoothly */
.hero-slide.active .hero-slide-img {
  transform: scale(1.0);
}
/* Previous slide (leaving) zooms out */
.hero-slide.zoom-out .hero-slide-img {
  transform: scale(1.08);
  transition: transform 1.8s ease-in-out;
}

/* Gradient overlays */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.20);
  z-index: 1;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top,
      rgba(16,13,9,0.96) 0%,
      rgba(16,13,9,0.70) 30%,
      rgba(16,13,9,0.18) 65%,
      rgba(16,13,9,0.10) 100%);
}

/* Content positioned at bottom */
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 3rem;
}

.hero-text { max-width: 56ch; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500; line-height: 1.1;
  color: var(--cream); letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
}

.hero-desc {
  font-size: 1rem; line-height: 1.75;
  color: rgba(254,251,243,0.72);
  max-width: 46ch; margin-bottom: 2rem;
}

.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-xl); border: none;
  transition: all 0.25s var(--ease-smooth);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent; color: var(--cream);
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(254,251,243,0.35);
  transition: all 0.25s var(--ease-smooth);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.15);
  transform: translateY(-2px);
}

/* Right side — info cards */
.hero-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
}
.hero-stat-card {
  background: rgba(16,13,9,0.65);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  min-width: 220px;
  transition: border-color 0.25s, transform 0.25s;
}
.hero-stat-card:hover {
  border-color: rgba(212,160,23,0.5);
  transform: translateX(-4px);
}
.hero-stat-icon {
  font-size: 1.5rem; flex-shrink: 0;
}
.hero-stat-text h5 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold-pale); line-height: 1.2;
}
.hero-stat-text span {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--taupe-light);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0.5; animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* Deco corner line */
.hero-corner-deco {
  position: absolute; top: calc(var(--header-h) + 2rem); right: 2rem;
  z-index: 2; display: flex; align-items: center; gap: 0.75rem;
  opacity: 0.45;
}
.hero-corner-deco span {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream);
}
.corner-line { width: 40px; height: 1px; background: var(--gold); }

/* ── Hero tablet ── */
@media (max-width: 900px) {
  .hero-section { align-items: flex-end; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 1.25rem 4.5rem;
    gap: 1.25rem;
  }
  .hero-side { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { min-width: 0; flex: 1; }
  .hero-corner-deco { display: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-scroll-indicator { display: none; }
}
/* ── Hero phone ── */
@media (max-width: 560px) {
  .hero-section { min-height: 100svh; }
  .hero-content { padding: 0 1rem 3.5rem; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-desc { display: none; }
  .hero-side { display: none; }
  .hero-ctas { gap: 0.6rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.4rem; font-size: 0.72rem; }
  .hero-eyebrow { font-size: 0.62rem; }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE BAND
══════════════════════════════════════════════════════════ */
.marquee-band {
  background: var(--charcoal);
  padding: 1rem 0; overflow: hidden;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-pale); white-space: nowrap;
}
.marquee-dot { color: var(--gold); font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════════════════ */
.section {
  padding: 7rem 0;
}
@media (max-width: 768px) { .section { padding: 5rem 0; } }
@media (max-width: 480px) { .section { padding: 4rem 0; } }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 20px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500; line-height: 1.18;
  color: var(--charcoal); letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem; line-height: 1.75; color: var(--taupe); max-width: 56ch;
}
.section-head { margin-bottom: 3rem; }

/* ══════════════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════════════ */
.menu-section { padding: 7rem 0; background: var(--cream); }
@media (max-width: 768px) { .menu-section { padding: 5rem 0; } }
@media (max-width: 480px) { .menu-section { padding: 3.5rem 0; } }

.menu-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0;
}
.menu-tab {
  position: relative;
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--taupe);
  background: none; border: none;
  padding: 0.75rem 1.25rem; border-radius: 0;
  cursor: pointer; transition: color 0.2s;
}
.menu-tab::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--gold); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform 0.25s var(--ease-spring);
}
.menu-tab:hover { color: var(--charcoal); }
.menu-tab.active { color: var(--gold-warm); }
.menu-tab.active::after { transform: scaleX(1); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Menu card */
.menu-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth);
  cursor: default;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,160,23,0.35);
}
.menu-card__img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.menu-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.menu-card:hover .menu-card__img { transform: scale(1.05); }

/* ── Video hover overlay ─────────────────────────────────── */
.menu-card__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.menu-card--has-video:hover .menu-card__video { opacity: 1; }
.menu-card--has-video:hover .menu-card__img   { transform: scale(1.0); }

/* Play badge — shown before hover */
.menu-card__play-badge {
  position: absolute; bottom: 0.65rem; right: 0.65rem; z-index: 2;
  display: flex; align-items: center; gap: 0.35rem;
  background: rgba(16,13,9,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: var(--radius-xl);
  padding: 0.28rem 0.65rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-pale);
  transition: opacity 0.3s, transform 0.3s;
}
.menu-card__play-badge svg {
  width: 10px; height: 10px; fill: var(--gold); flex-shrink: 0;
}
.menu-card--has-video:hover .menu-card__play-badge {
  opacity: 0; transform: scale(0.85);
}
/* Mobile touch active state mirrors hover */
.menu-card--has-video.touch-hover .menu-card__video  { opacity: 1; }
.menu-card--has-video.touch-hover .menu-card__img    { transform: scale(1.0); }
.menu-card--has-video.touch-hover .menu-card__play-badge { opacity: 0; transform: scale(0.85); }
.menu-card__tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(254,251,243,0.95);
  border: 1px solid var(--gold-border);
  color: var(--gold-warm);
  font-family: var(--font-mono); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
}
.menu-card__body { padding: 1.25rem; }
.menu-card__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.75rem; margin-bottom: 0.65rem;
}
.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.3; flex: 1;
}
.menu-card__price {
  font-family: var(--font-mono); font-size: 1rem;
  font-weight: 600; color: var(--gold-warm); flex-shrink: 0;
}
.menu-card__desc {
  font-size: 0.88rem; line-height: 1.6; color: var(--taupe);
}

/* ── Menu tablet ── */
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .section-head { margin-bottom: 2rem; }
}
/* ── Menu phone ── */
@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .menu-tabs { flex-wrap: wrap; gap: 0; overflow-x: auto; }
  .menu-tab { font-size: 0.68rem; padding: 0.6rem 0.75rem; white-space: nowrap; }
  .menu-card__name { font-size: 1rem; }
  .menu-card__body { padding: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   MIXER LAB SECTION
══════════════════════════════════════════════════════════ */
.mixer-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.mixer-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mixer-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: start;
}
.mixer-section .section-eyebrow { color: var(--gold); }
.mixer-section .section-title   { color: var(--gold-pale); }
.mixer-section .section-desc    { color: var(--taupe-light); margin-bottom: 2.5rem; }

/* Step groups */
.mixer-step {
  margin-bottom: 2rem;
}
.mixer-step-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.mixer-step-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(212,160,23,0.2);
}

/* Chips */
.mixer-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.mixer-chip {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  --chip-color: #888;
}
.mixer-chip:hover {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-1px);
}
.mixer-chip.active {
  background: rgba(212,160,23,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.chip-emoji { font-size: 1rem; }
.chip-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.04em;
  color: rgba(245,240,232,0.85);
}
.mixer-chip.active .chip-label { color: var(--gold-pale); }

/* Level buttons (sweetness / ice) */
.mixer-levels { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.mixer-level-btn {
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  font-family: var(--font-mono); font-size: 0.68rem;
  font-weight: 500; color: rgba(245,240,232,0.7);
  cursor: pointer; transition: all 0.2s;
}
.mixer-level-btn:hover { border-color: rgba(212,160,23,0.4); }
.mixer-level-btn.active {
  background: rgba(212,160,23,0.15); border-color: var(--gold); color: var(--gold-pale);
}

/* Mixer actions */
.mixer-actions { display: flex; gap: 0.75rem; margin-top: 2rem; }
.btn-brew {
  padding: 0.85rem 2rem;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius-xl);
  transition: all 0.25s var(--ease-spring);
}
.btn-brew:hover:not(:disabled) {
  background: var(--gold-bright); transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold);
}
.btn-brew:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-reset {
  padding: 0.85rem 1.5rem;
  background: transparent; color: var(--taupe-light);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl);
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-reset:hover { border-color: rgba(255,255,255,0.3); color: var(--gold-pale); }

/* Mixer message */
.mixer-message {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--taupe-light); margin-top: 0.75rem;
  opacity: 0; transform: translateY(4px);
  transition: all 0.25s ease;
}
.mixer-message.show { opacity: 1; transform: translateY(0); }
.mixer-message.warn { color: var(--gold); }

/* ── Cup Visualizer ─────────────────────────────────────── */
.mixer-visualizer { position: sticky; top: 7rem; }

.vl-cup-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.vl-cup {
  position: relative;
  width: 160px; height: 240px;
  margin: 0 auto;
}
.vl-cup.shaking { animation: cupShake 0.8s var(--ease-spring); }
@keyframes cupShake {
  0%,100% { transform: rotate(0deg); }
  15%   { transform: rotate(-8deg) scale(1.04); }
  30%   { transform: rotate(8deg) scale(1.04); }
  45%   { transform: rotate(-6deg); }
  60%   { transform: rotate(6deg); }
  75%   { transform: rotate(-3deg); }
  90%   { transform: rotate(3deg); }
}

/* Cup SVG-like CSS */
.cup-body {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 210px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(212,160,23,0.25);
  border-radius: 8px 8px 24px 24px;
  overflow: hidden;
  clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}
.cup-liquid {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0%;
  transition: height 0.6s var(--ease-smooth), background 0.6s ease, opacity 0.4s;
  opacity: 0;
}
.cup-liquid::before {
  content: '';
  position: absolute; top: 0; left: -20%; right: -20%; height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: liquidWave 2s ease-in-out infinite;
}
@keyframes liquidWave {
  0%,100% { transform: scaleX(1) translateY(-3px); }
  50%      { transform: scaleX(1.05) translateY(0); }
}
.cup-pearls { position: absolute; bottom: 0; left: 0; right: 0; top: 0; }
.cup-pearl {
  position: absolute; border-radius: 50%;
  animation: pearlFloat 1.5s ease-in-out infinite;
}
@keyframes pearlFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.cup-ice-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpolygon points='10,5 20,15 5,20 15,30 0,35 10,45' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") repeat;
  opacity: 0;
  transition: opacity 0.4s;
}
.cup-ice-overlay.show { opacity: 1; }

/* Cup lid */
.cup-lid {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 20px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.cup-lid::after {
  content: '';
  width: 12px; height: 8px;
  background: rgba(212,160,23,0.4);
  border-radius: 2px;
}

/* Straw */
.cup-straw {
  position: absolute; top: -60px; left: 55%;
  width: 6px; height: 80px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-warm) 100%);
  border-radius: 3px;
  transform: rotate(4deg);
}

/* Cup label */
.cup-label-wrap { text-align: center; }
#cup-label {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; font-style: italic;
  color: var(--gold-pale); opacity: 0.8;
  min-height: 1.5em;
}

/* Brew result */
#brew-result {
  width: 100%; max-width: 340px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s var(--ease-smooth);
  pointer-events: none;
}
#brew-result.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.brew-result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.brew-result-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.brew-result-name {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 500; font-style: italic;
  color: var(--gold-pale); margin-bottom: 1rem;
}
.brew-result-details { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.brew-detail {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.72rem;
  padding: 0.35rem 0; border-bottom: 1px solid rgba(212,160,23,0.1);
}
.brew-detail span { color: var(--taupe-light); letter-spacing: 0.06em; text-transform: uppercase; }
.brew-detail strong { color: var(--gold-pale); }
.brew-result-note {
  font-size: 0.82rem; color: var(--taupe-light); line-height: 1.6;
  font-style: italic;
}

/* ── Mixer tablet ── */
@media (max-width: 1024px) {
  .mixer-grid { grid-template-columns: 1fr; }
  .mixer-visualizer { position: static; display: flex; flex-direction: column; align-items: center; }
  .vl-cup-wrap { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 2rem; }
  #brew-result { max-width: 100%; }
  .mixer-section { padding: 5rem 0; }
}
/* ── Mixer phone ── */
@media (max-width: 540px) {
  .mixer-section { padding: 3.5rem 0; }
  .mixer-step { margin-bottom: 1.5rem; }
  .mixer-chips { gap: 0.4rem; }
  .mixer-chip { padding: 0.4rem 0.7rem; }
  .chip-label { font-size: 0.66rem; }
  .mixer-actions { flex-direction: column; gap: 0.6rem; }
  .btn-brew, .btn-reset { width: 100%; justify-content: center; text-align: center; }
  .vl-cup { width: 120px; height: 180px; }
  .cup-body { width: 105px; height: 158px; }
  .cup-lid { width: 112px; }
  .cup-straw { height: 65px; top: -48px; }
  #brew-result { font-size: 0.9rem; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section { padding: 7rem 0; background: var(--cream-dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 3/4;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; }
.about-img-deco {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 120px; height: 120px;
  border: 1px solid var(--gold-border); border-radius: var(--radius-xl);
  z-index: -1;
}
.about-img-deco-2 {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 80px; height: 80px;
  background: var(--gold-subtle); border-radius: 50%;
  z-index: -1;
}

.about-content .section-head { margin-bottom: 2rem; }
.about-story { font-size: 1rem; line-height: 1.8; color: var(--taupe); margin-bottom: 1rem; }

/* Stats */
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--gold-border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--gold-warm); display: block; line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe);
}

/* ── About tablet ── */
@media (max-width: 900px) {
  .about-section { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-frame { max-width: 260px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
  .about-img-deco, .about-img-deco-2 { display: none; }
}
/* ── About phone ── */
@media (max-width: 480px) {
  .about-section { padding: 3.5rem 0; }
  .about-img-frame { max-width: 200px; }
  .about-stats { gap: 0.5rem; padding-top: 1.5rem; margin-top: 2rem; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.58rem; }
  .about-story { font-size: 0.9rem; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section { padding: 7rem 0; background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 3rem; align-items: start; margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block h4 {
  font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-warm); margin-bottom: 0.5rem;
}
.contact-block p { font-size: 0.95rem; color: var(--taupe); line-height: 1.6; }
.contact-block a { color: var(--taupe); transition: color 0.2s; }
.contact-block a:hover { color: var(--gold-warm); }
.contact-block .divider {
  width: 24px; height: 1px; background: var(--gold-border); margin: 1rem 0;
}
.btn-directions {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: var(--charcoal); color: var(--cream);
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: all 0.2s var(--ease-smooth);
}
.btn-directions:hover { background: var(--gold-warm); transform: translateY(-1px); }
.btn-directions svg { width: 13px; height: 13px; }

.contact-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-border);
  aspect-ratio: 16/9;
}
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Contact tablet ── */
@media (max-width: 900px) {
  .contact-section { padding: 5rem 0; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .contact-map-wrap { aspect-ratio: 16/9; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
/* ── Contact phone ── */
@media (max-width: 540px) {
  .contact-section { padding: 3.5rem 0; }
  .contact-info { grid-template-columns: 1fr; gap: 1rem; }
  .contact-map-wrap { aspect-ratio: 4/3; }
  .contact-block p { font-size: 0.88rem; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.vl-footer {
  background: var(--charcoal);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(212,160,23,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand img { height: 56px; margin-bottom: 0.75rem; }
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--taupe-light); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li { font-size: 0.88rem; color: var(--taupe-light); }
.footer-col a { color: var(--taupe-light); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-pale); }

.social-row { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.65rem;
  font-weight: 600; color: var(--taupe-light);
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(212,160,23,0.15); border-color: var(--gold);
  color: var(--gold-pale); transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.25);
}

/* ── Footer tablet ── */
@media (max-width: 900px) {
  .vl-footer { padding: 3rem 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
}
/* ── Footer phone ── */
@media (max-width: 540px) {
  .vl-footer { padding: 2.5rem 0 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
  .footer-brand img { height: 44px; }
  .footer-brand h3 { font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ══════════════════════════════════════════════════════════
   GLOBAL TOUCH / MOBILE POLISH
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Tighter section headings */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-desc  { font-size: 0.92rem; }
  .section-head  { margin-bottom: 2rem; }

  /* Disable hover lift on touch — avoids sticky hover states */
  .menu-card:hover { transform: none; box-shadow: none; }
  .menu-card:active { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

  /* Larger tap targets */
  .mixer-chip { min-height: 40px; }
  .mixer-level-btn { min-height: 38px; padding: 0.45rem 0.9rem; }
  .btn-primary, .btn-secondary { min-height: 48px; }

  /* Slightly reduce marquee speed on mobile */
  .marquee-track { animation-duration: 18s; }

  /* Inline editor toolbar — move slightly up to avoid iOS bottom bar */
  #vl-toolbar { bottom: 1.25rem; right: 1rem; }
}
