/* ==========================================================================
   Yi Cha Bubble Tea — stylesheet
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Design tokens ---------- */
:root {
  --ink: #240f1c;
  --ink-2: #3a1a30;
  --ink-3: #4a2140;
  --cream: #FFF9F2;
  --cream-2: #FDEEDC;
  --cream-3: #FBE4CB;
  --taro: #8E5FC7;
  --taro-dark: #6B3FA6;
  --mango: #FFAE34;
  --peach: #FF8C6B;
  --strawberry: #FF6F91;
  --matcha: #6FA84B;
  --brown-sugar: #A9683D;
  --brown-sugar-dark: #6B4226;
  --gold: #F0B94A;
  --white: #ffffff;
  --text: #2A1722;
  --text-soft: #6E5B67;
  --text-invert: #FBEFE2;
  --line: rgba(42, 23, 34, 0.1);

  --brand-gradient: linear-gradient(120deg, var(--taro) 0%, var(--strawberry) 52%, var(--mango) 100%);
  --brand-gradient-soft: linear-gradient(120deg, rgba(142,95,199,.16), rgba(255,111,145,.16) 52%, rgba(255,174,52,.16) 100%);
  --dark-gradient: radial-gradient(120% 140% at 15% 10%, #4a2140 0%, #2a1224 42%, #180712 100%);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(42, 15, 30, 0.08);
  --shadow-md: 0 12px 32px rgba(42, 15, 30, 0.12);
  --shadow-lg: 0 24px 64px rgba(42, 15, 30, 0.18);

  --container: 1200px;
  --header-h: 76px;
}

/* ---------- Base ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taro-dark);
  background: var(--brand-gradient-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--strawberry); flex-shrink: 0; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.9rem 0 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 111, 145, 0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(255, 111, 145, 0.45); background-position: 100% 50%; }
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--text-invert);
  border: 1.5px solid rgba(251, 239, 226, 0.45);
}
.btn-outline:hover { background: rgba(251, 239, 226, 0.12); transform: translateY(-3px); }
.btn-dark-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-dark-outline:hover { background: var(--ink); color: var(--text-invert); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 20px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 500;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-scrolled { background: rgba(255, 249, 242, 0.9); backdrop-filter: blur(14px); box-shadow: 0 4px 24px rgba(42,15,30,0.08); height: 68px; }
.site-header.on-dark:not(.is-scrolled) .nav-link,
.site-header.on-dark:not(.is-scrolled) .logo-word,
.site-header.on-dark:not(.is-scrolled) .logo-sub { color: var(--text-invert); }
.site-header.on-dark:not(.is-scrolled) .hamburger span { background: var(--text-invert); }

.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-word { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.01em; transition: color .35s ease; }
.logo-sub { font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.24em; color: var(--strawberry); transition: color .35s ease; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.nav-link {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 2px;
  transition: color .35s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--brand-gradient);
  transition: right .3s ease;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(142, 95, 199, 0.1);
  color: var(--taro-dark);
  transition: transform .25s ease, background .25s ease;
}
.site-header.on-dark:not(.is-scrolled) .icon-btn { background: rgba(251,239,226,0.14); color: var(--text-invert); }
.icon-btn:hover { transform: translateY(-2px) scale(1.05); }
.icon-btn svg { width: 20px; height: 20px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 600; }
.hamburger span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: all .3s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 550;
  background: var(--dark-gradient);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.65,0,.35,1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text-invert); }
.mobile-nav .btn { margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
  background: var(--dark-gradient);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: -1;
  animation: blobFloat 16s ease-in-out infinite;
}
.hero-bg-blob.b1 { width: 480px; height: 480px; background: var(--taro); top: -10%; left: -8%; }
.hero-bg-blob.b2 { width: 420px; height: 420px; background: var(--strawberry); bottom: -12%; right: -6%; animation-delay: -4s; animation-duration: 20s; }
.hero-bg-blob.b3 { width: 340px; height: 340px; background: var(--mango); top: 40%; right: 22%; animation-delay: -9s; animation-duration: 13s; opacity: 0.35; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(4%, 6%) scale(1.08); }
  66% { transform: translate(-5%, -3%) scale(0.94); }
}

.hero-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #6b4226, #2a1710 72%);
  box-shadow: inset -2px -3px 5px rgba(0,0,0,.5), inset 2px 2px 3px rgba(255,255,255,.12);
  opacity: 0.85;
  animation: pearlDrift linear infinite;
}
@keyframes pearlDrift {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  100% { transform: translateY(-120vh) translateX(30px) rotate(220deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow { background: rgba(251,239,226,0.12); color: var(--gold); }
.hero-copy .eyebrow::before { background: var(--gold); }

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  color: var(--text-invert);
  margin: 1.1rem 0 1.2rem;
  font-weight: 800;
}
.hero-title .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(251, 239, 226, 0.82);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 239, 226, 0.08);
  border: 1px solid rgba(251, 239, 226, 0.16);
  color: var(--text-invert);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.info-pill svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.info-pill strong { font-weight: 700; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; }
.hero-cup-wrap { position: relative; width: 100%; max-width: 420px; animation: cupFloat 6s ease-in-out infinite; }
@keyframes cupFloat { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-18px) rotate(1.5deg); } }
.hero-cup-glow {
  position: absolute; inset: 10%;
  background: var(--brand-gradient);
  filter: blur(60px);
  opacity: 0.45;
  border-radius: 50%;
  z-index: -1;
}
.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip.c1 { top: 6%; left: -6%; animation-delay: -1s; }
.float-chip.c2 { bottom: 12%; right: -8%; animation-delay: -3s; }
.float-chip .dot { width: 10px; height: 10px; border-radius: 50%; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(251,239,226,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  z-index: 2;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(251,239,226,0.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translate(-50%,0); } 70% { opacity: 0; transform: translate(-50%,14px); } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text-invert);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
}
.marquee-track span::after { content: '\2022'; color: var(--gold); font-size: 1.4rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
.stat-card { text-align: center; padding: 1rem; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.stat-num svg { width: 0.75em; height: 0.75em; color: var(--gold); -webkit-text-fill-color: initial; }
.stat-label { margin-top: 6px; font-size: 0.88rem; color: var(--text-soft); font-weight: 600; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.50s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.58s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.66s; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-art { position: relative; }
.about-art svg { width: 100%; height: auto; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.06rem; }
.about-copy p:last-of-type { margin-bottom: 1.8rem; }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1rem; }
.spec-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.spec-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.spec-chip .ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--brand-gradient-soft);
}
.spec-chip .ic svg { width: 22px; height: 22px; color: var(--taro-dark); }
.spec-chip span { font-weight: 600; font-size: 0.92rem; }

/* ---------- Menu preview (home) ---------- */
.menu-preview { background: var(--cream-2); position: relative; overflow: hidden; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  overflow: hidden;
  color: var(--text-invert);
  min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cat-card:hover { transform: translateY(-8px) scale(1.015); }
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
}
.cat-card .cat-bg { position: absolute; inset: 0; z-index: -1; }
.cat-card h3 { color: var(--white); font-size: 1.25rem; position: relative; z-index: 1; }
.cat-card p { color: rgba(255,255,255,0.82); font-size: 0.86rem; margin-top: 4px; position: relative; z-index: 1; }
.cat-card .arrow {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.cat-card:hover .arrow { background: rgba(255,255,255,0.35); transform: rotate(45deg); }
.cat-card .arrow svg { width: 18px; height: 18px; color: var(--white); }

.bestsellers { margin-top: 3.4rem; }
.bs-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.6rem; flex-wrap: wrap; gap: 1rem; }
.item-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.item-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.item-card .cup-icon { width: 70px; height: 70px; margin-bottom: 1rem; }
.item-card h4 { font-size: 1rem; margin-bottom: 6px; }
.item-card .price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--strawberry); font-size: 1.05rem; }
.badge-best {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

/* ---------- Order banner ---------- */
.order-banner {
  background: var(--dark-gradient);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.order-banner .hero-bg-blob { opacity: 0.4; }
.ob-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ob-text h2 { color: var(--text-invert); font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 0.6rem; }
.ob-text p { color: rgba(251,239,226,0.78); font-size: 1.05rem; max-width: 480px; }
.ob-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Location / Hours ---------- */
.location { background: var(--white); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 1.6rem; }
.loc-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--line);
}
.loc-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 0.9rem; }
.loc-card h3 svg { width: 22px; height: 22px; color: var(--strawberry); }
.loc-card address, .loc-card p { font-style: normal; color: var(--text-soft); font-size: 1rem; }
.loc-card strong { color: var(--text); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 0.96rem; }
.hours-table td:first-child { font-weight: 700; color: var(--text); }
.hours-table td:last-child { text-align: right; color: var(--text-soft); }
.hours-table tr.today td { color: var(--strawberry); }
.hours-table tr.today td:first-child::before { content: '● '; color: var(--matcha); font-size: 0.7em; }

