/*
Theme Name:  大食汇 New Beijing
Theme URI:   https://dashihui.uk
Author:      New Beijing 大食汇
Author URI:  https://dashihui.uk
Description: 现代中餐风格双语主题，专为大食汇 New Beijing 伦敦中餐厅定制。支持中英文并列显示，融合传统中式美学与现代网页设计。A modern bilingual Chinese restaurant theme for New Beijing 大食汇, featuring authentic Chinese aesthetics with contemporary web design.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dashihui
Tags:        restaurant, chinese, bilingual, custom-menu, custom-header, custom-background, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  --dsh-red:          #C0392B;
  --dsh-red-dark:     #922B21;
  --dsh-red-light:    #E74C3C;
  --dsh-gold:         #C9A84C;
  --dsh-gold-light:   #F0D080;
  --dsh-gold-dark:    #9A7A2E;
  --dsh-ink:          #1A1208;
  --dsh-paper:        #FAF6EF;
  --dsh-paper-dark:   #F0E8D8;
  --dsh-cream:        #FDF9F2;
  --dsh-text:         #2C1810;
  --dsh-text-light:   #6B4F3A;
  --dsh-white:        #FFFFFF;
  --dsh-border:       rgba(201,168,76,0.3);
  --dsh-open-green:   #5EBD82;

  --dsh-font-serif-cn: 'Noto Serif SC', 'Source Han Serif CN', serif;
  --dsh-font-sans-cn:  'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --dsh-font-display:  'Playfair Display', Georgia, serif;
  --dsh-font-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  --dsh-radius:        2px;
  --dsh-shadow:        0 4px 32px rgba(0,0,0,0.12);
  --dsh-transition:    0.3s ease;

  --dsh-container:     1200px;
  --dsh-gutter:        60px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--dsh-font-body);
  background-color: var(--dsh-paper);
  color: var(--dsh-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dsh-paper-dark); }
::-webkit-scrollbar-thumb { background: var(--dsh-gold); border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dsh-transition); }
ul { list-style: none; }

.container {
  max-width: var(--dsh-container);
  margin: 0 auto;
  padding: 0 var(--dsh-gutter);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-serif-cn  { font-family: var(--dsh-font-serif-cn); }
.font-sans-cn   { font-family: var(--dsh-font-sans-cn); }
.font-display   { font-family: var(--dsh-font-display); }

.text-gold      { color: var(--dsh-gold); }
.text-red       { color: var(--dsh-red); }
.text-white     { color: var(--dsh-white); }
.text-light     { color: var(--dsh-text-light); }
.text-muted     { color: rgba(255,255,255,0.55); }

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dsh-gold-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dsh-gold-dark);
  opacity: 0.5;
}
.section-tag--light { color: var(--dsh-gold); }
.section-tag--light::before,
.section-tag--light::after { background: var(--dsh-gold); }

.section-title-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dsh-ink);
  letter-spacing: 6px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.section-title-cn--light { color: var(--dsh-white); }

.section-title-en {
  font-family: var(--dsh-font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--dsh-text-light);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-title-en--light { color: rgba(201,168,76,0.75); }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--dsh-gold);
  font-size: 14px;
}
.ornament span {
  width: 40px;
  height: 1px;
  background: var(--dsh-border);
  display: block;
}
.ornament--light span { background: rgba(201,168,76,0.3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dsh-transition);
  border: none;
  border-radius: var(--dsh-radius);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: rgba(26,18,8,0.95);
  color: var(--dsh-white);
  border: 1px solid var(--dsh-red-dark);
}
.btn-primary:hover {
  background: var(--dsh-red-light);
  color: var(--dsh-white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--dsh-gold-light);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn-secondary:hover {
  border-color: var(--dsh-gold);
  background: rgba(201,168,76,0.08);
  color: var(--dsh-gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--dsh-text);
  border: 1px solid var(--dsh-border);
}
.btn-outline:hover {
  border-color: var(--dsh-gold);
  color: var(--dsh-gold-dark);
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: rgba(26,18,8,0.95);
  color: var(--dsh-gold-light);
  text-align: center;
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1010;
}
.announce-bar .sep { margin: 0 14px; opacity: 0.5; }

/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,18,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--dsh-transition);
}
.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }
  .announce-bar ~ .site-header { top: 30px; }

.header-inner {
  width: 100%;
  max-width: var(--dsh-container);
  margin: 0 auto;
  padding: 0 var(--dsh-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-branding { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.logo-seal {
  width: 46px;
  height: 46px;
  background: rgba(26,18,8,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dsh-font-serif-cn);
  font-size: 17px;
  color: var(--dsh-gold-light);
  border: 2px solid var(--dsh-gold);
  letter-spacing: -1px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-seal::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(240,208,128,0.35);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .en {
  font-family: var(--dsh-font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--dsh-gold-light);
  text-transform: uppercase;
}
.logo-text .cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: 20px;
  color: var(--dsh-white);
  letter-spacing: 5px;
  margin-top: 3px;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color var(--dsh-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0;
}
.primary-nav a .nav-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 13px;
  color: rgba(201,168,76,0.6);
  letter-spacing: 2px;
  text-transform: none;
  font-weight: 400;
  transition: color var(--dsh-transition);
}
.primary-nav a:hover { color: var(--dsh-gold-light); }
.primary-nav a:hover .nav-cn { color: var(--dsh-gold-light); }
.primary-nav a.btn-reserve {
  background: rgba(26,18,8,0.95);
  padding: 10px 20px;
  border-radius: var(--dsh-radius);
  border: 1px solid var(--dsh-red-dark);
  color: var(--dsh-white);
}
.primary-nav a.btn-reserve:hover { background: var(--dsh-red-light); }
.primary-nav a.btn-reserve .nav-cn { color: rgba(255,255,255,0.7); }

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dsh-white);
  transition: all var(--dsh-transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dsh-ink);
  padding-top: 112px; /* header + announce */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0D0805 0%, #1A0E08 40%, #1F1208 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(45deg, var(--dsh-gold) 0px, var(--dsh-gold) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(-45deg, var(--dsh-gold) 0px, var(--dsh-gold) 1px, transparent 1px, transparent 28px);
}

