:root {
  --cream: #f9f3e9;
  --cream-alt: #f3eadc;
  --paper: #fdfbf7;
  --brown: #5a3e2b;
  --brown-dark: #3e2a1a;
  --brown-light: #a08060;
  --green: #3b7a4e;
  --red: #b8302a;
  --red-dark: #8b1a1a;
  --text: #2e2218;
  --text-muted: #7a6655;
  --border: #ddd0c0;
  --border-light: #ebe0d0;
  --shadow: 0 2px 12px rgba(50, 30, 15, 0.06);
  --shadow-hover: 0 6px 20px rgba(50, 30, 15, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
}

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

.container {
  width: min(860px, 92%);
  margin: 0 auto;
}

/* === Language Show / Hide === */
body.lang-zh .en-only { display: none !important; }
body.lang-en .zh-only { display: none !important; }

/* === View Toggling === */
.page-view { display: none; }
body.view-home #view-home { display: block; }
body.view-menu #view-menu { display: block; }

/* === Top Navigation === */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: rgba(26, 14, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.top-nav.scrolled {
  background: rgba(26, 14, 8, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(218, 165, 32, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.nav-brand:hover { opacity: 0.85; }

.nav-brand-zh {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.nav-brand-en {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(218, 165, 32, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 7px 14px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 500;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:active {
  color: rgba(218, 165, 32, 0.9);
}

.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-switch-desktop {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin-left: 4px;
}

.nav-lang-mobile { display: none; }

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s ease;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.lang-btn:hover { color: rgba(255, 255, 255, 0.8); }

.lang-btn.active {
  color: rgba(218, 165, 32, 0.95);
  background: rgba(218, 165, 32, 0.08);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  margin: 0 1px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Prevent content from hiding behind fixed nav */
body {
  padding-top: 60px;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to bottom, rgba(10,5,3,0.55) 0%, rgba(10,5,3,0.35) 35%, rgba(10,5,3,0.5) 65%, rgba(10,5,3,0.65) 100%),
    url('/images/hero-hotpot.jpg');
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
  color: #f5eed8;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(59, 122, 78, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 48, 42, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-brand {
  margin-bottom: 24px;
}

.hero-cn {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 6.5vw, 3.8rem);
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  color: var(--cream);
}

.hero-en {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 600;
  color: rgba(218, 165, 32, 0.85);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ornament-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.5), transparent);
}

.ornament-diamond {
  display: block;
  width: 7px;
  height: 7px;
  background: rgba(218, 165, 32, 0.6);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-slogan {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: rgba(235, 190, 60, 0.95);
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: clamp(0.88rem, 1.8vw, 0.96rem);
  color: rgba(245, 238, 216, 0.8);
  margin: 0 0 36px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.02em;
  font-family: inherit;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #b8302a 0%, #8b1a1a 100%);
  color: #fff;
  border: 1.5px solid rgba(184, 48, 42, 0.5);
  box-shadow: 0 4px 16px rgba(184, 48, 42, 0.3);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #c93a36 0%, #a02020 100%);
  box-shadow: 0 6px 24px rgba(184, 48, 42, 0.4);
  transform: translateY(-1px);
}

.btn-hero-outline {
  background: linear-gradient(135deg, #3b7a4e 0%, #2d5c3a 100%);
  color: #f5eed8;
  border: 1.5px solid rgba(59, 122, 78, 0.6);
  box-shadow: 0 4px 16px rgba(59, 122, 78, 0.25);
}

.btn-hero-outline:hover {
  background: linear-gradient(135deg, #4a9460 0%, #3b7a4e 100%);
  color: #fff;
  border-color: rgba(74, 148, 96, 0.8);
  box-shadow: 0 6px 24px rgba(59, 122, 78, 0.35);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #b8302a 0%, #8b1a1a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 48, 42, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c93a36 0%, #a02020 100%);
  box-shadow: 0 6px 24px rgba(184, 48, 42, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(218, 165, 32, 0.4);
}

.btn-outline:hover {
  border-color: rgba(218, 165, 32, 0.7);
  color: #fff;
  background: rgba(218, 165, 32, 0.08);
  transform: translateY(-1px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
}

.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.2; top: 14px; }
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-back:hover {
  background: var(--cream);
  border-color: var(--brown-light);
  box-shadow: var(--shadow);
}

/* === Sections === */
.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--cream-alt);
}

/* Unified section title */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  text-align: center;
  margin: 0 0 8px;
}

/* === About === */
.section-about {
  padding: 72px 0;
  background: var(--paper);
}

.about-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-header {
  text-align: center;
  margin-bottom: 36px;
}

/* All section labels */
.section-label,
.about-label,
.location-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.gallery-label,
.reviews-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.section-label-green { color: var(--green); }
.section-label-red { color: var(--red); }

/* All section main titles */
.section-title-block,
.about-title,
.gallery-title,
.location-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

/* All "-en" bilingual suffixes */
.section-title-en,
.about-title-en,
.gallery-title-en,
.location-title-en,
.info-title-en,
.hours-card-title-en {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7em;
}

/* All section dividers */
.section-divider,
.about-divider,
.gallery-divider,
.reviews-divider,
.location-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* All section lines */
.section-line,
.about-line,
.location-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 122, 78, 0.4), transparent);
}

.section-line-red,
.gallery-line,
.reviews-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 48, 42, 0.35), transparent);
}

