/* ============================================================
   鉴驰·中国美食指南 | Jianchi Chinese Food Guide
   电影摄影 × 玻璃叠层 | Cinematography × Glass Lamination
   style.css
   ============================================================ */

/* ------------------------------------------------------------
   1. 全局重置和基础样式
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #3d3632;
  background-color: #faf8f3;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   字体导入 @ Google Fonts CDN
   ------------------------------------------------------------
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet">
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   2. 导航栏 (.navbar)
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar .nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.navbar .nav-logo span {
  color: #c8963e;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar .nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 200ms ease;
  position: relative;
}

.navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8963e;
  transition: width 200ms ease;
}

.navbar .nav-links a:hover {
  color: #ffffff;
}

.navbar .nav-links a:hover::after {
  width: 100%;
}

.navbar .nav-links .nav-cta {
  padding: 8px 20px;
  background: #c8963e;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  transition: background 200ms ease, transform 200ms ease;
}

.navbar .nav-links .nav-cta::after {
  display: none;
}

.navbar .nav-links .nav-cta:hover {
  background: #b0852f;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.navbar .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ------------------------------------------------------------
   3. Hero区 (100vh)
   ------------------------------------------------------------ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 120px 80px 80px;
}

.hero-glass-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin-right: 5%;
}

/* ------------------------------------------------------------
   4. 玻璃磨砂面板 (.glass-panel)
   ------------------------------------------------------------ */
.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-glass-stack .glass-panel:first-child {
  animation-delay: 0.3s;
}

.hero-glass-stack .glass-panel:last-child {
  animation-delay: 0.6s;
}

.glass-panel .glass-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.glass-panel .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
}

.glass-panel .hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.glass-panel .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139, 46, 58, 0.85);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   5. 浮动预订按钮 (.floating-booking-btn)
   ------------------------------------------------------------ */
.floating-booking-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c8963e;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  color: #ffffff;
}

.floating-booking-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-booking-btn:hover {
  transform: scale(1.08);
  background: #b0852f;
  box-shadow: 0 6px 28px rgba(200, 150, 62, 0.55);
}

.floating-booking-btn:active {
  transform: scale(0.96);
}

/* Tooltip */
.floating-booking-btn::after {
  content: '预订餐位';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 13, 15, 0.9);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.floating-booking-btn:hover::after {
  opacity: 1;
}

/* ------------------------------------------------------------
   6. 菜单区 (.menu-section)
   ------------------------------------------------------------ */
.menu-section {
  width: 100%;
  min-height: 80vh;
  background: #faf8f3;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-section-inner {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  align-items: stretch;
}

/* Left side: large image card (35%) */
.menu-section-left {
  flex: 0 0 35%;
  max-width: 35%;
}

/* Right side: three-column dish cards (65%) */
.menu-section-right {
  flex: 0 0 65%;
  max-width: 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-content: start;
}

.menu-section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1200px;
  width: 100%;
}

.menu-section-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1614;
  margin-bottom: 12px;
}

.menu-section-header .section-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #6b635d;
}

/* ------------------------------------------------------------
   7. 菜单大图卡 (.menu-hero-card)
   ------------------------------------------------------------ */
.menu-hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-hero-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  z-index: 1;
}

.menu-hero-card .menu-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  z-index: 2;
}

.menu-hero-card .menu-hero-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.menu-hero-card .menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

.menu-hero-card .menu-hero-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ------------------------------------------------------------
   8. 菜单小卡 (.menu-item-card)
   ------------------------------------------------------------ */
.menu-item-card {
  background: #ffffff;
  border: 1px solid #e3ded5;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  cursor: default;
}

.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: rgba(200, 150, 62, 0.04);
}

.menu-item-card .item-image {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 12px;
  background: #e3ded5;
}

.menu-item-card .item-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1614;
  margin-bottom: 4px;
}

.menu-item-card .item-desc {
  font-size: 15px;
  color: #6b635d;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-card .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-card .item-price {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #c8963e;
}

.menu-item-card .item-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #ffffff;
  background: #8b2e3a;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   9. 招牌宽卡片 (.signature-card)
   ------------------------------------------------------------ */
