/* ===== Buffet House — Chinese Style Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans:wght@400;500;600&display=swap');

:root {
  --red: #8B1A1A;
  --red-bright: #C41E3A;
  --gold: #D4AF37;
  --gold-light: #F0D78C;
  --ink: #1A1410;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D8;
  --jade: #2D5A4A;
  --shadow: rgba(26, 20, 16, 0.15);
  --max-width: 1200px;
  --hero-bg: url('../assets/images/hero/bg.jpg');
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', Georgia, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
}

/* Subtle cloud pattern background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 26, 26, 0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* ===== Accessibility & SEO helpers ===== */
.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;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--shadow);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

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

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

@media (prefers-contrast: more) {
  .section-title .subtitle,
  .contact-info-card .contact-item .label {
    color: var(--ink);
  }
}

/* ===== Header ===== */
.site-header {
  background:
    linear-gradient(180deg, rgba(139, 26, 26, 0.9) 0%, rgba(107, 18, 18, 0.94) 100%),
    var(--hero-bg) center 20% / cover no-repeat;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
}

.header-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0.75rem;
  text-align: center;
  position: relative;
}

.header-top::before,
.header-top::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.7;
}
.header-top::before { left: 1rem; }
.header-top::after { right: 1rem; }

.logo-cn {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  margin-bottom: 0.15rem;
  opacity: 0.75;
}

