:root {
  --bg: #0f1014;
  --bg-soft: #181a21;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: #1f2330;
  --text: #f5f7ff;
  --text-soft: #b5bfd3;
  --brand: #d93a1c;
  --brand-soft: #ff8b4a;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 20px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #2a1311, transparent 35%),
    radial-gradient(circle at 80% 90%, #172134, transparent 30%), var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.dragon-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: 50% 46%;
  background-size: min(84vw, 980px);
  opacity: 0.2;
  transform: translateZ(0);
  background-image: url("dragon.png");
  -webkit-mask-image: radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.7) 52%, rgba(0, 0, 0, 0.25) 68%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.7) 52%, rgba(0, 0, 0, 0.25) 68%, transparent 82%);
}

.orb {
  position: absolute;
  filter: blur(70px);
  opacity: 0.45;
  border-radius: 50%;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: #f34e24;
  top: -100px;
  right: 10%;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: #2d77ff;
  bottom: -140px;
  left: 8%;
}

.orb-c {
  width: 220px;
  height: 220px;
  background: #ffaf45;
  top: 45%;
  left: 45%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 18, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-emblem {
  width: 52px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff7d3f, #c63717);
  box-shadow:
    0 10px 24px rgba(150, 33, 8, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-emblem::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 220, 165, 0.65);
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.4), transparent 44%);
}

.brand-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 1.35rem;
  color: #fff1cc;
  text-shadow: 0 0 8px rgba(255, 206, 137, 0.45);
  z-index: 1;
}

.brand-text {
  display: grid;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--text);
  font-family: "ZCOOL XiaoWei", serif;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  font-weight: 600;
  color: #dfe5f7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  background: linear-gradient(120deg, var(--brand), var(--brand-soft));
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  padding: 0.55rem 1rem;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  padding: clamp(3rem, 8vw, 6.5rem) 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #ffb77c;
}

.heritage-strip {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.heritage-strip span {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 1.05rem;
  color: #601208;
  background: linear-gradient(145deg, #ffd24e, #f0a300);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.lead {
  color: var(--text-soft);
  margin: 1rem 0 0;
  max-width: 58ch;
}

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

.quick-data {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: #cfd7e9;
}

.quick-data li::before {
  content: "中";
  margin-right: 0.5rem;
  color: #ff9f62;
  font-family: "ZCOOL XiaoWei", serif;
  font-weight: 700;
}

.notice-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: #ece2db;
  display: grid;
  gap: 0.45rem;
}

.notice-list li,
.contact-card ul li {
  position: relative;
  padding-left: 1.3rem;
}

.notice-list li::before,
.contact-card ul li::before {
  content: "中";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #ffb468;
  font-family: "ZCOOL XiaoWei", serif;
  font-weight: 700;
}

.hero-card,
.feature,
.contact-card,
.hours-card,
.menu-panel,
.family-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.35rem;
  display: grid;
}

.hero-card article {
  padding: 1.3rem;
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(145deg, rgba(217, 58, 28, 0.24), rgba(35, 43, 66, 0.24));
}

.hero-banner {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 45%),
    linear-gradient(140deg, rgba(121, 15, 7, 0.85), rgba(35, 8, 6, 0.55));
}

.neon-title {
  margin: 0;
  color: #79beff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(62, 168, 255, 0.72),
    0 0 22px rgba(62, 168, 255, 0.45);
}

.hero-banner h2 {
  margin-top: 0.3rem;
  color: #ffb073;
  font-family: "ZCOOL XiaoWei", serif;
  letter-spacing: 0.04em;
}

.food-collage {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.food {
  height: 5.2rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-size: cover;
  background-position: center;
}

.food-a {
  background-image:
    radial-gradient(circle at 70% 25%, #ffb875, transparent 35%),
    linear-gradient(120deg, #792b1e, #1a232f);
}

.food-b {
  background-image:
    radial-gradient(circle at 30% 20%, #8fdb7e, transparent 30%),
    radial-gradient(circle at 65% 55%, #f06f3f, transparent 35%),
    linear-gradient(120deg, #57311d, #2a2921);
}

.food-c {
  background-image:
    radial-gradient(circle at 75% 25%, #fff1c9, transparent 34%),
    linear-gradient(120deg, #5b3217, #312c22);
}

.hero-card p {
  color: #dfd7d4;
}

.price-row {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.2rem;
}

.feature p,
.muted {
  color: var(--text-soft);
}

.tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #f0f4ff;
  border-radius: 999px;
  padding: 0.56rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.tab.is-active {
  background: linear-gradient(120deg, var(--brand), var(--brand-soft));
  border-color: transparent;
}

.menu-tools {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 2fr 1.4fr auto;
  align-items: end;
}

.menu-tools.is-hidden {
  display: none;
}

.tool-field {
  display: grid;
  gap: 0.35rem;
}

.tool-field span {
  font-size: 0.85rem;
  color: #f9cf9d;
  font-weight: 700;
}

.tool-field input,
.tool-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.tool-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  min-height: 42px;
  font-weight: 700;
}

.menu-panel {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.menu-note {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffe4b9;
  background: rgba(217, 58, 28, 0.13);
}

.menu-accordion {
  display: grid;
  gap: 0.8rem;
}

.menu-accordion details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.menu-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #ffd8a3;
  border-bottom: 1px solid transparent;
}

.menu-accordion details[open] summary {
  border-bottom-color: var(--line);
}

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

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  padding-bottom: 0.75rem;
  padding-top: 0.2rem;
}

.menu-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-row h3 {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-row strong {
  white-space: nowrap;
  color: #ffe3be;
}

.menu-row h3::before {
  content: "中";
  color: #ffb25d;
  font-family: "ZCOOL XiaoWei", serif;
  font-weight: 700;
}

.recommend-badge {
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 217, 156, 0.5);
  color: #ffddab;
  background: rgba(255, 165, 56, 0.13);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

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

.family-card {
  padding: 1rem;
}

.family-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  padding-bottom: 0.55rem;
}

.family-card ol {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: family-step;
  color: var(--text-soft);
  display: grid;
  gap: 0.3rem;
}

.family-card ol li {
  counter-increment: family-step;
  position: relative;
  padding-left: 2rem;
}

.family-card ol li::before {
  content: "中 " counter(family-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb468;
  font-family: "ZCOOL XiaoWei", serif;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-card,
.hours-card {
  padding: 1.3rem;
}

.contact-card ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: #dbe2f4;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: var(--text-soft);
}

.empty-state h3 {
  margin-bottom: 0.35rem;
  color: #ffe1b7;
}

.hours-card dl {
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.hours-card dt {
  color: #ffe6bd;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f6fff8;
  background: linear-gradient(135deg, #14a94e, #0f7a39);
  box-shadow: 0 14px 30px rgba(4, 40, 18, 0.45);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.wa-icon {
  width: 1.4rem;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .feature-grid,
  .family-grid,
  .menu-tools {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 74px 1rem auto;
    background: #10131c;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.65rem 0.78rem;
    font-size: 0.92rem;
  }
}
