:root {
  --paper: #fbf5eb;
  --paper-warm: #f3e4c8;
  --paper-deep: #e8d7b2;
  --ink: #201914;
  --ink-soft: #3c3229;
  --muted: #817466;
  --red: #b5302c;
  --red-deep: #8e2320;
  --wood: #6b4423;
  --jade: #577a54;
  --yolk: #e8a937;
  --line: #dfd2ba;
  --white: #fffdf8;
  --shadow: 0 18px 48px rgba(55, 35, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Inter", system-ui, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(32, 25, 20, 0.12);
  background: rgba(251, 245, 235, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--paper);
  font-family: "Noto Serif SC", serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.brand-cn,
.footer-brand {
  display: block;
  color: var(--wood);
  font-family: "ZCOOL KuaiLe", "Noto Serif SC", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-en {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(181, 48, 44, 0.1);
  color: var(--red-deep);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.icon-button,
.order-link,
.primary-action,
.secondary-action,
.filter-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.order-link,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 0 var(--red-deep);
}

.order-link:hover,
.order-link:focus-visible,
.primary-action:hover,
.primary-action:focus-visible {
  background: #c93a35;
  outline: none;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid currentColor;
  background: transparent;
  color: var(--white);
}

.secondary-action.light {
  color: var(--red-deep);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.secondary-action.light:hover,
.secondary-action.light:focus-visible {
  background: rgba(181, 48, 44, 0.08);
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

.icon-lines,
.icon-lines::before,
.icon-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.icon-lines {
  position: relative;
}

.icon-lines::before,
.icon-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.icon-lines::before {
  top: -7px;
}

.icon-lines::after {
  top: 7px;
  width: 14px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(32, 25, 20, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  display: flex;
  width: min(86vw, 360px);
  height: 100%;
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
}

.mobile-panel a {
  padding: 1rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-panel .mobile-order {
  display: grid;
  min-height: 52px;
  margin-top: auto;
  padding: 0.85rem;
  place-items: center;
  border: 0;
  background: var(--red);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  align-items: end;
  background:
    radial-gradient(circle at 80% 12%, rgba(232, 169, 55, 0.28), transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, #3b2518 55%, var(--red-deep) 100%);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.56;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 25, 20, 0.92) 0%, rgba(32, 25, 20, 0.72) 50%, rgba(32, 25, 20, 0.28) 100%),
    linear-gradient(180deg, transparent 0%, rgba(32, 25, 20, 0.88) 100%);
  content: "";
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 4rem 1rem 5rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(87, 122, 84, 0.92);
  color: #f7fff3;
  font-size: 0.85rem;
  font-weight: 800;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9dffa9;
  box-shadow: 0 0 12px #9dffa9;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.on-dark .eyebrow {
  color: var(--yolk);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--paper);
  font-family: "ZCOOL KuaiLe", "Noto Serif SC", serif;
  font-size: 3.9rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 0.55rem 0 0;
  color: var(--yolk);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.08rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-card {
  display: grid;
  width: min(100% - 2rem, 1180px);
  margin: -2rem auto 1.25rem;
  gap: 0.75rem;
}

.hero-card div {
  min-height: 82px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
}

.hero-card span,
.info-grid span {
  display: block;
  color: var(--yolk);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 0.25rem;
}

.quick-strip {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.85rem max(1rem, calc((100vw - 1180px) / 2));
  background: var(--red);
  color: var(--white);
  scrollbar-width: none;
}

.quick-strip::-webkit-scrollbar {
  display: none;
}

.quick-strip span {
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 800;
}

.section {
  padding: 4.25rem 1rem;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 2.3rem;
  line-height: 1.05;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  gap: 1.2rem;
}

.signature-section,
.visit-section {
  background: var(--paper);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dish-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dish-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.dish-card div {
  padding: 1rem;
}

.dish-card h3 {
  margin: 0.6rem 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.dish-card p {
  margin: 0.65rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.dish-card strong,
.menu-group strong {
  color: var(--red);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 1.12rem;
  font-weight: 500;
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-section {
  background: var(--paper-warm);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.filter-tabs button {
  flex: 0 0 auto;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red-deep);
}

.filter-tabs button.active,
.filter-tabs button:hover,
.filter-tabs button:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-group {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(55, 35, 18, 0.08);
}

.menu-group[hidden] {
  display: none;
}

.menu-group h3 {
  margin: 0 0 0.6rem;
  color: var(--red-deep);
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
}

.menu-group div {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px dashed var(--line);
}

.menu-group span {
  min-width: 0;
  font-weight: 800;
}

.menu-group small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-group div::after {
  height: 1px;
  flex: 1;
  border-bottom: 1px dotted #b8a98d;
  content: "";
}

.menu-board {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  align-items: start;
  background: var(--ink);
  color: var(--white);
  padding: 1rem;
}

.menu-board h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
}

.menu-board p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.menu-board img {
  width: 100%;
  border: 8px solid rgba(255, 253, 248, 0.12);
}

.shop-section,
.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(181, 48, 44, 0.24), transparent 28%),
    linear-gradient(180deg, var(--ink) 0%, #2b1f18 100%);
  color: var(--paper);
}

.on-dark h2,
.on-dark p:not(.eyebrow) {
  color: var(--paper);
}

.on-dark p:not(.eyebrow) {
  opacity: 0.76;
}

.shop-gallery {
  display: grid;
  gap: 1rem;
}

.shop-gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.shop-gallery figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(32, 25, 20, 0.8);
  color: var(--paper);
  font-weight: 900;
}

.shop-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.shop-facts div {
  min-height: 110px;
  padding: 1rem;
  border: 1px solid rgba(251, 245, 235, 0.16);
  background: rgba(251, 245, 235, 0.06);
}

.shop-facts strong {
  display: block;
  color: var(--yolk);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 1.8rem;
  font-weight: 500;
}

.shop-facts span {
  color: rgba(251, 245, 235, 0.7);
}

.visit-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.info-grid article {
  min-height: 110px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(55, 35, 18, 0.08);
}

.info-grid span {
  color: var(--red);
}

.info-grid strong {
  display: block;
  margin-top: 0.35rem;
}

.visit-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.visit-map svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 52%;
  display: grid;
  width: max-content;
  max-width: 210px;
  transform: translate(-50%, -100%);
  gap: 0.1rem;
  padding: 0.75rem 0.9rem;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(32, 25, 20, 0.24);
}

.map-pin::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 12px solid var(--red);
  content: "";
  transform: translateX(-50%);
}

.map-pin strong {
  font-family: "Noto Serif SC", serif;
}

.map-pin span {
  font-size: 0.78rem;
  opacity: 0.84;
}

.site-footer {
  padding: 3rem 1rem;
}

.footer-inner {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  gap: 1.4rem;
}

.footer-brand {
  color: var(--paper);
  font-size: 2rem;
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: rgba(251, 245, 235, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yolk);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 560px) {
  .hero-card,
  .info-grid,
  .shop-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    padding-right: 27rem;
  }

  h1 {
    font-size: 5.4rem;
  }

  .hero-card {
    position: absolute;
    right: max(1rem, calc((100vw - 1180px) / 2));
    bottom: 2rem;
    width: min(370px, 32vw);
    margin: 0;
    grid-template-columns: 1fr;
  }

  .split-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .signature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card {
    grid-column: span 2;
  }

  .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-board {
    grid-template-columns: 0.65fr 1fr;
    padding: 1.25rem;
  }

  .shop-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .shop-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .section-heading h2 {
    font-size: 2.85rem;
  }
}

@media (max-width: 440px) {
  .brand-cn {
    font-size: 1.2rem;
  }

  .brand-en {
    display: none;
  }

  .order-link {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }
}