.hero-deco-char {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--dsh-font-serif-cn);
  font-size: clamp(240px, 28vw, 420px);
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-52%) translateX(-15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroReveal 1.2s ease both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dsh-gold);
  margin-bottom: 28px;
  font-weight: 700;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--dsh-gold);
  opacity: 0.6;
}

.hero-title-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  color: var(--dsh-white);
  letter-spacing: 12px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero-title-en {
  font-family: var(--dsh-font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--dsh-gold-light);
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-divider span {
  width: 56px;
  height: 1px;
}
.hero-divider span:first-child  { background: linear-gradient(to right, transparent, var(--dsh-gold)); }
.hero-divider span:last-child   { background: linear-gradient(to left, transparent, var(--dsh-gold)); }
.hero-divider .dot { font-size: 12px; color: var(--dsh-gold); }

.hero-desc-en {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 8px;
  font-weight: 300;
}
.hero-desc-cn {
  font-family: var(--dsh-font-sans-cn);
  color: rgba(201,168,76,0.7);
  font-size: 13px;
  line-height: 2;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Info Strip */
.hero-info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  border-top: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.08);
  z-index: 3;
}
.info-cell {
  flex: 1;
  padding: 20px 36px;
  border-right: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.info-cell:last-child { border-right: none; }
.info-cell .label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dsh-gold);
  font-weight: 700;
}
.info-cell .label-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 9px;
  color: rgba(201,168,76,0.55);
  letter-spacing: 2px;
  margin-top: 1px;
}
.info-cell .value {
  font-size: 14px;
  color: var(--dsh-white);
  font-weight: 300;
  margin-top: 5px;
}
.info-cell .value--open {
  color: var(--dsh-open-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-cell .value--open::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--dsh-open-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--dsh-cream);
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dsh-border);
}

.feature-card {
  background: var(--dsh-cream);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--dsh-transition);
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(26,18,8,0.95);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover { background: var(--dsh-paper); }
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon { font-size: 40px; margin-bottom: 24px; display: block; line-height: 1; }
.feature-title-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: 20px;
  font-weight: 700;
  color: var(--dsh-ink);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.feature-title-en {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dsh-gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.feature-desc-en { font-size: 13px; line-height: 1.85; color: var(--dsh-text-light); margin-bottom: 8px; }
.feature-desc-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 12px;
  line-height: 1.95;
  color: rgba(107,79,58,0.72);
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--dsh-ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: '食';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--dsh-font-serif-cn);
  font-size: 500px;
  color: rgba(201,168,76,0.025);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.menu-tab-btn {
  padding: 14px 24px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  transition: all var(--dsh-transition);
  font-family: var(--dsh-font-body);
}
.menu-tab-btn .tab-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(201,168,76,0.38);
  text-transform: none;
  font-weight: 400;
  transition: color var(--dsh-transition);
}
.menu-tab-btn:hover { color: rgba(255,255,255,0.75); }
.menu-tab-btn.is-active {
  color: var(--dsh-gold-light);
  border-bottom-color: var(--dsh-red);
}
.menu-tab-btn.is-active .tab-cn { color: var(--dsh-gold); }

