/* ===========================================================================
   吃饭公司 Makan Nasi — site stylesheet
   Implemented from the Claude Design handoff (MN-Landing.dc.html).
   Sections: fonts → tokens → base → components → nav → page sections → footer
   =========================================================================== */

/* ---- Webfonts ----------------------------------------------------------- */
@font-face {
  font-family: "Alimama ShuHeiTi";
  src: url("../assets/fonts/AlimamaShuHeiTi.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../assets/fonts/AlibabaPuHuiTi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../assets/fonts/AlibabaPuHuiTi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../assets/fonts/AlibabaPuHuiTi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../assets/fonts/AlibabaPuHuiTi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../assets/fonts/AlibabaPuHuiTi-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aa YangGuanQu";
  src: url("../assets/fonts/AaYangGuanQu.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial Rounded Brand";
  src: url("../assets/fonts/ArialRoundedBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand core */
  --mn-red: #e51312;
  --mn-gold: #fcc800;
  --mn-white: #ffffff;
  --mn-black: #000000;

  /* Red ramp */
  --mn-red-50: #fdecec;
  --mn-red-100: #fbd2d1;
  --mn-red-200: #f5a3a1;
  --mn-red-300: #ef706e;
  --mn-red-400: #ec4441;
  --mn-red-500: #e51312;
  --mn-red-600: #c00d0c;
  --mn-red-700: #960a09;
  --mn-red-800: #6b0807;
  --mn-red-900: #420403;

  /* Gold ramp */
  --mn-gold-50: #fff8e0;
  --mn-gold-100: #ffeeab;
  --mn-gold-200: #ffe17a;
  --mn-gold-300: #fdd64a;
  --mn-gold-400: #fcc800;
  --mn-gold-500: #e0b000;
  --mn-gold-600: #b88f00;
  --mn-gold-700: #8a6b00;

  /* Warm neutrals */
  --mn-ink-900: #1a1413;
  --mn-ink-800: #2e2624;
  --mn-ink-700: #4a3f3c;
  --mn-ink-600: #6b5f5b;
  --mn-ink-500: #8c807b;
  --mn-ink-400: #b3a9a4;
  --mn-ink-300: #d6cfca;
  --mn-ink-200: #e8e2dd;
  --mn-ink-100: #f4efeb;
  --mn-paper: #fbf7f2;

  /* Semantic */
  --text-strong: var(--mn-ink-900);
  --text-body: var(--mn-ink-800);
  --text-muted: var(--mn-ink-600);
  --text-subtle: var(--mn-ink-500);
  --surface-page: var(--mn-paper);
  --surface-card: var(--mn-white);
  --border-subtle: var(--mn-ink-200);
  --border-default: var(--mn-ink-300);
  --focus-ring: var(--mn-red-300);
  --status-success: #1f9d57;
  --status-success-bg: #e3f6ec;

  /* Typography */
  --font-display: "Alimama ShuHeiTi", "Alibaba PuHuiTi", system-ui, sans-serif;
  --font-body: "Alibaba PuHuiTi", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brush: "Aa YangGuanQu", "Alimama ShuHeiTi", cursive;
  --font-rounded: "Arial Rounded Brand", "Alibaba PuHuiTi", system-ui, sans-serif;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(26, 20, 19, 0.10);
  --shadow-md: 0 6px 16px rgba(26, 20, 19, 0.12);
  --shadow-lg: 0 14px 32px rgba(26, 20, 19, 0.16);
  --shadow-xl: 0 24px 56px rgba(26, 20, 19, 0.20);
  --shadow-sticker: 4px 4px 0 var(--mn-ink-900);

  /* Borders */
  --border-thick: 2px;
  --border-chunky: 3px;

  /* Motion */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 120ms;
  --duration-normal: 200ms;
  --press-scale: 0.96;
  --hover-lift: -2px;

  --ring: 0 0 0 3px var(--focus-ring);
}

/* ---- Base --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font: 400 16px/1.5 var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (not hidden): pre-reveal animation offsets must never cause
     sideways scroll, and clip keeps position:sticky working */
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 0.4em;
  line-height: 1.05;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--mn-red); text-decoration: none; }
a:hover { color: var(--mn-red-600); }

img { max-width: 100%; }

/* Language toggle: ZH is default; data-lang="en" on <html> flips the spans */
html:not([data-lang="en"]) .i18n-en { display: none !important; }
html[data-lang="en"] .i18n-zh { display: none !important; }

.container { max-width: 1180px; margin: 0 auto; padding-inline: 20px; }

.section-eyebrow {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--mn-red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 6px 0 0;
  color: var(--text-strong);
}

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes mn-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mn-steam {
  0% { transform: translateY(8px) scale(.9); opacity: 0; }
  30% { opacity: .65; }
  100% { transform: translateY(-34px) scale(1.15); opacity: 0; }
}
@keyframes mn-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-9px) rotate(-6deg); }
}
@keyframes mn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 19, 18, .45); }
  100% { box-shadow: 0 0 0 18px rgba(229, 19, 18, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
}

/* ---- Components: Button ------------------------------------------------- */
.mn-btn {
  --_bg: var(--mn-red); --_fg: #fff; --_bd: transparent;
  --_bgh: var(--mn-red-600); --_bga: var(--mn-red-700);
  font-family: var(--font-body); font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: var(--border-thick) solid var(--_bd); border-radius: var(--radius-pill);
  background: var(--_bg); color: var(--_fg); white-space: nowrap; text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-bounce),
              background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.mn-btn:hover { background: var(--_bgh); color: var(--_fg); }
.mn-btn:active { background: var(--_bga); transform: scale(var(--press-scale)); }
.mn-btn:focus-visible { outline: none; box-shadow: var(--ring); }

.mn-btn--accent { --_bg: var(--mn-gold); --_fg: var(--mn-ink-900); --_bgh: var(--mn-gold-500); --_bga: var(--mn-gold-600); }
.mn-btn--outline { --_bg: transparent; --_fg: var(--mn-red); --_bd: var(--mn-red); --_bgh: var(--mn-red-50); --_bga: var(--mn-red-100); }
.mn-btn--outline:hover { color: var(--mn-red); }
.mn-btn--ink { --_bg: var(--mn-ink-900); --_fg: #fff; --_bgh: var(--mn-ink-800); --_bga: #000; }

.mn-btn--sm { font-size: 14px; padding: 7px 16px; }
.mn-btn--block { display: flex; width: 100%; }
.mn-btn--md { font-size: 16px; padding: 11px 22px; }
.mn-btn--lg { font-size: 18px; padding: 15px 30px; }

/* ---- Components: Badge -------------------------------------------------- */
.mn-badge {
  --_bg: var(--mn-red); --_fg: #fff;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-rounded); font-weight: 700; font-size: 12px;
  letter-spacing: .03em; line-height: 1; padding: 5px 10px;
  border-radius: var(--radius-pill); background: var(--_bg); color: var(--_fg);
  white-space: nowrap;
}
.mn-badge--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.mn-badge--solid-gold { --_bg: var(--mn-gold); --_fg: var(--mn-ink-900); }
.mn-badge--solid-red { --_bg: var(--mn-red); --_fg: #fff; }
.mn-badge--success { --_bg: var(--status-success-bg); --_fg: var(--status-success); }

/* ---- Components: Card --------------------------------------------------- */
.mn-card {
  background: var(--surface-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.mn-card--interactive { cursor: pointer; }
.mn-card--interactive:hover { transform: translateY(var(--hover-lift)); box-shadow: var(--shadow-lg); }
.mn-card--interactive:active { transform: scale(var(--press-scale)); }
.mn-card--sticker {
  border: var(--border-chunky) solid var(--mn-ink-900);
  box-shadow: var(--shadow-sticker);
  border-radius: var(--radius-md);
}
.mn-card--pad-lg { padding: 32px; }

/* ---- Photo placeholder (until real photos come in) ---------------------- */
.photo-slot {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 16px; text-align: center;
  background: var(--mn-ink-100); color: var(--mn-ink-500);
  font-size: 13px; line-height: 1.5;
}
.photo-slot svg { opacity: .45; }
.photo-slot--dark { background: var(--mn-ink-800); color: var(--mn-ink-400); }

/* ---- Nav ---------------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-height: 44px; }
.nav-logo img { height: 40px; transition: height var(--duration-normal) var(--ease-out); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-zh { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-strong); }
.nav-logo-en { font-family: var(--font-rounded); font-weight: 700; font-size: 9px; letter-spacing: .14em; color: var(--mn-red); }
.site-nav.is-scrolled .nav-logo img { height: 32px; }

.nav-links {
  display: flex; gap: 20px; flex: 1 1 320px; justify-content: center;
  overflow-x: auto; padding: 4px 2px; scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  color: var(--text-body); font-size: 15px; font-weight: 500; text-decoration: none;
  white-space: nowrap; padding: 10px 2px 6px; border-bottom: 2px solid transparent;
  transition: color var(--duration-normal) var(--ease-out);
}
.nav-links a:hover { color: var(--mn-red); }
.nav-links a.is-active { color: var(--mn-red); border-bottom-color: var(--mn-red); }

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

.lang-toggle {
  display: flex; border: 2px solid var(--mn-ink-900); border-radius: var(--radius-pill);
  overflow: hidden; background: #fff;
}
.lang-toggle button {
  border: none; cursor: pointer; font-family: var(--font-rounded); font-weight: 700;
  font-size: 12px; padding: 0 14px; min-height: 32px;
  background: transparent; color: var(--mn-ink-600); transition: all .22s;
}
html:not([data-lang="en"]) .lang-toggle .lang-zh,
html[data-lang="en"] .lang-toggle .lang-en { background: var(--mn-red); color: #fff; }

@media (max-width: 767px) {
  /* Design note: mobile nav stays static, no blur */
  .site-nav { position: static; backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav-logo { order: 1; }
  .nav-controls { order: 2; margin-left: auto; }
  .nav-links { order: 3; flex: 1 1 100%; justify-content: flex-start; }
  .nav-wa-btn { display: none; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero {
  background-color: var(--mn-red);
  background-image: linear-gradient(rgba(229, 19, 18, .88), rgba(229, 19, 18, .88)), url("../assets/patterns/pattern-1.png");
  background-size: auto, 220px;
  color: #fff; overflow: hidden; position: relative;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 56px 20px 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; align-items: center;
}
.hero h1 {
  font-family: var(--font-brush); font-weight: 400;
  font-size: clamp(56px, 8vw, 84px); line-height: 1;
  margin: 18px 0 6px; color: #fff;
}
.hero-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.08;
  margin: 0 0 16px; color: #fff;
}
.hero-lede {
  font-size: clamp(16px, 1.6vw, 18px); max-width: 460px;
  color: rgba(255, 255, 255, .92); margin: 0 0 28px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; position: relative; min-height: 340px; }
.hero-bowl {
  width: clamp(260px, 30vw, 360px); height: clamp(260px, 30vw, 360px);
  border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.hero-bowl img { width: 72%; }
.hero-steam {
  position: absolute; top: -6px; left: 50%; display: flex; gap: 14px;
  transform: translateX(-50%);
}
.hero-steam span {
  width: 8px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, .85);
  animation: mn-steam 2.6s ease-out infinite;
}
.hero-steam span:nth-child(1) { height: 26px; }
.hero-steam span:nth-child(2) { height: 32px; animation-delay: .5s; }
.hero-steam span:nth-child(3) { height: 24px; animation-delay: 1.1s; }
.hero-sticker {
  position: absolute; bottom: 18px; left: -26px;
  background: var(--mn-gold); color: var(--mn-ink-900);
  border: var(--border-chunky) solid var(--mn-ink-900); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sticker); padding: 10px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  animation: mn-bob 3.4s ease-in-out infinite;
}

/* ---- Marquee ------------------------------------------------------------ */
.marquee {
  background: var(--mn-gold); color: var(--mn-ink-900); overflow: hidden;
  border-top: var(--border-chunky) solid var(--mn-ink-900);
  border-bottom: var(--border-chunky) solid var(--mn-ink-900);
}
.marquee-track {
  display: flex; width: max-content;
  animation: mn-marquee 18s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-half {
  display: flex; gap: 40px; padding: 13px 0 13px 40px;
  font-family: var(--font-rounded); font-weight: 700; font-size: 15px; white-space: nowrap;
}
@media (max-width: 767px) {
  .marquee-track { animation-duration: 26s; }
}

/* ---- Intro -------------------------------------------------------------- */
.intro {
  max-width: 1180px; margin: 0 auto; padding: 72px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px; align-items: center;
}
.intro-photo-frame {
  border: var(--border-chunky) solid var(--mn-ink-900); border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--mn-ink-900); overflow: hidden; background: #fff;
}
.intro-photo-frame .photo-slot { height: 340px; }
.intro-title { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; margin: 8px 0 14px; }
.intro-copy { font-size: 16px; line-height: 1.7; color: var(--text-body); margin: 0 0 22px; max-width: 460px; }
.intro-stats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.stat-chip {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 12px 18px; text-align: center;
}
.stat-chip strong {
  display: block; font-family: var(--font-rounded); font-weight: 700;
  font-size: 24px; color: var(--mn-red);
}
.stat-chip span { font-size: 12.5px; color: var(--text-muted); }
.intro-link { font-weight: 700; font-size: 15px; }

/* ---- Dishes ------------------------------------------------------------- */
.dishes { background: #fff; border-top: 1px solid var(--border-subtle); }
.dishes-inner { max-width: 1180px; margin: 0 auto; padding: 64px 20px 72px; }
.dishes-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.dishes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px;
}
.dish-tile {
  height: 150px; display: flex; align-items: center; justify-content: center; position: relative;
  background-image: url("../assets/patterns/pattern-1.png");
  background-size: 90px; background-blend-mode: soft-light;
}
.dish-tile--red { background-color: var(--mn-red-100); }
.dish-tile--gold { background-color: var(--mn-gold-100); }
.dish-tile--ink { background-color: var(--mn-ink-100); }
.dish-tile--gold2 { background-color: var(--mn-gold-200); }
.dish-tile img { width: 104px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .22)); }
.dish-tile .mn-badge { position: absolute; top: 10px; left: 10px; }
.dish-body { padding: 14px 16px; }
.dish-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-strong); }
.dish-en { color: var(--text-muted); font-size: 13.5px; margin: 2px 0 10px; }
.dish-price { font-family: var(--font-rounded); font-weight: 700; color: var(--mn-red); font-size: 20px; }

/* ---- Tiffin teaser ------------------------------------------------------ */
.tiffin { background: var(--mn-ink-900); color: #fff; position: relative; overflow: hidden; }
.tiffin-inner {
  max-width: 1180px; margin: 0 auto; padding: 68px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px; align-items: center;
}
.tiffin .section-eyebrow { color: var(--mn-gold); }
.tiffin-title { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin: 8px 0 14px; color: #fff; }
.tiffin-copy { font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, .82); margin: 0 0 20px; max-width: 440px; }
.tiffin-photo-frame {
  border: var(--border-chunky) solid var(--mn-gold); border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--mn-gold); overflow: hidden; background: var(--mn-ink-800);
}
.tiffin-photo-frame .photo-slot { height: 320px; }

/* ---- Outlets ------------------------------------------------------------ */
.outlets { max-width: 1180px; margin: 0 auto; padding: 68px 20px; }
.outlets-head { margin-bottom: 26px; }
.outlets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.outlet-name { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.outlet-name .pin { font-size: 22px; }
.outlet-name strong { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--text-strong); }
.outlet-addr { color: var(--text-muted); font-size: 14px; margin: 0 0 12px; line-height: 1.5; }
.outlet-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.outlet-meta a { font-size: 14px; font-weight: 700; }

/* ---- CTA ---------------------------------------------------------------- */
.cta {
  background-color: var(--mn-red);
  background-image: linear-gradient(rgba(229, 19, 18, .88), rgba(229, 19, 18, .88)), url("../assets/patterns/pattern-1.png");
  background-size: auto, 200px;
  color: #fff; text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 64px 20px; }
.cta-brush { font-family: var(--font-brush); font-size: clamp(44px, 6vw, 64px); line-height: 1; }
.cta-copy { font-size: 17px; color: rgba(255, 255, 255, .92); margin: 12px 0 26px; }
.cta-btn-wrap { display: inline-block; border-radius: var(--radius-pill); animation: mn-pulse 2s ease-out infinite; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  background-color: var(--mn-red);
  background-image: linear-gradient(rgba(229, 19, 18, .88), rgba(229, 19, 18, .88)), url("../assets/patterns/pattern-1.png");
  background-size: auto, 210px;
  color: #fff;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 52px 20px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-brand img {
  height: 96px; border-radius: 50%; border: var(--border-chunky) solid #fff;
  box-shadow: 4px 4px 0 rgba(26, 20, 19, .35);
}
.footer-brush { font-family: var(--font-brush); font-size: 30px; line-height: 1; }
.footer-brand p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, .88); max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-heading {
  font-family: var(--font-rounded); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; color: var(--mn-gold);
}
.footer-outlet { font-size: 14px; line-height: 1.55; }
.footer-outlet strong { font-family: var(--font-display); font-weight: 700; font-size: 16px; display: block; }
.footer-outlet .addr { color: rgba(255, 255, 255, .85); }
.footer-outlet .hours {
  color: var(--mn-gold); font-family: var(--font-rounded); font-weight: 700;
  font-size: 13px; margin-top: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: #fff; display: flex; align-items: center; gap: 8px; min-height: 24px; }
.footer-links a:hover { color: var(--mn-gold); }
.footer-quick { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-quick-solid {
  color: var(--mn-red); background: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: var(--radius-pill);
}
.footer-quick-solid:hover { background: var(--mn-gold); color: var(--mn-ink-900); }
.footer-quick-outline {
  color: #fff; border: 2px solid #fff; font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: var(--radius-pill);
}
.footer-quick-outline:hover { background: rgba(255, 255, 255, .15); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .28); }
.footer-bottom-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255, 255, 255, .8);
}

