:root {
  --bg: #0f0d0d;
  --bg-soft: #171212;
  --panel: rgba(24, 16, 16, 0.94);
  --panel-2: #201718;
  --red: #9f1422;
  --red-strong: #ce1f2d;
  --red-soft: #6d1017;
  --cream: #f3ebdc;
  --gold: #d9b26d;
  --muted: #d9c6aa;
  --muted-2: #a58d72;
  --shadow: rgba(0, 0, 0, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --success: #d6ba76;
  --font-sans: "Inter", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top, rgba(164, 29, 42, 0.18), transparent 35%),
    linear-gradient(180deg, #0d0b0d 0%, #11100f 25%, #130f10 100%);
  color: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
  font-weight: 600;
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 11, 11, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, #d53d49 100%);
  box-shadow: 0 0 22px rgba(201, 44, 58, 0.45);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.brand-copy small {
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.nav-order {
  color: rgba(243, 235, 220, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-order {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 178, 109, 0.5);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 36px;
  background: linear-gradient(120deg, rgba(22, 14, 14, 0.7), rgba(22, 14, 14, 0.15));
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(204, 42, 39, 0.3), transparent 25%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 26px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.chinese-name {
  margin-top: 8px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.18rem;
}

.lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.choice-btn:hover,
.surprise-btn:hover,
.nav-order:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #d52d3d 100%);
  box-shadow: 0 14px 32px rgba(188, 36, 44, 0.42);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 610px);
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 16, 17, 0.56);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.hero-card img {
  width: 100%;
  height: min(70vw, 560px);
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(1.05) contrast(1.04);
}

.steam {
  position: absolute;
  bottom: 26px;
  width: 80px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.3), rgba(255,255,255,0.08) 30%, transparent 70%);
  filter: blur(8px);
  opacity: 0.65;
  animation: steam-rise 9s ease-in-out infinite;
}

.steam-one { left: 12%; }
.steam-two { left: 52%; animation-delay: 1.7s; }
.steam-three { right: 12%; animation-delay: 3.6s; }

@keyframes steam-rise {
  0% {
    transform: translateY(20px) scale(0.7);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-30px) scale(1.05);
    opacity: 0;
  }
}

.market-preview {
  padding: 12px 0 34px;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stall {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.stall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 13, 0.1), rgba(15, 13, 13, 0.8));
}

.stall > * {
  position: relative;
  z-index: 1;
}

.stall-red {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=80");
}

.stall-dark {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80");
}

.stall-tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 178, 109, 0.5);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(12, 9, 8, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.14rem;
}

.stall h3 {
  margin: 0;
  font-size: 1.7rem;
  font-family: var(--font-display);
  line-height: 1;
  max-width: 180px;
}

.menu {
  padding: 40px 0 20px;
}

#menu-categories {
  display: grid;
  gap: 30px;
}

.category-block {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.category-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-family: var(--font-display);
}

.category-heading span {
  color: rgba(243, 235, 220, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dish-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(27, 20, 20, 0.96);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.dish-image-wrap {
  position: relative;
  min-height: 200px;
}

.dish-image-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.dish-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(9, 7, 7, 0.52);
  border: 1px solid rgba(217, 178, 109, 0.4);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08rem;
}

.dish-body {
  padding: 18px 18px 16px;
}

.dish-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dish-headline h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.dish-headline span {
  color: var(--gold);
  font-size: 1.1rem;
}

.dish-sub {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.08rem;
}

.dish-body p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: rgba(243, 235, 220, 0.78);
}

.ingredients-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px;
  color: rgba(243, 235, 220, 0.66);
  font-size: 0.88rem;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.spice {
  font-size: 1rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-btn,
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.card-btn {
  background: rgba(255, 255, 255, 0.04);
}

.link-btn {
  color: var(--gold);
  border-color: rgba(217, 178, 109, 0.4);
}

.discover {
  padding: 42px 0 20px;
}

.decision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.choices-panel,
.recommendation-panel {
  padding: 24px 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(22, 15, 15, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
}

.choices-panel h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-btn,
.surprise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s ease;
}

.choice-btn.active {
  border-color: rgba(217, 178, 109, 0.8);
  background: rgba(217, 178, 109, 0.12);
  color: var(--gold);
}

.surprise-btn {
  color: var(--cream);
  border-color: rgba(217, 178, 109, 0.45);
}

.result-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
}

