/* MALAHẦM — Landing page styles */

@font-face {
  font-family: 'Anek Latin Expanded';
  src: url('fonts/AnekLatin-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Anek Latin Expanded';
  src: url('fonts/AnekLatin-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SVN Circular';
  src: url('fonts/SVN-Circular-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --mh-red: #C8242A;
  --mh-red-deep: #951818;
  --mh-maroon: #5C1015;
  --mh-cream: #F2E5C8;
  --mh-cream-soft: #FBF6E9;
  --mh-paper: #EFE3C5;
  --mh-charcoal: #1A1410;
  --mh-ink: #2A211B;
  --mh-ember: #D17B3F;
  --mh-gold: #C8A04E;
  --mh-mute: #8A7A66;
  --mh-line: rgba(26, 20, 16, 0.12);

  --font-display: 'Anek Latin Expanded', 'Archivo Black', sans-serif;        /* biggest titles - SemiBold 600 */
  --font-heading: 'Anek Latin Expanded', 'Archivo Black', sans-serif;        /* regular titles - Medium 500 */
  --font-sans: 'SVN Circular', 'Be Vietnam Pro', system-ui, sans-serif;      /* body */
  --font-cn: 'Noto Serif SC', serif;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  background: var(--mh-cream);
  color: var(--mh-ink);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
/* Touch handling: prevent rubber-band horizontal pan on mobile */
@media (max-width: 720px) {
  html, body { touch-action: pan-y; overscroll-behavior-x: none; }
}

img { max-width: 100%; display: block; }

.wrap { width: min(100% - 48px, var(--container)); margin-inline: auto; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(242, 229, 200, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mh-line);
}
/* backdrop-filter creates a containing block that traps the fixed-position
   drawer inside the nav. Disable it whenever the drawer is open. */
.nav.menu-open,
.nav.menu-open.scrolled {
  backdrop-filter: none;
  background: var(--mh-cream);
  box-shadow: none;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--mh-charcoal); text-decoration: none;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--mh-red); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--mh-red); transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mh-red); color: white;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--mh-red-deep); transform: translateY(-1px); }
.nav-cta .arrow { display: inline-block; transition: transform 0.2s ease; }
.nav-cta:hover .arrow { transform: translateX(3px); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--mh-line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--mh-charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.menu-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
.nav.menu-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  padding: 110px 0 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.hero-bg-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      95deg,
      var(--mh-cream) 0%,
      var(--mh-cream) 38%,
      rgba(242, 229, 200, 0.85) 52%,
      rgba(242, 229, 200, 0.3) 66%,
      rgba(242, 229, 200, 0) 80%
    );
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  height: 100%;
}
.hero-text { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--mh-red);
  margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--mh-red); border-radius: 50%; }
.hero-eyebrow .cn { font-family: var(--font-cn); letter-spacing: 0.08em; color: var(--mh-ember); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--mh-charcoal);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; color: var(--mh-red); }
.hero-title .swash {
  display: inline-block;
  color: var(--mh-red);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 17px; line-height: 1.5;
  color: var(--mh-ink);
  max-width: 480px;
  margin-bottom: 26px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mh-charcoal); color: var(--mh-cream);
  padding: 18px 30px; border: 0;
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; border-radius: 2px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--mh-red); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--mh-charcoal); text-decoration: none;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 2px solid var(--mh-charcoal);
}
.btn-ghost:hover { color: var(--mh-red); border-color: var(--mh-red); }

.hero .stamp-badge {
  position: absolute;
  top: 120px;
  right: 48px;
  z-index: 2;
  width: 132px; height: 132px;
  background: var(--mh-red);
  color: white;
  display: grid; place-items: center;
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px rgba(120, 30, 20, 0.35);
  text-align: center;
  padding: 18px;
}
.hero .stamp-badge::after {
  content: ""; position: absolute; inset: 8px;
  border: 1.5px dashed rgba(255, 255, 255, 0.4); border-radius: 50%;
}
.hero .stamp-badge .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px; line-height: 1;
  letter-spacing: -0.02em;
}
.hero .stamp-badge .lbl {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.95;
}

