/* ============================================================
   OMOMO — Static Website Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-950: #120626;
  --purple-900: #1E0A3C;
  --purple-800: #2D1260;
  --purple-700: #431A8A;
  --purple-600: #5B2EA8;
  --purple-500: #7B4CC8;
  --purple-400: #9B6EE0;
  --purple-300: #BFA0EE;
  --purple-200: #DEC8F8;
  --purple-100: #EDE0F5;
  --purple-50:  #F7F2FF;
  --gold:       #FFD166;
  --gold-dark:  #E6A800;
  --white:      #FFFFFF;
  --text-dark:  #1A0A30;
  --text-mid:   #4A2878;
  --text-soft:  #7A5898;

  --font-en: 'Poppins', sans-serif;
  --font-zh: 'Noto Sans HK', 'Poppins', sans-serif;

  --nav-h: 68px;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 28px;

  --shadow-xs: 0 2px 8px rgba(91,46,168,.10);
  --shadow-sm: 0 4px 16px rgba(91,46,168,.15);
  --shadow-md: 0 8px 32px rgba(91,46,168,.20);
  --shadow-lg: 0 20px 64px rgba(91,46,168,.28);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-zh);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, .logo-text { font-family: var(--font-en); }
.lang-zh h1, .lang-zh h2, .lang-zh h3 { font-family: var(--font-zh); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(18, 6, 38, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
}

.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,.25);
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  text-shadow: 0 0 24px rgba(187,136,255,.6);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.80);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  font-family: var(--font-en);
}
.nav-links a:hover { color: var(--white); }

.nav-controls { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: 4px 14px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, border-color .2s;
  font-family: var(--font-en);
}
.lang-toggle:hover { background: rgba(255,255,255,.22); }
.lang-toggle span { transition: opacity .2s; }
.lang-toggle .active { opacity: 1; }
.lang-toggle span:not(.active):not(.lang-divider) { opacity: .45; }
.lang-divider { opacity: .3; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── MOBILE NAV OVERLAY ────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--purple-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .3s, transform .3s;
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open a:nth-child(1) { transition-delay: .1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: .17s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .24s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .31s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--purple-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(91,46,168,.55) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(155,110,224,.35) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(43,18,96,.9) 0%, transparent 60%),
              linear-gradient(145deg, #120626 0%, #2D1260 40%, #1A0936 100%);
}
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 28px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
}

/* Floating decorations */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
}
.deco-star { color: var(--purple-200); text-shadow: 0 0 12px rgba(190,160,240,.8); }
.deco-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); opacity: .55; }
.deco-ring { width: 56px; height: 56px; border: 2px solid rgba(190,160,240,.35); border-radius: 50%; }
.d1 { top: 18%; left: 14%; font-size: 1.6rem; animation: floatY 6s ease-in-out infinite; }
.d2 { top: 26%; right: 16%; font-size: 2.2rem; animation: floatY 7s ease-in-out infinite .8s; }
.d3 { bottom: 24%; left: 20%; font-size: 1.3rem; animation: floatY 5.5s ease-in-out infinite .4s; }
.d4 { top: 40%; left: 9%; animation: floatY 6.5s ease-in-out infinite .2s; }
.d5 { top: 60%; right: 12%; animation: floatY 5.8s ease-in-out infinite 1s; }
.d6 { bottom: 30%; right: 22%; animation: floatY 8s ease-in-out infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  padding: 7px 18px;
  color: var(--purple-200);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-en);
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}

/* Mascot centrepiece */
.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px 0 4px;
}
.mascot-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(155,110,224,.45) 0%, rgba(123,76,200,.12) 45%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: .65; }
  50% { transform: scale(1.14); opacity: 1; }
}
.mascot-video {
  display: block;
  width: 300px;
  max-width: 64vw;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 22px 50px rgba(50,20,100,.55));
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.05);
}

/* Wordmark + copy */
.hero-title {
  font-size: clamp(3.4rem, 11vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .01em;
  color: var(--white);
  background: linear-gradient(135deg, #fff 25%, #d4b6f8 60%, #a877ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 4px 0 14px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: var(--purple-300);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.hero-tagline {
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.6);
  margin-bottom: 34px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 99px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(91,46,168,.5);
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: var(--font-en);
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(91,46,168,.65);
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
}
.hero-cta::after { content: '→'; font-size: 1.1em; }
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 99px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-en);
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-cta-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); transform: translateY(-3px); }

/* (mascot animations removed — using video now) */

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .55;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-en);
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  margin-top: -6px;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION COMMON ─────────────────────────────────────── */
.section {
  padding: 96px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.7;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SIGNATURE SHOWCASE ──────────────────────────────────── */
.signature {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(123,76,200,.10) 0%, transparent 55%),
    var(--white);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.sig-card {
  background: var(--white);
  border: 1.5px solid var(--purple-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-300);
}
.sig-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--purple-100);
}
.sig-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.sig-card:hover .sig-photo img { transform: scale(1.08); }
.sig-rank {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  letter-spacing: -.02em;
  line-height: 1;
}
.sig-flag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(43,18,96,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.15);
}
.sig-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.sig-zh {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.sig-en {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}
.sig-price {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: .92rem;
  padding: 6px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(91,46,168,.3);
}

@media (max-width: 1000px) {
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .signature-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--purple-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--purple-200);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}
.about-text-block { }
.about-text-block p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: .98rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  background: var(--purple-100);
  color: var(--purple-700);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: .82rem;
  font-weight: 600;
}