/* ---- WhatsApp FAB ------------------------------------------------------- */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 200; }
.wa-fab a {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--mn-red); color: #fff; font-size: 26px; text-decoration: none;
  box-shadow: var(--shadow-lg); border: var(--border-chunky) solid #fff;
  animation: mn-pulse 2s ease-out infinite;
  transition: transform .18s;
}
.wa-fab a:hover { transform: scale(1.06); }
.wa-fab a:active { transform: scale(.94); }

/* ---- Components: Badge extra tones -------------------------------------- */
.mn-badge--solid-ink { --_bg: var(--mn-ink-900); --_fg: #fff; }
.mn-badge--soft-gold { --_bg: var(--mn-gold-50); --_fg: var(--mn-gold-700); }
.mn-badge--soft-neutral { --_bg: var(--mn-ink-100); --_fg: var(--mn-ink-700); }

/* ---- Components: Tag (filter chip) --------------------------------------- */
.mn-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 7px 14px; border-radius: var(--radius-pill); cursor: default;
  background: var(--surface-card); color: var(--text-body);
  border: var(--border-thick) solid var(--border-default);
  white-space: nowrap;
  transition: background var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
button.mn-tag { font: inherit; font-weight: 500; font-size: 14px; }
.mn-tag--clickable { cursor: pointer; }
.mn-tag--clickable:hover { border-color: var(--mn-red-300); }
.mn-tag--selected { background: var(--mn-red); border-color: var(--mn-red); color: #fff; }
.mn-tag--selected:hover { background: var(--mn-red-600); border-color: var(--mn-red-600); }

/* ---- Components: Input --------------------------------------------------- */
.mn-field { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-body); }
.mn-field__label { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.mn-field__req { color: var(--mn-red); margin-left: 2px; }
.mn-input {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 16px;
  color: var(--text-body); background: var(--surface-card);
  border: var(--border-thick) solid var(--border-default); border-radius: var(--radius-md);
  padding: 11px 14px;
  transition: border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.mn-input::placeholder { color: var(--mn-ink-400); }
.mn-input:hover { border-color: var(--mn-ink-400); }
.mn-input:focus { outline: none; border-color: var(--mn-red); box-shadow: 0 0 0 3px var(--mn-red-50); }
.mn-input--invalid { border-color: var(--mn-red); }
.mn-input--invalid:focus { box-shadow: var(--ring); }
textarea.mn-input { resize: vertical; min-height: 96px; line-height: 1.5; }

/* ---- Extra keyframes ------------------------------------------------------ */
@keyframes mn-bob-alt {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-9px) rotate(5deg); }
}
@keyframes mn-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---- Page hero (red, centered) — outlets & contact ----------------------- */
.page-hero-red {
  background-color: var(--mn-red);
  background-image: linear-gradient(rgba(229, 19, 18, .88), rgba(229, 19, 18, .88)), url("../assets/patterns/pattern-1.png");
  background-size: auto, 210px;
  color: #fff; text-align: center;
}
.page-hero-red .brush { font-family: var(--font-brush); font-size: clamp(44px, 6vw, 64px); line-height: 1; }
.page-hero-red p { color: rgba(255, 255, 255, .92); }

/* ---- Menu page ------------------------------------------------------------ */
.menu-hero { background: #fff; }
.menu-hero-inner { max-width: 1180px; margin: 0 auto; padding: 44px 20px 4px; }
.menu-hero-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.menu-hero h1 { font-size: clamp(32px, 4.2vw, 48px); margin: 6px 0 8px; }
.menu-hero-note { margin: 0; color: var(--text-muted); font-size: 15px; }
.menu-filterbar { background: #fff; border-bottom: 1px solid var(--border-subtle); }
.menu-filterbar-inner { max-width: 1180px; margin: 0 auto; padding: 22px 20px; }
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 767px) {
  /* Design note: on mobile the filter row is a sticky horizontal-scroll strip */
  .menu-filterbar { position: sticky; top: 0; z-index: 90; }
  .menu-filterbar-inner { padding: 10px 20px; }
  .menu-filters { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .menu-filters::-webkit-scrollbar { display: none; }
}
.menu-grid-section { max-width: 1180px; margin: 0 auto; padding: 36px 20px 20px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.menu-card.is-hidden { display: none; }
.menu-card.fade-in { animation: mn-fade-in 240ms var(--ease-out); }
.menu-tile {
  height: 118px; display: flex; align-items: center; justify-content: center; position: relative;
  background-image: url("../assets/patterns/pattern-1.png");
  background-size: 80px; background-blend-mode: soft-light;
}
.menu-tile img { width: 80px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2)); }
.menu-tile .mn-badge { position: absolute; top: 8px; font-size: 11px; padding: 4px 9px; }
.menu-tile .badge-spicy { left: 8px; }
.menu-tile .badge-hot { right: 8px; }
.menu-card-body { padding: 12px 14px; }
.menu-card-zh { font-family: var(--font-display); font-weight: 700; font-size: 17.5px; color: var(--text-strong); }
.menu-card-en { color: var(--text-muted); font-size: 12.5px; margin: 1px 0 8px; }
.menu-card-foot { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-family: var(--font-rounded); font-weight: 700; color: var(--mn-red); font-size: 18px; }
.menu-card-cat { font-size: 11px; color: var(--text-subtle); font-family: var(--font-rounded); font-weight: 700; letter-spacing: .06em; }
.menu-disclaimer { margin: 18px 4px 0; font-size: 13px; color: var(--text-subtle); }
.menu-combo-section { max-width: 1180px; margin: 0 auto; padding: 40px 20px 72px; }
.menu-combo {
  background: var(--mn-gold); border: var(--border-chunky) solid var(--mn-ink-900);
  border-radius: var(--radius-lg); box-shadow: 6px 6px 0 var(--mn-ink-900);
  padding: 30px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.menu-combo-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--mn-ink-900); }
.menu-combo-sub { font-size: 14.5px; color: var(--mn-ink-800); margin-top: 4px; }
.menu-combo-prices { display: flex; gap: 12px; flex-wrap: wrap; }
.combo-box {
  background: #fff; border: var(--border-chunky) solid var(--mn-ink-900);
  border-radius: var(--radius-md); padding: 12px 18px; text-align: center;
}
.combo-box-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.combo-box-price { font-family: var(--font-rounded); font-weight: 700; font-size: 21px; color: var(--mn-red); }
.combo-box--featured { background: var(--mn-red); color: #fff; box-shadow: 3px 3px 0 var(--mn-ink-900); }
.combo-box--featured .combo-box-price { color: var(--mn-gold); }

/* ---- Tiffin page ---------------------------------------------------------- */
.tiffin-hero {
  background-color: var(--mn-gold);
  background-image: linear-gradient(rgba(252, 200, 0, .88), rgba(252, 200, 0, .88)), url("../assets/patterns/pattern-2.png");
  background-size: auto, 220px;
  color: var(--mn-ink-900); overflow: hidden; position: relative;
}
.tiffin-hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 56px 20px 68px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; align-items: center;
}
.tiffin-hero h1 {
  font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08; margin: 16px 0 14px; color: var(--mn-ink-900);
}
.tiffin-hero-lede { font-size: 17px; line-height: 1.7; max-width: 460px; margin: 0 0 26px; color: var(--mn-ink-800); }
.tiffin-hero-visual { position: relative; min-height: 320px; display: flex; justify-content: center; }
.tiffin-hero-frame-wrap { position: relative; width: 100%; max-width: 440px; }
.tiffin-hero-frame {
  border: var(--border-chunky) solid var(--mn-ink-900); border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--mn-ink-900); overflow: hidden; background: #fff;
}
.tiffin-hero-frame .photo-slot { height: 320px; }
.tiffin-hero-sticker {
  position: absolute; top: -14px; right: -12px;
  background: var(--mn-red); color: #fff;
  border: var(--border-chunky) solid var(--mn-ink-900); border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 var(--mn-ink-900); padding: 10px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  animation: mn-bob-alt 3.4s ease-in-out infinite;
}
.section-block { max-width: 1180px; margin: 0 auto; padding: 68px 20px 30px; }
.section-block-head { margin-bottom: 26px; }
.two-col-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.service-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.service-card-head img { width: 52px; }
.service-card-head strong { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--text-strong); }
.service-card p { color: var(--text-body); font-size: 15px; line-height: 1.65; margin: 0 0 14px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.steps-section { max-width: 1180px; margin: 0 auto; padding: 54px 20px 68px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 26px 24px;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-rounded); font-weight: 700; font-size: 24px; margin-bottom: 14px;
}
.step-num--red { background: var(--mn-red); color: #fff; }
.step-num--gold { background: var(--mn-gold); color: var(--mn-ink-900); }
.step-num--ink { background: var(--mn-ink-900); color: #fff; }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 6px; color: var(--text-strong); }
.step-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.ink-section { background: var(--mn-ink-900); color: #fff; position: relative; overflow: hidden; }
.ink-section-inner { max-width: 1180px; margin: 0 auto; padding: 68px 20px; }
.ink-section .section-eyebrow { color: var(--mn-gold); }
.ink-section h2 { color: #fff; }
.ink-lede { font-size: 15.5px; line-height: 1.7; color: rgba(255, 255, 255, .82); margin: 0; }
.pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pack-tile {
  border: 2px solid rgba(255, 255, 255, .2); border-radius: var(--radius-md);
  overflow: hidden; background: var(--mn-ink-800);
}
.pack-tile .photo-slot { height: 230px; }
.pack-tile-caption { padding: 12px 16px; font-size: 14px; }
.cta--tiffin .cta-brush { font-size: clamp(40px, 5.4vw, 58px); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Story page ----------------------------------------------------------- */
.story-hero { position: relative; overflow: hidden; text-align: center; background: var(--surface-page); }
.story-hero-inner { max-width: 760px; margin: 0 auto; padding: 76px 20px 64px; }
.story-hero-brush { font-family: var(--font-brush); font-size: clamp(48px, 7vw, 72px); line-height: 1; color: var(--mn-red); }
.story-hero h1 { font-size: clamp(28px, 3.8vw, 42px); line-height: 1.15; margin: 18px 0 12px; }
.story-hero-lede { font-size: 17px; line-height: 1.75; color: var(--text-body); margin: 0; }
.story-float { position: absolute; }
.story-float--1 { left: 6%; top: 110px; width: 84px; opacity: .9; }
.story-float--2 { right: 7%; top: 80px; width: 72px; opacity: .9; }
.story-float--3 { right: 16%; bottom: 30px; width: 60px; opacity: .75; }
@media (max-width: 767px) {
  /* Design note: hide the floating side bowls on mobile */
  .story-float { display: none; }
}
.story-origin { background: #fff; border-top: 1px solid var(--border-subtle); }
.story-origin-inner {
  max-width: 1180px; margin: 0 auto; padding: 68px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px; align-items: center;
}
.story-origin-frame {
  border: var(--border-chunky) solid var(--mn-ink-900); border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--mn-red); overflow: hidden; background: #fff;
}
.story-origin-frame .photo-slot { height: 360px; }
.story-origin h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; margin: 8px 0 14px; }
.story-origin-copy { font-size: 15.5px; line-height: 1.75; margin: 0 0 20px; max-width: 470px; }
.milestones { display: flex; flex-direction: column; gap: 12px; }
.milestone { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.milestone b { font-family: var(--font-rounded); }
.milestone-dot { width: 14px; height: 14px; border-radius: 50%; border: var(--border-chunky) solid var(--mn-ink-900); flex: none; }
.milestone-dot--red { background: var(--mn-red); }
.milestone-dot--gold { background: var(--mn-gold); }
.milestone-dot--ink { background: var(--mn-ink-900); }
.philosophy-section { max-width: 1180px; margin: 0 auto; padding: 68px 20px; }
.philosophy-head { text-align: center; margin-bottom: 30px; }
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.philosophy-card img { width: 64px; margin-bottom: 10px; }
.philosophy-card strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 6px; color: var(--text-strong); }
.philosophy-card p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.ck-inner {
  max-width: 1180px; margin: 0 auto; padding: 68px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px; align-items: center;
}
.ck-copy { font-size: 15.5px; line-height: 1.75; color: rgba(255, 255, 255, .82); margin: 0 0 20px; max-width: 460px; }
.ck-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ck-photo {
  border: 2px solid rgba(255, 255, 255, .2); border-radius: var(--radius-md);
  overflow: hidden; background: var(--mn-ink-800);
}
.ck-photo .photo-slot { height: 300px; }
.ck-photo--offset { margin-top: 26px; }
.story-quote {
  background-color: var(--mn-gold);
  background-image: linear-gradient(rgba(252, 200, 0, .88), rgba(252, 200, 0, .88)), url("../assets/patterns/pattern-2.png");
  background-size: auto, 200px;
  text-align: center;
}
.story-quote-inner { max-width: 720px; margin: 0 auto; padding: 58px 20px; }
.story-quote-brush { font-family: var(--font-brush); font-size: clamp(40px, 6vw, 60px); line-height: 1.15; color: var(--mn-ink-900); }
.story-quote p { font-size: 15px; color: var(--mn-ink-800); margin: 10px 0 22px; }

/* ---- Outlets page ---------------------------------------------------------- */
.outlets-list {
  max-width: 1180px; margin: 0 auto; padding: 60px 20px 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px;
}
.outlet-map { position: relative; }
.outlet-map .photo-slot { height: 240px; }
.outlet-map .mn-badge { position: absolute; top: 12px; left: 12px; pointer-events: none; }
.outlet-card-body { padding: 20px 22px 24px; }
.outlet-card-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--text-strong); }
.outlet-card-addr { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 6px 0 12px; }
.outlet-card-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.outlet-card-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Contact page ----------------------------------------------------------- */
.contact-hero-inner { max-width: 760px; margin: 0 auto; padding: 56px 20px 64px; }
.contact-hero-copy { font-size: 16.5px; margin: 14px 0 26px; }
.contact-hero-cta { display: inline-flex; flex-direction: column; gap: 10px; align-items: center; }
.contact-hero-hours { font-size: 13px; color: rgba(255, 255, 255, .85); }
.contact-grid {
  max-width: 1180px; margin: 0 auto; padding: 64px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px; align-items: start;
}
.contact-intro { padding-top: 26px; }
.contact-intro h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; margin: 8px 0 12px; }
.contact-intro-copy { font-size: 15.5px; line-height: 1.7; max-width: 440px; margin: 0 0 22px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.contact-link {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  color: var(--text-body); background: #fff;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-sm); min-height: 44px;
  transition: border-color var(--duration-normal) var(--ease-out);
}
.contact-link:hover { border-color: var(--mn-red); color: var(--text-body); }
.contact-link .lead { font-family: var(--font-rounded); font-weight: 700; color: var(--mn-red); }
.contact-form-card { padding: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group-label { font-size: 13.5px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.form-hint { font-size: 12.5px; color: var(--text-subtle); text-align: center; }
@media (max-width: 500px) {
  .contact-form-card { padding: 22px 18px; }
}

/* ---- Coming-soon stub pages --------------------------------------------- */
.stub { max-width: 720px; margin: 0 auto; padding: 96px 20px 110px; text-align: center; }
.stub-bowl {
  width: 150px; height: 150px; border-radius: 50%; background: #fff;
  border: var(--border-chunky) solid var(--mn-ink-900); box-shadow: var(--shadow-sticker);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
}
.stub-bowl img { width: 68%; }
.stub h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 10px; }
.stub p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 0 auto 28px; max-width: 460px; }
.stub-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