.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--mh-line);
  flex-wrap: wrap;
}
@media (max-height: 760px) {
  .hero-title { font-size: clamp(36px, 4.6vw, 72px); }
  .hero-sub { margin-bottom: 18px; }
  .hero-meta { display: none; }
}
.hero-meta .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mh-mute);
}
.hero-meta .stars { display: inline-flex; gap: 2px; color: var(--mh-ember); }
.hero-meta .div { width: 1px; height: 16px; background: var(--mh-line); }
.hero-meta .txt { font-size: 13px; font-weight: 500; color: var(--mh-ink); }
.hero-meta .num { font-family: var(--font-display); font-size: 18px; color: var(--mh-red); }

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mh-mute);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--mh-charcoal), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--mh-charcoal);
  color: var(--mh-cream);
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: 0.01em;
  color: var(--mh-cream);
  text-transform: uppercase;
}
.ticker-item .cn { font-family: var(--font-cn); color: var(--mh-red); }
.ticker-item .star { color: var(--mh-red); font-size: 0.6em; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADERS ============ */
section { position: relative; }
.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mh-red);
}
.section-head .eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--mh-red);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--mh-charcoal);
  margin-top: 16px;
  text-transform: uppercase;
}
.section-head h2 .cn {
  font-family: var(--font-cn); color: var(--mh-red);
  font-size: 0.78em; margin-left: 0.1em;
}
.section-head .lead {
  font-size: 18px; line-height: 1.55;
  color: var(--mh-ink); max-width: 460px;
  align-self: end; padding-bottom: 6px;
}

/* ============ STORY ============ */
.story { padding: 120px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.story-card {
  background: var(--mh-cream-soft);
  padding: 36px;
  border: 1px solid var(--mh-line);
  position: relative;
}
.story-card .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px; color: var(--mh-red);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.story-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--mh-charcoal);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.story-card .cn {
  font-family: var(--font-cn);
  color: var(--mh-ember); font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.story-card p {
  color: var(--mh-ink); font-size: 15px; line-height: 1.6;
}

/* ============ BROTHS ============ */
.broths {
  padding: 64px 0 80px;
  background: var(--mh-cream-soft);
  position: relative;
}
.broths .section-head { margin-bottom: 24px; }
.broths .section-head h2 { font-size: clamp(32px, 4vw, 60px); }
.broths .section-head .lead { font-size: 16px; }

.broths::before {
  content: "麻";
  position: absolute; top: 60px; right: -40px;
  font-family: var(--font-cn); font-weight: 900;
  font-size: 460px; line-height: 0.8;
  color: var(--mh-red); opacity: 0.06;
  pointer-events: none;
}
/* ============ BROTHS (sticky spotlight, scroll-driven slider) ============ */
.broths {
  padding: 0;
  background: var(--mh-cream-soft);
  position: relative;
  height: 100vh; /* scroll is hijacked while engaged — section stays pinned via JS */
}
.broths-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
  overflow: hidden;
}
.broths-pin .section-head { margin-bottom: 24px; }
.broths-pin .section-head h2 { font-size: clamp(32px, 4vw, 60px); }
.broths-pin .section-head .lead { font-size: 16px; }

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 440px;
  margin-top: 8px;
  position: relative;
}

.spotlight-bowl {
  position: relative;
  aspect-ratio: 4991 / 4689;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  animation: bowl-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.spotlight-bowl img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes bowl-in {
  from { opacity: 0; transform: scale(0.94) rotate(-2deg); }
  to { opacity: 1; transform: none; }
}

.spotlight-text {
  position: relative;
  padding-right: 64px;
  animation: text-in 0.55s 0.06s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
@keyframes text-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.sp-num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--mh-mute);
  margin-bottom: 18px;
}
.sp-num-sep {
  color: var(--mh-red);
  margin: 0 6px;
}
.sp-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--mh-red);
  margin-bottom: 20px;
  text-wrap: balance;
  max-width: 460px;
}
.sp-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mh-ink);
  max-width: 440px;
}
.sp-cn {
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: var(--font-cn);
  color: var(--mh-ember);
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bowl-switcher {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--mh-line);
  position: relative;
}
.switcher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.switcher-item {
  background: transparent;
  border: 0;
  padding: 12px 12px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: inherit;
  position: relative;
}
.switcher-item:hover { border-top-color: rgba(200, 36, 42, 0.3); }
.switcher-item.active { border-top-color: var(--mh-red); }
.switcher-thumb {
  width: 64px; height: 64px;
  margin-bottom: 8px;
  opacity: 0.45;
  filter: grayscale(0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.switcher-item:hover .switcher-thumb {
  opacity: 0.85;
  filter: none;
}
.switcher-item.active .switcher-thumb {
  opacity: 1;
  filter: none;
  transform: scale(1.1) translateY(-2px);
}
.switcher-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.switcher-num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mh-mute);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.switcher-item.active .switcher-num { color: var(--mh-red); }
.switcher-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--mh-charcoal);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-wrap: balance;
  transition: color 0.3s ease;
}
.switcher-item.active .switcher-name { color: var(--mh-red); }