/* Dish Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.dish-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--dsh-transition);
}
.dish-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(201,168,76,0.22);
}
.dish-num {
  font-size: 10px;
  color: rgba(201,168,76,0.28);
  font-weight: 700;
  min-width: 22px;
  padding-top: 2px;
  font-family: var(--dsh-font-body);
}
.dish-info { flex: 1; }
.dish-name-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: 15px;
  color: var(--dsh-white);
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 600;
}
.dish-name-en {
  font-size: 12px;
  color: rgba(201,168,76,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 7px;
}
.dish-desc {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
}
.dish-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dsh-gold);
  white-space: nowrap;
  font-family: var(--dsh-font-body);
  letter-spacing: -0.5px;
  transition: color var(--dsh-transition);
}
.dish-card:hover .dish-price { color: var(--dsh-gold-light); }

.menu-cta {
  text-align: center;
  margin-top: 52px;
}
.menu-cta a {
  color: var(--dsh-gold-light);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(201,168,76,0.38);
  padding-bottom: 2px;
}
.menu-cta a:hover { border-color: var(--dsh-gold-light); }

/* ============================================================
   SPECIALTY SECTION
   ============================================================ */
.specialty-section {
  background: var(--dsh-paper);
  padding: 100px 0;
}

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

.specialty-card {
  background: var(--dsh-cream);
  border: 1px solid var(--dsh-border);
  padding: 52px 52px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dsh-transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.specialty-card::before {
  content: attr(data-char);
  position: absolute;
  right: -22px;
  bottom: -36px;
  font-family: var(--dsh-font-serif-cn);
  font-size: 160px;
  color: rgba(192,57,43,0.05);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.5s ease;
  pointer-events: none;
  user-select: none;
}
.specialty-card:hover { border-color: rgba(201,168,76,0.38); }
.specialty-card:hover::before { transform: scale(1.08) rotate(-5deg); }

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,18,8,0.95);
  color: var(--dsh-white);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  width: fit-content;
  font-weight: 700;
  margin-bottom: 6px;
}
.specialty-title-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: 28px;
  font-weight: 700;
  color: var(--dsh-ink);
  letter-spacing: 4px;
}
.specialty-title-en {
  font-family: var(--dsh-font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--dsh-text-light);
}
.specialty-desc-en { font-size: 13px; line-height: 1.9; color: var(--dsh-text-light); }
.specialty-desc-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 12px;
  line-height: 2;
  color: rgba(107,79,58,0.8);
}
.specialty-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.specialty-tag {
  font-size: 14px;
  padding: 4px 12px;
  border: 1px solid var(--dsh-border);
  color: var(--dsh-text-light);
  background: rgba(201,168,76,0.055);
  font-family: var(--dsh-font-sans-cn);
  letter-spacing: 1px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--dsh-paper-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-section::after {
  content: '汇';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--dsh-font-serif-cn);
  font-size: 400px;
  color: rgba(192,57,43,0.04);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-year {
  font-family: var(--dsh-font-display);
  font-size: 100px;
  font-weight: 700;
  color: rgba(192,57,43,0.1);
  line-height: 1;
  margin-bottom: -20px;
  margin-left: -4px;
}
.about-text-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  line-height: 2.2;
  color: var(--dsh-text);
  margin-bottom: 18px;
}
.about-text-en {
  font-size: 14px;
  line-height: 1.9;
  color: var(--dsh-text-light);
  margin-top: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
}
.stat-cell {
  background: rgba(192,57,43,0.055);
  border: 1px solid var(--dsh-border);
  padding: 28px;
}
.stat-num {
  font-family: var(--dsh-font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--dsh-red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label-en {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dsh-text-light);
  font-weight: 700;
}
.stat-label-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  color: rgba(107,79,58,0.58);
  letter-spacing: 2px;
  margin-top: 3px;
}

.awards-list { display: flex; flex-direction: column; gap: 10px; }
.award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-left: 2px solid var(--dsh-gold);
  background: rgba(201,168,76,0.04);
}
.award-icon { font-size: 16px; flex-shrink: 0; }
.award-text-en { font-size: 13px; color: var(--dsh-text-light); }
.award-text-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  color: rgba(107,79,58,0.65);
  margin-top: 3px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--dsh-ink);
  padding: 100px 0;
  position: relative;
  overflow: visible;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(201,168,76,0.035) 39px,
    rgba(201,168,76,0.035) 40px
  );
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3px;
}