/* All section diamonds */
.section-diamond-green,
.about-diamond,
.location-diamond {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-diamond-red,
.gallery-diamond,
.reviews-diamond {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.about-intro p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(145deg, var(--cream), var(--paper));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.about-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  background: rgba(59, 122, 78, 0.1);
  border-radius: var(--radius-sm);
}

.about-highlight-cn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.about-highlight-en {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* === Gallery Section === */
.section-gallery {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(218, 165, 32, 0.04) 0%, transparent 60%),
    var(--cream);
}

.gallery-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.gallery-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Gallery item card */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 5;
  background: var(--brown-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(50, 30, 15, 0.15);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-play {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
}

.gallery-item-play svg {
  flex-shrink: 0;
}

.gallery-item-play-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-item.is-video .gallery-item-play-btn {
  display: flex;
}

.gallery-item.is-video .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Loading / empty state */
.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--border);
  background: linear-gradient(135deg, rgba(59, 122, 78, 0.06), rgba(218, 165, 32, 0.04), var(--paper));
  color: var(--text-muted);
}

.gallery-empty-icon {
  color: var(--brown-light);
  opacity: 0.4;
  margin-bottom: 12px;
}

.gallery-empty-text {
  font-size: 0.88rem;
  opacity: 0.7;
}

/* === Gallery Modal === */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.gallery-modal-image {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.gallery-modal-video {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

@media (max-width: 760px) {
  .gallery-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .gallery-modal-backdrop {
    padding: 12px;
  }
}

/* === Specialty Cards === */
.grid {
  display: grid;
  gap: 16px;
}

.cards-5 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card-signature h3 {
  font-size: 0.98rem;
  color: var(--red);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-signature .card-cn {
  font-size: 0.92rem;
  color: var(--green);
  margin: 0;
}

/* === Reviews Marquee === */
.section-reviews {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(59, 122, 78, 0.04) 0%, transparent 60%),
    var(--cream-alt);
}

.reviews-header {
  text-align: center;
  margin-bottom: 36px;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 12px;
}

.reviews-fade-left,
.reviews-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--cream-alt), transparent);
}

.reviews-fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--cream-alt), transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 320px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.review-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.review-source {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* === Location & Info Section === */
.section-location {
  padding: 72px 0;
  background: var(--paper);
}

.location-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.location-header {
  text-align: center;
  margin-bottom: 36px;
}

.location-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card,
.hours-card {
  background: linear-gradient(145deg, var(--cream), var(--paper));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.info-section {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}

.info-section + .info-section {
  border-top: 1px solid var(--border-light);
}

.info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--green);
  background: rgba(59, 122, 78, 0.08);
  border-radius: var(--radius-sm);
}