.switcher-progress {
  margin-top: 12px;
  height: 2px;
  background: var(--mh-line);
  border-radius: 2px;
  overflow: hidden;
}
.switcher-progress-bar {
  height: 100%;
  background: var(--mh-red);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Tablet & mobile — keep height: 100vh so the scroll-lock engagement zone
   still works. Just compact the contents to fit one screen. */
@media (max-width: 920px) {
  .broths-pin { padding: 28px 0 20px; }
  .broths-pin .section-head { margin-bottom: 16px; }
  .broths-pin .section-head h2 { font-size: clamp(26px, 5.6vw, 34px); }
  .broths-pin .section-head .lead { display: none; }
  .spotlight {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }
  .spotlight-bowl {
    max-width: 280px;
    width: 72%;
    margin: 0 auto;
  }
  .spotlight-text {
    text-align: center;
    padding-right: 0;
    padding-top: 0;
  }
  .sp-num { margin-bottom: 10px; font-size: 11px; }
  .sp-name {
    font-size: clamp(26px, 7vw, 40px);
    margin-bottom: 12px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-desc {
    font-size: 15px;
    line-height: 1.5;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-cn {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 12px;
  }
  .bowl-switcher { margin-top: 18px; padding-top: 14px; }
  .switcher-track {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .switcher-item { padding: 10px 4px 8px; }
  .switcher-thumb { width: 52px; height: 52px; margin-bottom: 6px; }
  .switcher-num { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 3px; }
  .switcher-name { font-size: 10px; line-height: 1.2; }
  .switcher-progress { margin-top: 10px; }
}
@media (max-width: 520px) {
  .spotlight-bowl { max-width: 260px; width: 72%; }
  .sp-desc { font-size: 14px; }
  .switcher-thumb { width: 44px; height: 44px; }
  .switcher-name { font-size: 9px; }
}
/* Very short viewports — drop the section heading entirely */
@media (max-width: 920px) and (max-height: 700px) {
  .broths-pin .section-head { display: none; }
  .broths-pin { padding-top: 80px; }
}

/* ============ HOW ============ */
.how { padding: 140px 0; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.how-step {
  background: var(--mh-cream-soft);
  border: 1px solid var(--mh-line);
  padding: 40px 32px 48px;
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column;
  transition: background 0.3s ease;
}
.how-step:hover { background: var(--mh-charcoal); color: var(--mh-cream); }
.how-step:hover .num { color: var(--mh-red); }
.how-step:hover h3, .how-step:hover p { color: inherit; }
.how-step .num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--mh-red); letter-spacing: 0.2em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.how-step .icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--mh-red); color: white;
  border-radius: 4px;
  margin-bottom: 32px;
  font-family: var(--font-cn); font-size: 30px; font-weight: 900;
}
.how-step h3 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 22px; line-height: 1.2;
  margin-bottom: 14px;
  color: var(--mh-charcoal);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: 14px; line-height: 1.6;
  color: var(--mh-ink);
  margin-top: auto;
}
.how-step .timing {
  position: absolute; top: 32px; right: 28px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px; color: var(--mh-mute);
  letter-spacing: 0.1em;
}

/* ============ TOPPING FEATURE ============ */
.toppings {
  background: var(--mh-red);
  color: var(--mh-cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.toppings::before {
  content: "麻";
  position: absolute; left: -100px; bottom: -180px;
  font-family: var(--font-cn); font-weight: 900;
  font-size: 700px; line-height: 0.8;
  color: var(--mh-cream); opacity: 0.06;
  pointer-events: none;
}
.toppings-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.toppings .eyebrow {
  color: var(--mh-cream); opacity: 0.7;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.toppings .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--mh-cream); }
.toppings h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.toppings .pricing {
  display: flex; align-items: baseline; gap: 16px;
  border-top: 1px solid rgba(251, 246, 233, 0.2);
  padding-top: 32px;
  margin-bottom: 32px;
}
.toppings .price-big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.toppings .price-meta {
  display: flex; flex-direction: column;
  font-weight: 700;
}
.toppings .price-meta .vnd { font-size: 22px; letter-spacing: 0.04em; }
.toppings .price-meta .per {
  background: var(--mh-cream); color: var(--mh-red);
  padding: 4px 8px; font-size: 12px; letter-spacing: 0.1em;
  margin-top: 8px; align-self: flex-start;
}
.toppings p.lede {
  font-size: 18px; line-height: 1.55;
  max-width: 460px; opacity: 0.9;
  margin-bottom: 32px;
}
.topping-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.topping-tag {
  padding: 10px 18px;
  border: 1px solid rgba(251, 246, 233, 0.3);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}
.topping-tag .cn { font-family: var(--font-cn); opacity: 0.7; margin-left: 8px; font-size: 11px; }

.topping-vis {
  position: relative;
  aspect-ratio: 1 / 1;
}
.topping-vis .plate {
  position: absolute; inset: 4%;
  border-radius: 50%;
  background: var(--mh-cream);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
}
.topping-vis .plate::before {
  content: ""; position: absolute; inset: 10%; border-radius: 50%;
  border: 1px solid rgba(200, 36, 42, 0.2);
}
.topping-orbit {
  position: absolute; inset: 0;
  animation: spin 60s linear infinite;
}
.topping-orbit.r { animation-direction: reverse; animation-duration: 80s; }
@keyframes spin { to { transform: rotate(360deg); } }
.topping-chip {
  position: absolute; width: 100px; height: 100px;
  border-radius: 50%; overflow: hidden;
  background: white;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  border: 4px solid var(--mh-cream);
}
.topping-chip img { width: 100%; height: 100%; object-fit: cover; }
.topping-chip.s1 { top: 6%; left: 50%; transform: translateX(-50%); width: 140px; height: 140px; }
.topping-chip.s2 { top: 50%; right: 0; transform: translateY(-50%); }
.topping-chip.s3 { bottom: 6%; left: 50%; transform: translateX(-50%); }
.topping-chip.s4 { top: 50%; left: 0; transform: translateY(-50%); }
.topping-chip.s5 { top: 18%; right: 14%; width: 80px; height: 80px; }
.topping-chip.s6 { bottom: 18%; left: 14%; width: 80px; height: 80px; }
.topping-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36%;
  text-align: center;
  font-family: var(--font-cn);
  color: var(--mh-red);
  pointer-events: none;
}
.topping-center .char {
  font-size: 140px; font-weight: 900; line-height: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.topping-center .lbl {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 12px; letter-spacing: 0.2em; color: var(--mh-charcoal);
  margin-top: 4px;
}

/* ============ LOCATIONS ============ */
.locations { padding: 140px 0; }
.loc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 24px;
}
.loc-card {
  background: var(--mh-cream-soft);
  border: 1px solid var(--mh-line);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.loc-card .map {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 36, 42, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(209, 123, 63, 0.15) 0%, transparent 30%),
    var(--mh-paper);
  position: relative;
  border-bottom: 1px solid var(--mh-line);
}
.loc-card .map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc-card .map .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  background: var(--mh-red); color: white;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 8px 16px rgba(120, 30, 20, 0.3);
  font-family: var(--font-cn); font-weight: 900;
}
.loc-card .map .pin span { transform: rotate(45deg); }
.loc-card .body { padding: 28px; }
.loc-card .status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mh-red);
  margin-bottom: 14px;
}
.loc-card .status.soon { color: var(--mh-mute); }
.loc-card .status .pip { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(200, 36, 42, 0.15); }
.loc-card .status.soon .pip { box-shadow: none; }
.loc-card h3 { font-family: var(--font-heading); font-weight: 500; font-size: 24px; margin-bottom: 12px; color: var(--mh-charcoal); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.15; }
.loc-card .addr { font-size: 14px; line-height: 1.6; color: var(--mh-ink); margin-bottom: 18px; }
.loc-card .hours {
  display: flex; gap: 20px;
  font-size: 12px; font-weight: 600;
  border-top: 1px solid var(--mh-line);
  padding-top: 16px;
}
.loc-card .hours span { color: var(--mh-mute); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.loc-card .hours b { color: var(--mh-charcoal); font-weight: 800; }

/* Single-store layout */
.loc-single { margin-top: 24px; }
.loc-card-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}
.loc-card-hero .map {
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
  border-bottom: none;
  border-right: 1px solid var(--mh-line);
}
.loc-card-hero .body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc-card-hero h3 { font-size: 38px; line-height: 1.05; margin-bottom: 18px; }
.loc-card-hero .addr { font-size: 16px; margin-bottom: 28px; max-width: 380px; }
.loc-card-hero .hours { font-size: 13px; padding-top: 24px; gap: 40px; }
.loc-card-hero .hours b { font-size: 16px; }
.map-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--mh-charcoal);
  color: var(--mh-cream);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .loc-card-hero { grid-template-columns: 1fr; }
  .loc-card-hero .map { min-height: 320px; border-right: none; border-bottom: 1px solid var(--mh-line); }
  .loc-card-hero .body { padding: 32px; }
  .loc-card-hero h3 { font-size: 28px; }
}