.contact-info-panel {
  background: rgba(201,168,76,0.055);
  border: 1px solid rgba(201,168,76,0.14);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dsh-gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-label-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 9px;
  color: rgba(201,168,76,0.48);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.contact-value {
  font-size: 15px;
  color: var(--dsh-white);
  font-weight: 300;
  line-height: 1.75;
}
.contact-value a:hover { color: var(--dsh-gold-light); }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.09);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hours-row .day-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  color: rgba(201,168,76,0.55);
  margin-left: 6px;
}
.hours-row .time { color: var(--dsh-white); font-weight: 400; }

.delivery-links { display: flex; flex-direction: column; gap: 8px; }
.delivery-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  transition: all var(--dsh-transition);
}
.delivery-link:hover {
  border-color: var(--dsh-gold);
  background: rgba(201,168,76,0.06);
  color: var(--dsh-white);
}

.map-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,  rgba(201,168,76,0.045) 0, rgba(201,168,76,0.045) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(201,168,76,0.045) 0, rgba(201,168,76,0.045) 1px, transparent 1px, transparent 40px);
}
.map-pin { position: relative; z-index: 1; text-align: center; padding: 40px; }
.map-pin .pin-icon { font-size: 48px; display: block; margin-bottom: 14px; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.map-pin .pin-name { font-family: var(--dsh-font-serif-cn); font-size: 22px; color: var(--dsh-gold-light); letter-spacing: 4px; font-weight: 700; margin-bottom: 8px; }
.map-pin .pin-addr { font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 300; margin-bottom: 16px; line-height: 1.7; }
.map-pin .pin-phone { font-size: 20px; color: var(--dsh-white); font-weight: 300; letter-spacing: 2px; margin-bottom: 20px; }
.map-link {
  color: var(--dsh-gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(201,168,76,0.38);
  padding-bottom: 2px;
}
.map-link:hover { border-color: var(--dsh-gold-light); color: var(--dsh-gold-light); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #0D0805;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px var(--dsh-gutter);
  max-width: var(--dsh-container);
  margin: 0 auto;
}
.footer-brand-name-cn {
  font-family: var(--dsh-font-serif-cn);
  font-size: 28px;
  color: var(--dsh-white);
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-name-en {
  font-family: var(--dsh-font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--dsh-gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 220px;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dsh-gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-col-title-cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 10px;
  color: rgba(201,168,76,0.38);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-links a .cn {
  font-family: var(--dsh-font-sans-cn);
  font-size: 14px;
  color: rgba(201,168,76,0.28);
  transition: color var(--dsh-transition);
}
.footer-links a:hover { color: var(--dsh-gold-light); }
.footer-links a:hover .cn { color: rgba(201,168,76,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px var(--dsh-gutter);
  max-width: var(--dsh-container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px; }
.footer-bottom .cn { font-family: var(--dsh-font-sans-cn); font-size: 10px; color: rgba(201,168,76,0.28); margin-top: 3px; }

/* ============================================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ============================================================ */
.wp-block-image img { border-radius: var(--dsh-radius); }
.wp-block-quote {
  border-left: 3px solid var(--dsh-gold);
  padding-left: 20px;
  font-style: italic;
  color: var(--dsh-text-light);
}
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--dsh-border);
  margin: 40px 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root { --dsh-gutter: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .about-layout { gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --dsh-gutter: 24px; }

  .site-header { height: 64px; }
  .announce-bar ~ .site-header { top: 36px; }
  .announce-bar { font-size: 10px; padding: 4px 12px; }
  .announce-bar .sep { display: none; }
  .announce-bar .mobile-hide { display: none; }

  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: rgba(26,18,8,0.98);
    padding: 24px 32px;
    border-top: 1px solid rgba(201,168,76,0.2);
    gap: 16px;
    z-index: 999;
  }
  .primary-nav.is-open a { align-items: center; text-align: left; color: rgba(255,255,255,0.75); width: 100%; padding-left: 8px; }
  .menu-toggle { display: flex; }

  .hero { padding-top: 100px; }
  .hero-info-strip { display: none; }
  .hero-deco-char { display: none; }

  .features-grid,
  .specialty-grid,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr 1fr; padding: 40px var(--dsh-gutter); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px var(--dsh-gutter); }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; }

  .features-section, .menu-section, .specialty-section,
  .about-section, .contact-section { padding: 70px 0; }
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .site-header { top: 32px; }
  .announce-bar ~ .site-header { top: 30px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* Fix reserve button bilingual alignment */
.primary-nav a.btn-reserve{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* force mobile menu display */
@media (max-width: 768px){

.primary-nav{
    display:none;
}

.primary-nav.is-open{
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:#111;
    padding:20px;
    z-index:9999;
}

}