.signature-card {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.signature-card-left {
  flex: 0 0 40%;
  max-width: 40%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.signature-card-right {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-card-right .signature-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #c8963e;
  margin-bottom: 8px;
}

.signature-card-right .signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1614;
  line-height: 1.2;
  margin-bottom: 16px;
}

.signature-card-right .signature-desc {
  font-size: 15px;
  color: #3d3632;
  line-height: 1.7;
  margin-bottom: 20px;
}

.signature-card-right .signature-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.signature-card-right .signature-price {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #c8963e;
}

.signature-card-right .signature-badge {
  font-size: 12px;
  font-weight: 500;
  color: #8b2e3a;
  background: rgba(139, 46, 58, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Reverse layout variant */
.signature-card.reverse {
  flex-direction: row-reverse;
}

/* ------------------------------------------------------------
   10. 口碑字幕条 (.testimonial-marquee)
   ------------------------------------------------------------ */
.testimonial-marquee {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 900;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding: 0 24px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.marquee-item .marquee-stars {
  color: #c8963e;
  font-size: 12px;
  letter-spacing: 2px;
}

.marquee-item .marquee-separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  font-weight: 200;
  margin-left: 4px;
}

/* ------------------------------------------------------------
   11. 预订面板 (.booking-panel)
   ------------------------------------------------------------ */
.booking-panel {
  background: #faf8f3;
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-panel .booking-card {
  width: 100%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-color: #e3ded5;
}

.booking-panel .booking-card .booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1614;
  text-align: center;
  margin-bottom: 8px;
}

.booking-panel .booking-card .booking-subtitle {
  font-size: 15px;
  color: #6b635d;
  text-align: center;
  margin-bottom: 36px;
}

.booking-panel .booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-panel .booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-panel .booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-panel .booking-form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #6b635d;
}

.booking-panel .booking-form-group input,
.booking-panel .booking-form-group select,
.booking-panel .booking-form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e3ded5;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3d3632;
  background: #faf8f3;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
}

.booking-panel .booking-form-group input:focus,
.booking-panel .booking-form-group select:focus,
.booking-panel .booking-form-group textarea:focus {
  border-color: #c8963e;
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.booking-panel .booking-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-panel .booking-btn {
  padding: 14px 32px;
  background: #c8963e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  letter-spacing: 0.3px;
}

.booking-panel .booking-btn:hover {
  background: #b0852f;
  transform: translateY(-1px);
}

.booking-panel .booking-btn:active {
  transform: translateY(0);
}

/* ------------------------------------------------------------
   12. 页脚 (.footer)
   ------------------------------------------------------------ */
.footer {
  background: #0d0d0f;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 48px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand .footer-logo span {
  color: #c8963e;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 200ms ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ------------------------------------------------------------
   13. 正文内容区 (.content-section)
   ------------------------------------------------------------ */
.content-section {
  background: #faf8f3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.content-section .content-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1614;
  margin-bottom: 16px;
}

.content-section .content-body {
  font-size: 15px;
  color: #3d3632;
  line-height: 1.8;
}

.content-section .content-body p {
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   关键动画 @keyframes
   ------------------------------------------------------------ */

/* 字幕滚动：从右向左 */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 渐入上移动画 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 附加：脉冲动画用于徽章点缀 */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ------------------------------------------------------------
   辅助类 & 工具类
   ------------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

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

/* Glass panel decoration accent line */
.glass-accent {
  width: 40px;
  height: 2px;
  background: #c8963e;
  border-radius: 2px;
  margin: 8px 0 12px;
}

/* ------------------------------------------------------------
   响应式设计
   ------------------------------------------------------------ */

/* 平板 (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-content {
    padding: 100px 40px 60px;
    justify-content: center;
  }

  .hero-glass-stack {
    margin-right: 0;
    max-width: 480px;
    width: 100%;
  }

  .glass-panel .hero-title {
    font-size: 42px;
  }

  .menu-section-inner {
    flex-direction: column;
  }

  .menu-section-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .menu-section-right {
    flex: 0 0 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-hero-card {
    min-height: 320px;
  }

  .signature-card {
    flex-direction: column;
  }

  .signature-card-left {
    flex: 0 0 280px;
    max-width: 100%;
    min-height: 280px;
  }

  .signature-card-right {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 32px;
  }

  .signature-card.reverse {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }
}

/* 移动端 (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 15, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .navbar .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }

  .navbar .nav-toggle {
    display: flex;
  }

  /* Hero mobile */
  .hero-content {
    padding: 80px 20px 40px;
  }

  .hero-glass-stack {
    gap: 12px;
  }

  .glass-panel {
    padding: 20px;
  }

  .glass-panel .hero-title {
    font-size: 32px;
  }

  .glass-panel .hero-subtitle {
    font-size: 14px;
  }

  /* Floating button mobile */
  .floating-booking-btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(200, 150, 62, 0.4);
  }

  .floating-booking-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-booking-btn::after {
    display: none;
  }

  /* Menu section mobile */
  .menu-section {
    padding: 48px 20px;
  }

  .menu-section-right {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-hero-card {
    min-height: 240px;
  }

  .menu-section-header .section-title {
    font-size: 22px;
  }

  .menu-item-card .item-image {
    height: 110px;
  }

  .menu-item-card .item-name {
    font-size: 18px;
  }

  .signature-card-right {
    padding: 24px;
  }

  .signature-card-right .signature-name {
    font-size: 26px;
  }

  /* Booking mobile */
  .booking-panel {
    padding: 60px 20px;
  }

  .booking-panel .booking-card {
    padding: 32px 24px;
  }

  .booking-panel .booking-form-row {
    grid-template-columns: 1fr;
  }

  /* Testimonial marquee */
  .testimonial-marquee {
    height: 40px;
  }

  .marquee-track {
    gap: 40px;
    animation-duration: 30s;
  }

  .marquee-item {
    font-size: 12px;
  }

  /* Content section mobile */
  .content-section {
    padding: 48px 20px;
  }

  .content-section .content-title {
    font-size: 22px;
  }

  /* Footer mobile */
  .footer {
    padding: 36px 20px 76px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}

/* 超小屏幕 (max-width: 480px) */
@media (max-width: 480px) {
  .glass-panel .hero-title {
    font-size: 28px;
  }

  .glass-panel {
    padding: 16px 18px;
  }

  .signature-card-right .signature-name {
    font-size: 22px;
  }

  .signature-card-right .signature-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ------------------------------------------------------------
   滚动条美化
   ------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #faf8f3;
}

::-webkit-scrollbar-thumb {
  background: #c8963e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b0852f;
}

/* ------------------------------------------------------------
   打印样式
   ------------------------------------------------------------ */
@media print {
  .navbar,
  .floating-booking-btn,
  .testimonial-marquee {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-overlay {
    display: none;
  }

  .glass-panel {
    background: #ffffff;
    color: #1a1614;
    border: 1px solid #e3ded5;
    box-shadow: none;
  }

  .glass-panel .hero-title,
  .glass-panel .glass-label,
  .glass-panel .hero-subtitle {
    color: #1a1614;
  }

  .content-section,
  .menu-section,
  .booking-panel {
    padding: 40px 20px;
    page-break-inside: avoid;
  }
}