/* CTA band — short marquee variant (h2 only) */
.cta-band:has(.wrap > h2:only-child) { padding: 90px 0; }
.cta-band h2:only-child { margin: 0 auto; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--mh-charcoal); color: var(--mh-cream);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "麻"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-cn); font-weight: 900;
  font-size: 800px; line-height: 0.8;
  color: var(--mh-red); opacity: 0.06;
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.95; letter-spacing: -0.02em;
  position: relative; z-index: 1;
  text-transform: uppercase;
}
.cta-band h2 .red { color: var(--mh-red); }
.cta-band p {
  max-width: 540px; margin: 24px auto 0;
  font-size: 18px; opacity: 0.85;
  position: relative; z-index: 1;
}
.cta-band .actions {
  margin-top: 40px;
  display: flex; gap: 16px; justify-content: center;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.cta-band .btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mh-red); color: white;
  padding: 20px 36px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  transition: background 0.15s ease;
}
.cta-band .btn-red:hover { background: var(--mh-red-deep); }
.cta-band .btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--mh-cream);
  padding: 20px 36px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid rgba(251, 246, 233, 0.3);
  border-radius: 2px; text-decoration: none;
}
.cta-band .btn-line:hover { border-color: var(--mh-cream); }

/* ============ FOOTER ============ */
.footer {
  background: var(--mh-cream-soft);
  padding: 80px 0 32px;
  border-top: 1px solid var(--mh-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--mh-line);
}
.footer-brand .logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 28px;
}
.footer-brand p {
  font-size: 14px; color: var(--mh-ink); line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mh-red);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  text-decoration: none; color: var(--mh-charcoal);
  font-size: 14px; font-weight: 500;
}
.footer-col a:hover { color: var(--mh-red); }
.footer-hotline { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--mh-charcoal); line-height: 1; margin-bottom: 8px; letter-spacing: -0.01em; }
.footer-hotline-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mh-mute); }
.footer-address {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mh-ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mh-line);
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px; color: var(--mh-mute);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--mh-line);
  border-radius: 50%;
  color: var(--mh-charcoal);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-bottom .socials a:hover { background: var(--mh-red); color: white; border-color: var(--mh-red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .story-grid, .broths-grid, .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .toppings-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* mobile menu drawer */
  .nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--mh-cream);
    padding: 100px 32px 48px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    z-index: 105;
    overflow-y: auto;
  }
  .nav.menu-open .nav-links a {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    padding: 14px 0;
    color: var(--mh-charcoal);
  }
  .nav.menu-open .nav-links a::after { display: none; }
  .nav.menu-open .nav-cta { display: none; }
  .nav.menu-open { background: var(--mh-cream); }
}
@media (max-width: 720px) {
  .story-grid, .broths-grid, .loc-grid, .how-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 10px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .nav-cta .arrow { display: none; }

  /* HERO — stack text on top, photo below for clean mobile presentation */
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 96px 0 0;
    display: flex;
    flex-direction: column;
  }
  .hero-grid { order: 1; }
  .hero-bg {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 5 / 4;
    margin-top: 12px;
    flex-shrink: 0;
  }
  .hero-bg img { object-position: 65% center; }
  .hero-bg-fade {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(242, 229, 200, 0.6) 0%,
      rgba(242, 229, 200, 0) 12%
    );
  }
  .hero-grid { height: auto; gap: 0; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: clamp(38px, 11vw, 58px); margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 22px; }
  .hero-meta {
    font-size: 12px;
    margin-top: 24px;
    padding-top: 18px;
    gap: 10px;
  }
  .hero-meta .txt { font-size: 12px; }
  .hero-meta .div { display: none; }
  .hero .stamp-badge {
    top: auto; right: 16px;
    bottom: 20px;
    width: 88px; height: 88px;
    padding: 10px;
  }
  .hero .stamp-badge .num { font-size: 26px; }
  .hero .stamp-badge .lbl { font-size: 8px; letter-spacing: 0.14em; }

  /* FOOTER — compact two-column lists */
  .footer { padding: 56px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .logo { width: 110px; margin-bottom: 14px; }
  .footer-brand p { font-size: 13px; max-width: 100%; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col h4 { margin-bottom: 12px; font-size: 11px; }
  .footer-col ul { gap: 8px; }
  .footer-col a { font-size: 13px; }
  .footer-hotline { font-size: 24px; }
  .footer-bottom { padding-top: 20px; font-size: 11px; gap: 12px; }
  .footer-bottom .socials a { width: 32px; height: 32px; }
}