.open-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111,168,75,0.12); color: var(--matcha);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.85rem; margin-top: 1rem;
}
.open-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--matcha); position: relative; }
.open-badge .pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--matcha); opacity: 0.4; animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(2.2); opacity: 0; } }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-2); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .platform-icon { width: 46px; height: 46px; margin: 0 auto 1rem; }
.review-score { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--ink); }
.stars { display: flex; justify-content: center; gap: 4px; margin: 10px 0; }
.stars svg { width: 20px; height: 20px; color: var(--gold); }
.review-card .rc-count { color: var(--text-soft); font-size: 0.94rem; }
.review-card h4 { margin-top: 0.4rem; font-size: 1rem; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-panel {
  background: var(--dark-gradient);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.contact-panel .hero-bg-blob { opacity: 0.35; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { color: var(--text-invert); font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0 2rem; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--text-invert); font-size: 1.02rem; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-ctas { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.contact-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.contact-visual svg { width: 100%; max-width: 300px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,239,226,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(251,239,226,0.1); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .logo-word, .footer-brand .logo-sub { color: var(--text-invert); }
.footer-brand p { max-width: 300px; color: rgba(251,239,226,0.6); font-size: 0.94rem; }
.footer-col h4 { color: var(--text-invert); font-size: 0.95rem; margin-bottom: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(251,239,226,0.68); font-size: 0.95rem; transition: color .25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col address { font-style: normal; color: rgba(251,239,226,0.68); font-size: 0.95rem; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; color: rgba(251,239,226,0.5); }

/* ---------- Sticky mobile bar ---------- */
.sticky-mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: none;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(42,15,30,0.12);
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-mobile-bar a { flex: 1; }
.sticky-mobile-bar .btn { width: 100%; padding: 13px 10px; font-size: 0.92rem; }

.back-to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 300;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--text-invert);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Menu page ---------- */
.menu-hero {
  background: var(--dark-gradient);
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  position: relative; overflow: hidden; isolation: isolate;
  text-align: center;
}
.menu-hero h1 { color: var(--text-invert); font-size: clamp(2.4rem, 5.5vw, 3.6rem); margin: 1rem 0 0.9rem; }
.menu-hero p { color: rgba(251,239,226,0.78); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }
.menu-hero .eyebrow { background: rgba(251,239,226,0.12); color: var(--gold); margin: 0 auto; }
.menu-hero .eyebrow::before { background: var(--gold); }
.menu-hero .hero-ctas { justify-content: center; margin-top: 2rem; }

.cat-nav-wrap { position: sticky; top: var(--header-h); z-index: 300; background: rgba(255,249,242,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.cat-nav { display: flex; gap: 10px; overflow-x: auto; padding: 14px 24px; scrollbar-width: none; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line); color: var(--text);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.cat-nav a:hover, .cat-nav a.active { background: var(--brand-gradient); color: var(--white); border-color: transparent; }

.menu-note {
  max-width: var(--container); margin: 2.4rem auto 0; padding: 0 24px;
}
.note-box {
  background: var(--cream-2); border: 1px dashed var(--taro);
  border-radius: var(--radius-md); padding: 1rem 1.4rem;
  font-size: 0.92rem; color: var(--text-soft);
  display: flex; gap: 10px; align-items: flex-start;
}
.note-box svg { width: 20px; height: 20px; color: var(--taro-dark); flex-shrink: 0; margin-top: 2px; }

.menu-category { padding: 4rem 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-category:last-of-type { border-bottom: none; }
.mc-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 0.6rem; }
.mc-head .mc-icon { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mc-head .mc-icon svg { width: 30px; height: 30px; color: var(--white); }
.mc-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.mc-desc { color: var(--text-soft); max-width: 640px; margin: 0.6rem 0 2.2rem; }

.menu-item-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.menu-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.menu-item .mi-cup { width: 52px; height: 52px; flex-shrink: 0; }
.menu-item .mi-info { flex: 1; min-width: 0; }
.menu-item h4 { font-size: 0.98rem; margin-bottom: 3px; }
.menu-item .mi-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--strawberry); font-size: 1rem; white-space: nowrap; }
.menu-item .mi-tbc { font-size: 0.78rem; color: var(--text-soft); font-weight: 600; }

.category-cta {
  margin-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}
.category-cta p { color: var(--text-soft); font-size: 0.94rem; max-width: 460px; }
.category-cta strong { color: var(--text); }

.toppings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.topping-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 12px 16px; font-weight: 600; font-size: 0.9rem;
}
.topping-chip .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 380px; margin: 0 auto; }
  .hero-info, .hero-ctas { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; max-width: 360px; margin: 0 auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .item-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { grid-template-columns: 1fr; text-align: center; }
  .contact-list li { justify-content: center; }
  .contact-ctas { justify-content: center; }
  .contact-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-item-grid { grid-template-columns: repeat(2, 1fr); }
  .toppings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn, .header-actions .icon-btn.call-desktop { display: none; }
  .hamburger { display: flex; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .item-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ob-inner { flex-direction: column; text-align: center; }
  .ob-text p { margin: 0 auto; }
  .menu-item-grid { grid-template-columns: 1fr; }
  .toppings-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2.2rem 0; }
  .float-chip { display: none; }
  .category-cta { flex-direction: column; align-items: flex-start; }
}