.info-content {
  flex: 1;
  min-width: 0;
}

.info-title {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin: 0 0 4px;
}

.info-title-en {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7em;
}

.info-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.info-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.info-link:hover {
  color: var(--red);
}

/* === Hours Card === */
.hours-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin: 0 0 16px;
  text-align: center;
}

.hours-card-title-en {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7em;
}

.location-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.location-link:hover {
  color: var(--red);
}

/* === Social Links === */
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--cream);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  color: var(--brown-dark);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184, 48, 42, 0.2);
}

.social-btn:hover .social-btn-icon svg {
  stroke: #fff;
}

.social-btn-icon {
  display: flex;
  align-items: center;
}

.social-btn-icon svg {
  transition: stroke 0.2s ease;
}

/* === Map === */
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.location-map-embed {
  background: var(--paper);
}

.location-map-embed iframe {
  display: block;
  width: 100%;
}

/* === Hours Grid === */
.hours-grid {
  text-align: center;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.hours-row:nth-child(odd) {
  background: rgba(249, 243, 233, 0.8);
}

.hours-day {
  font-weight: 500;
  color: var(--text);
}

.hours-time {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* === Menu Page === */
.menu-page {
  padding: 48px 0 56px;
  background: var(--cream);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-header .section-title {
  text-align: left;
  margin-bottom: 0;
}

.category-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  scrollbar-width: none;
  margin-bottom: 16px;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav .nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px 2px;
  min-width: max-content;
}

.category-nav .nav-link {
  display: block;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  transition: all 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.category-nav .nav-link:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.menu-paper {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px 20px 14px;
  position: relative;
}

.menu-paper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--red));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-footer-actions {
  margin-top: 28px;
  text-align: center;
}

/* === Category Section === */
.menu-category {
  scroll-margin-top: 60px;
  margin-bottom: 4px;
}

.menu-category-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 5px;
  margin: 22px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-category-title:first-child {
  margin-top: 0;
}

.menu-category-title .cat-cn {
  font-size: 1.05rem;
  font-weight: 600;
}

.menu-category-title .cat-en {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

/* === Menu Item Row === */
.menu-item {
  display: flex;
  align-items: baseline;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.12s ease;
}

.menu-item:hover {
  background: rgba(160, 128, 96, 0.06);
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
}

.menu-item-cn {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1px;
  font-style: italic;
}

.menu-item-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  margin-left: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-price .price-todo {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  font-size: 0.88rem;
}

/* === Add-on / Toppings Layout (paper-menu style) === */
.addon-category-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 5px;
  margin: 22px 0 6px;
}

.addon-category-header:first-child {
  margin-top: 0;
}

.addon-label {
  display: inline-block;
  background: #f5ecd7;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1.5;
  flex-shrink: 0;
}

.addon-category-title .cat-cn {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
}

.addon-category-title .cat-en {
  font-family: "Playfair Display", serif;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

/* Price-group rows */
.addon-layout {
  display: flex;
  flex-direction: column;
}

.addon-price-group {
  display: flex;
  align-items: baseline;
  padding: 4px 2px;
  border-bottom: 1px dotted var(--border-light);
}

.addon-price-group:last-child {
  border-bottom: none;
}

.addon-items-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 18px;
}

.addon-item-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.25;
  white-space: nowrap;
}

.addon-cn {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.addon-en {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-style: italic;
}

.addon-price-block {
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
  margin-left: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 56px;
  text-align: right;
}

.addon-price-block .price-todo {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  font-size: 0.82rem;
}

/* === Loading === */
.menu-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 0.95rem;
}

/* === Footer === */
.page-footer {
  border-top: 1px solid var(--border-light);
  padding: 18px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  background: var(--paper);
}