.logo-en {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Decorative Chinese accent — not primary content */
.accent-cn {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  opacity: 0.65;
  display: block;
  margin-bottom: 0.25rem;
}

.header-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.header-info a { color: var(--gold-light); }
.header-info a:hover { color: #fff; }

.header-info .tel {
  font-weight: 600;
  font-size: 1.05rem;
}

/* Gold divider */
.header-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  margin-top: 0.75rem;
}

/* ===== Navigation ===== */
.main-nav {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-list a {
  display: block;
  padding: 0.85rem 1.75rem;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 70%;
  left: 15%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: #fff;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* ===== Main Layout ===== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ===== Sidebar (Pricing) ===== */
.sidebar {
  position: sticky;
  top: 140px;
}

.price-card {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.price-card-header {
  background: linear-gradient(135deg, var(--red) 0%, #6B1212 100%);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.price-card-body { padding: 1rem 1.25rem; }

.price-item {
  text-align: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}

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

.price-item .label {
  color: var(--red-bright);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.price-item .amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.price-item .time {
  font-size: 0.82rem;
  color: #666;
  margin-top: 0.25rem;
}

.price-item .time strong {
  font-weight: 700;
}

.price-item .time.price-note {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  font-style: italic;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
}

.payment-icons img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.section-title .subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a3f35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.75rem auto 0;
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(250, 246, 238, 0.72) 45%, rgba(250, 246, 238, 0.94) 100%),
    var(--hero-bg) center top / cover no-repeat;
  border-radius: 8px;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  color: var(--ink);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
}

.hero .accent-cn {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  opacity: 0.55;
  color: var(--gold);
}

.hero .tagline {
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--red-bright);
  font-weight: 600;
}

.hero .highlight {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 2px;
  margin: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.25);
}

.hero p { max-width: 700px; margin: 0.75rem auto; color: #444; }

/* ===== Page Banner (inner pages) ===== */
.page-banner {
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.55) 0%, rgba(250, 246, 238, 0.92) 100%),
    var(--hero-bg) center top / cover no-repeat;
  border-radius: 8px;
  padding: 2.5rem 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-banner .section-title {
  margin-bottom: 0;
}

.page-banner .section-title h2 {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.page-banner--compact {
  padding: 2rem 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

/* ===== Content Cards ===== */
.content-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  border-radius: 8px 8px 0 0;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-list li {
  background: var(--cream);
  padding: 1rem;
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
}

.feature-list li strong {
  display: block;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.text-center { text-align: center; }
.text-red { color: var(--red-bright); }
.text-gold { color: var(--gold); }
.text-green { color: var(--jade); font-weight: 600; }

/* ===== Environment Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 12px var(--shadow);
  border: 2px solid var(--gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,20,16,0.8));
  color: #fff;
  padding: 1.5rem 0.75rem 0.75rem;
  font-size: 0.85rem;
  text-align: center;
}

button.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid var(--gold);
  background: none;
  cursor: pointer;
  font: inherit;
}

.gallery-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-section { margin-bottom: 2rem; }

.gallery-category {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.gallery-intro {
  max-width: 680px;
  margin: -0.5rem auto 2rem;
  color: #4a3f35;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 20, 16, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.lightbox[hidden] { display: none; }

.lightbox[role="dialog"] {
  outline: none;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 75vh;
}

.lightbox img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 2;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(139, 26, 26, 0.85);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  padding: 0 0 2px;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red-bright);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev[hidden],
.lightbox-next[hidden],
.lightbox-counter[hidden] { display: none; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red) 0%, #6B1212 100%);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 16px var(--shadow);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35);
}

.back-to-top-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 1px;
}

.back-to-top-text {
  font-family: Georgia, serif;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .lightbox { padding: 2rem 3rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }
}

/* ===== Menu Page — category nav (Tailwind on menu.html) ===== */
.menu-nav-sticky {
  position: sticky;
  top: var(--header-sticky-height, 130px);
  z-index: 50;
  margin-bottom: 2rem;
}

.menu-nav-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    url("data:image/svg+xml,%3Csvg width='120' height='60' viewBox='0 0 120 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 40c8-12 16-18 28-18s20 6 28 18' fill='none' stroke='%239E2222' stroke-width='1'/%3E%3Cpath d='M60 28c6-10 12-15 22-15s16 5 22 15' fill='none' stroke='%239E2222' stroke-width='0.8'/%3E%3Cpath d='M0 50c10-8 20-12 32-12s22 4 32 12' fill='none' stroke='%23D4AF37' stroke-width='0.6'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 90px, 60px 60px;
}

#menu-nav a.menu-cat-link {
  text-decoration: none;
}

.menu-category {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-sticky-height, 130px) + var(--menu-nav-height, 80px) + 12px);
}

.menu-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.menu-category-header h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 700;
}

.menu-category-header .back-top {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-category-header .back-top:hover {
  color: var(--red-bright);
}

.menu-category-desc {
  font-size: 0.9rem;
  color: #4a3f35;
  margin-bottom: 1rem;
  font-style: italic;
}

.menu-items { list-style: none; }

.menu-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--cream-dark);
  gap: 1rem;
}

.menu-items li.spicy .item-name { color: var(--red-bright); }
.menu-items li.spicy .item-name::before { content: '🌶 '; }

.menu-items .item-name {
  flex: 1;
  font-size: 0.95rem;
}

.menu-items .item-desc {
  font-size: 0.82rem;
  color: #4a3f35;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-items .item-price {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  font-size: 0.95rem;
}

.menu-items .item-price::before {
  content: '$';
  color: var(--red);
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-info-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-info-card--solo {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card .contact-item .label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item .value {
  font-weight: 500;
  font-size: 1rem;
}

.contact-item--hours {
  align-items: flex-start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.hours-table th,
.hours-table td {
  padding: 0.35rem 0;
  vertical-align: top;
  line-height: 1.45;
  font-weight: 500;
}

.hours-table th {
  width: 7.5rem;
  padding-right: 0.75rem;
  color: var(--red);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  white-space: nowrap;
}

.hours-table tr + tr th,
.hours-table tr + tr td {
  border-top: 1px dashed var(--cream-dark);
}

@media (max-width: 520px) {
  .hours-table th,
  .hours-table td {
    display: block;
    width: 100%;
    padding: 0.25rem 0;
  }

  .hours-table th {
    padding-bottom: 0.1rem;
  }

  .hours-table tr + tr th,
  .hours-table tr + tr td {
    border-top: none;
  }

  .hours-table tr + tr {
    border-top: 1px dashed var(--cream-dark);
    padding-top: 0.35rem;
  }

  .hours-table tr {
    display: block;
    padding: 0.35rem 0;
  }
}

.map-section {
  margin-top: 2rem;
}

.map-container {
  border: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}

.site-footer .footer-cn {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.1rem;
  color: #FFF0C8;
  margin-bottom: 0.35rem;
  letter-spacing: 0.35em;
}

.site-footer p { font-size: 0.85rem; }

.footer-links {
  margin: 0.75rem 0;
}

.footer-links a {
  color: #FFF0C8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin-top: 0.75rem;
}

.site-footer a {
  color: #FFF0C8;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; margin: 0.5rem auto; }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0.5rem;
  }

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

  .nav-list a { text-align: center; padding: 0.75rem; }

  .nav-inner { flex-direction: column; }

  .logo-en { font-size: 1.5rem; }
}

@media print {
  .site-header, .site-footer, .sidebar, .nav-toggle { display: none; }
}