/* ── MENU ────────────────────────────────────────────────── */
.menu { background: var(--white); }
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 40px;
}
.tab-btn {
  background: var(--purple-50);
  border: 1.5px solid var(--purple-200);
  border-radius: 99px;
  padding: 9px 22px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  font-family: var(--font-zh);
}
.tab-btn:hover { background: var(--purple-100); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(91,46,168,.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.menu-item {
  background: var(--white);
  border: 1.5px solid var(--purple-100);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
}
.menu-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.item-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--purple-100);
}
.item-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.menu-item:hover .item-photo img { transform: scale(1.07); }
.item-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(150deg, var(--purple-500), var(--purple-800));
}
.item-noimg-icon {
  font-size: 3.4rem;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.menu-item:hover .item-noimg-icon { transform: scale(1.12) rotate(-5deg); }
.item-info {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.item-zh {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.item-en {
  font-size: .76rem;
  color: var(--text-soft);
  font-family: var(--font-en);
  margin-bottom: 12px;
  line-height: 1.45;
  flex: 1;
}
.item-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.item-price {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple-600);
}
.item-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold);
  color: #6B4500;
  font-size: .66rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
  font-family: var(--font-en);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* ── LOCATION ─────────────────────────────────────────────── */
.location { background: var(--purple-900); }
.location .section-tag { color: var(--purple-300); }
.location .section-heading { color: var(--white); }
.location .section-sub { color: rgba(255,255,255,.55); }
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,.08);
  position: relative;
  padding-bottom: 65%;
  height: 0;
}
.map-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.info-card-title {
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,.5); font-size: .82rem; }
.hours-row .time { font-weight: 600; color: rgba(255,255,255,.9); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.contact-icon {
  width: 32px; height: 32px;
  background: rgba(155,110,224,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.pay-chip {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: var(--font-en);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--purple-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo .logo-text { font-size: 1.3rem; }
.footer-logo p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  font-family: var(--font-en);
  text-align: center;
}
.footer-mascot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
  opacity: .85;
  transition: opacity .2s, transform .2s;
}
.footer-mascot:hover { opacity: 1; transform: scale(1.08) rotate(-4deg); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  /* ── Hero mobile ── */
  .hero-content {
    padding: calc(var(--nav-h) + 12px) 20px 60px;
    gap: 0;
  }
  .hero-badge { font-size: .68rem; padding: 5px 14px; margin-bottom: 0; }
  .hero-mascot { margin: 12px 0 0; }
  .mascot-video { width: 200px; max-width: 54vw; }
  .mascot-glow { width: 220px; height: 220px; }
  .hero-title { font-size: 3rem; margin: 2px 0 8px; }
  .hero-subtitle { font-size: .95rem; margin-bottom: 8px; }
  .hero-tagline { font-size: .85rem; margin-bottom: 22px; max-width: 90vw; }
  .hero-actions { gap: 10px; }
  .hero-cta, .hero-cta-ghost { padding: 13px 26px; font-size: .82rem; }

  /* Hide floating decorations on small screens */
  .deco { display: none; }
  .scroll-indicator { bottom: 16px; }
  .scroll-indicator span { font-size: .6rem; }
  .scroll-arrow { width: 16px; height: 16px; }

  /* ── Nav mobile ── */
  .nav-logo-img { width: 32px; height: 32px; }
  .logo-text { font-size: 1.2rem; }
  .lang-toggle { padding: 3px 10px; font-size: .72rem; }

  /* ── Sections mobile ── */
  .section { padding: 60px 16px; }
  .section-heading { font-size: 1.7rem; }
  .section-sub { font-size: .9rem; }

  /* ── Signature cards mobile ── */
  .signature-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
  .sig-card { border-radius: var(--r); }
  .sig-photo { aspect-ratio: 3 / 2; }
  .sig-rank { font-size: 1.1rem; top: 8px; left: 10px; }
  .sig-flag { font-size: .58rem; padding: 3px 8px; bottom: 8px; left: 8px; }
  .sig-body { padding: 12px 12px 16px; }
  .sig-zh { font-size: .95rem; margin-bottom: 4px; }
  .sig-en { font-size: .75rem; line-height: 1.5; }
  .sig-price { font-size: .78rem; padding: 4px 12px; margin-top: 10px; }

  /* ── About mobile ── */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 14px; border-radius: var(--r); }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: .72rem; }
  .about-chips { gap: 6px; }
  .chip { font-size: .72rem; padding: 5px 12px; }

  /* ── Menu mobile ── */
  .menu-tabs { gap: 8px; margin: 24px 0 28px; }
  .tab-btn { padding: 7px 16px; font-size: .78rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .item-info { padding: 10px 10px 14px; }
  .item-zh { font-size: .82rem; }
  .item-en { font-size: .68rem; margin-bottom: 8px; }
  .item-price { font-size: .85rem; }
  .item-badge { font-size: .58rem; padding: 2px 7px; top: 6px; right: 6px; }

  /* ── Location mobile ── */
  .map-wrapper { padding-bottom: 80%; border-radius: var(--r); }
  .info-card { padding: 18px; }
  .info-card-title { font-size: .64rem; margin-bottom: 10px; }
  .hours-row { font-size: .82rem; }
  .contact-row { font-size: .82rem; }
  .pay-chip { font-size: .7rem; padding: 4px 10px; }

  /* ── Footer mobile ── */
  .footer { padding: 36px 16px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-mascot { width: 48px; height: 48px; }
}