/* === Tablet 2 columns === */
@media (min-width: 761px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addon-items-wrap {
    gap: 2px 10px;
  }
}

/* === Responsive === */
@media (max-width: 760px) {
  .nav-inner {
    height: 54px;
    padding: 0 16px;
  }

  body { padding-top: 54px; }

  .nav-brand-zh { font-size: 1.05rem; }
  .nav-brand-en { font-size: 0.72rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 14, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 8px;
    gap: 0;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .nav-lang-mobile { display: list-item; }

  .nav-toggle { display: flex; }

  .lang-switch-desktop { display: none; }

  .nav-lang-mobile .lang-switch {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
  }

  .hero { padding: 56px 20px 48px; }

  .hero-cn { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-en { font-size: clamp(0.8rem, 2.5vw, 1rem); }

  .hero-ornament { gap: 8px; margin-bottom: 18px; }
  .ornament-line { width: 32px; }

  .hero-slogan { font-size: clamp(0.85rem, 2.5vw, 0.95rem); }
  .hero-desc { font-size: clamp(0.82rem, 2vw, 0.9rem); }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn { padding: 12px 28px; }

  .section { padding: 48px 0; }

  .section-about { padding: 48px 0; }

  .about-inner { padding: 0 16px; }

  .about-header { margin-bottom: 24px; }

  .about-title,
  .gallery-title,
  .location-title,
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }

  .about-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro p { font-size: 0.95rem; }

  .about-highlights { gap: 12px; }

  .about-highlight-card {
    flex-direction: row;
    padding: 14px 16px;
    gap: 12px;
  }

  .about-highlight-icon {
    width: 38px;
    height: 38px;
  }

  .section-gallery { padding: 48px 0; }

  .gallery-inner { padding: 0 16px; }

  .gallery-header { margin-bottom: 24px; }

  .gallery-subtitle { font-size: 0.84rem; }

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

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .gallery-item-overlay {
    opacity: 1;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  }

  .gallery-item-play {
    display: none !important;
  }

  .section-reviews { padding: 48px 0; }

  .reviews-header { margin-bottom: 24px; }

  .reviews-fade-left,
  .reviews-fade-right {
    width: 40px;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex: 0 0 calc(100vw - 80px);
    min-width: calc(100vw - 80px);
    padding: 16px 16px 14px;
  }

  .section-location { padding: 48px 0; }

  .location-inner { padding: 0 16px; }

  .location-header { margin-bottom: 24px; }

  .location-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card,
  .hours-card { padding: 20px 18px; }

  .hours-row { font-size: 0.82rem; }

  .menu-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-paper {
    padding: 20px 12px 12px;
    border-radius: var(--radius-sm);
  }

  .menu-category-title {
    font-size: 1.05rem;
  }

  .menu-category-title .cat-en {
    font-size: 0.8rem;
  }

  .menu-item {
    padding: 6px 4px;
  }

  .menu-item-name { font-size: 0.88rem; }
  .menu-item-cn { font-size: 0.84rem; }

  .menu-item-price {
    font-size: 0.93rem;
    margin-left: 8px;
  }

  .menu-item-top { gap: 6px; }

  .addon-category-header { flex-wrap: wrap; }
  .addon-label { font-size: 0.62rem; padding: 1px 5px; }
  .addon-price-group { padding: 3px 0; }
  .addon-items-wrap { gap: 1px 8px; }
  .addon-cn { font-size: 0.82rem; }
  .addon-en { font-size: 0.65rem; }
  .addon-price-block {
    font-size: 0.82rem;
    margin-left: 8px;
    min-width: 48px;
  }

  .cards-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .cards-5 {
    grid-template-columns: 1fr;
  }

  .addon-cn { font-size: 0.78rem; }
  .addon-en { font-size: 0.62rem; }
  .addon-price-block {
    font-size: 0.78rem;
    min-width: 44px;
  }
}