.result-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.result-card h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1;
  font-family: var(--font-display);
}

.result-card .suggestion-zh {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  margin-bottom: 8px;
}

.result-card p {
  margin: 0 0 14px;
  color: rgba(243, 235, 220, 0.8);
  line-height: 1.7;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
  color: rgba(243, 235, 220, 0.78);
  font-size: 0.85rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-card.reveal {
  animation: reveal-card 0.5s ease;
}

@keyframes reveal-card {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bowl-builder {
  padding: 34px 0 34px;
}

.builder-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(22, 15, 15, 0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.builder-step {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.builder-step h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  cursor: pointer;
}

.option-pill.selected {
  border-color: rgba(217, 178, 109, 0.8);
  background: rgba(217, 178, 109, 0.12);
  color: var(--gold);
}

.builder-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
  padding-top: 6px;
}

.bowl-preview {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
}

.bowl-preview h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.bowl-summary-text {
  margin: 0;
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.8);
}

.bowl-total-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(159, 20, 34, 0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(217, 178, 109, 0.3);
}

.bowl-total-box span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--gold);
}

.bowl-total-box strong {
  font-size: 2rem;
}

.story {
  padding: 26px 0 140px;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.story-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  font-family: var(--font-display);
}

.story-copy p {
  margin: 0 0 16px;
  color: rgba(243, 235, 220, 0.78);
  line-height: 1.9;
}

.story-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 430px;
}

.story-photo {
  border-radius: 22px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

.photo-one {
  background-image: url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=900&q=80");
  transform: translateY(30px);
}

.photo-two {
  background-image: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=80");
}

.order-dock {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 40;
}

.order-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red) 0%, #d52d3d 100%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(206, 31, 45, 0.36);
}

.order-badge {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.order-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 32px));
  max-height: 72vh;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18, 13, 12, 0.97);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.25s ease;
}

.order-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.order-panel-header h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.close-panel {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 1.35rem;
  cursor: pointer;
}

.order-items {
  max-height: 330px;
  overflow-y: auto;
  padding: 16px 18px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.order-item-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.order-item-info p {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.order-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  cursor: pointer;
}

.order-item-price {
  color: var(--cream);
  font-weight: 600;
}

.order-summary {
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(243, 235, 220, 0.82);
  margin-bottom: 10px;
}

.total-row {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.1rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 7, 0.7);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 32px));
  max-height: min(88vh, 840px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(26, 18, 18, 0.96), rgba(15, 12, 12, 0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.46);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  min-height: 100%;
}

.modal-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 24px 26px 26px;
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.modal-body h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 0.9;
  font-family: var(--font-display);
}

.modal-zh {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  letter-spacing: 0.12rem;
}

.modal-price {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.modal-copy {
  margin: 0 0 18px;
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.8);
}

.meta-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 18px;
}

.meta-block div {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.meta-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--gold);
}

.meta-block span {
  font-size: 0.95rem;
  color: rgba(243, 235, 220, 0.88);
}

.modal-ingredients {
  margin: 0 0 18px;
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.76);
}

.modal-story {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  line-height: 1.8;
  color: rgba(243, 235, 220, 0.82);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.3);
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

.empty-order {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: rgba(243, 235, 220, 0.66);
  text-align: center;
}

@media (max-width: 980px) {
  .hero-inner,
  .story-layout,
  .decision-grid,
  .builder-shell,
  .modal-content {
    grid-template-columns: 1fr;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(12, 10, 10, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .market-strip,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .builder-summary {
    grid-template-columns: 1fr;
  }

  .order-dock {
    right: 14px;
    bottom: 14px;
  }
}
