/* ==========================================================================
   上海品茶工作室 · 电影摄影 × 玻璃叠层
   Domain: kebeina.cn
   ========================================================================== */

:root {
  /* 影院暗调 */
  --cinema-black: #0d0d0f;
  --glass-white: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-soft: rgba(255, 255, 255, 0.08);
  --glass-inner: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  --glass-text: #ffffff;
  --glass-text-sub: rgba(255, 255, 255, 0.7);
  --glass-text-dim: rgba(255, 255, 255, 0.5);

  /* 羊皮纸正文区 */
  --parchment: #faf8f3;
  --ink: #1a1614;
  --charcoal-brown: #3d3632;
  --slate-brown: #6b635d;
  --paper-border: #e3ded5;

  /* 强调色 */
  --amber: #c8963e;
  --amber-hover: #b0852f;
  --amber-soft: rgba(200, 150, 62, 0.12);
  --cinema-red: #8b2e3a;

  --max-width: 1200px;
  --nav-h: 64px;
  --marquee-h: 48px;

  --font-display: "Playfair Display", "Cormorant Garamond", Lora, serif;
  --font-body: Inter, "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", "Space Mono", monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-brown);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--marquee-h);
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- 字体角色 ---------- */
.caption { font-size: 12px; line-height: 1.4; letter-spacing: 0.2px; }
.eyebrow {
  font-size: 12px; line-height: 1.4; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--amber); font-weight: 500;
}
.section-title {
  font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.15;
  color: var(--ink);
}
.dish-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.2; letter-spacing: -0.1px; color: var(--ink); }
.signature-name { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.1; letter-spacing: -0.2px; color: var(--ink); }
.venue-name { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1.08; letter-spacing: -0.3px; color: var(--ink); }
.price { font-family: var(--font-mono); font-size: 16px; line-height: 1.2; color: var(--amber); }
.muted { color: var(--slate-brown); }

/* ---------- 顶部导航 ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 90;
  display: flex; align-items: center;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease, color 300ms ease;
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: rgba(255, 255, 255, 0.92); letter-spacing: -0.2px; white-space: nowrap;
  transition: color 300ms ease;
}
.brand span { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; font-weight: 400; opacity: 0.6; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-cta {
  background: var(--amber); color: #fff; font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 8px; transition: background 200ms ease;
}
.nav-cta:hover { background: var(--amber-hover); color: #fff; }

/* 滚动后 & 内页：深色实底 */
.site-nav.is-solid,
body.solid-nav .site-nav {
  background: rgba(13, 13, 15, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
body.solid-nav .brand { color: rgba(255, 255, 255, 0.9); }

.nav-toggle {
  display: none; width: 40px; height: 40px; border: 1px solid var(--glass-border);
  border-radius: 8px; background: var(--glass-soft); color: #fff; cursor: pointer;
  font-size: 18px; line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 620px; overflow: hidden;
  background: var(--cinema-black);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.32) 45%, rgba(13,13,15,0.72) 100%);
}
.hero-inner {
  position: relative; z-index: 3; height: 100%;
  display: flex; align-items: center; justify-content: flex-end;
  padding-bottom: 40px;
}
.hero-copy { max-width: 640px; padding-right: 12px; }
.hero-eyebrow { color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.hero-title {
  font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1.05;
  letter-spacing: -0.6px; color: #fff; margin-bottom: 18px;
}
.hero-sub { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 520px; margin-bottom: 28px; }
.hero-panels { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }

/* 玻璃磨砂面板 */
.glass-panel {
  background: var(--glass-white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), var(--glass-inner);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.glass-panel:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}
.glass-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 10px;
}
.glass-panel h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: #fff; margin-bottom: 6px; }
.glass-panel p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }
.glass-row { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 6px; }
.glass-row .price { color: var(--amber); font-size: 14px; }
.glass-panel hr { border: 0; border-top: 1px solid rgba(255,255,255,0.15); margin: 16px 0; }

.scroll-hint {
  position: absolute; left: 50%; bottom: calc(var(--marquee-h) + 18px); transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}

/* 浮动预订按钮 */
.float-booking {
  position: fixed; right: 32px; bottom: calc(var(--marquee-h) + 32px); z-index: 100;
  width: 64px; height: 64px; border-radius: 50%; background: var(--amber); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.float-booking span { font-size: 10px; font-weight: 400; letter-spacing: 0.5px; }
.float-booking:hover { transform: scale(1.08); background: var(--amber-hover); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.float-booking:active { transform: scale(0.95); }
.float-booking.is-pulsing { animation: pulse 600ms ease; }
@keyframes pulse { 0% { transform: scale(1); } 45% { transform: scale(1.16); } 100% { transform: scale(1); } }

/* ---------- 通用区块 ---------- */
.section { padding: 80px 0; }
.section.tight { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head p { max-width: 640px; margin: 14px auto 0; color: var(--slate-brown); font-size: 14px; }
.section-head.left { text-align: left; }
.section-head.left p { margin-left: 0; }

/* ---------- 菜单「卡片剧本」 ---------- */
.menu-scene {
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
  padding: 64px 0; border-bottom: 1px solid var(--paper-border);
}
.menu-scene:last-of-type { border-bottom: 0; }
.scene-grid { display: flex; gap: 20px; align-items: stretch; }
.menu-hero-card {
  position: relative; flex: 0 0 35%; min-height: 400px; border-radius: 12px;
  overflow: hidden; background: var(--cinema-black);
}
.menu-hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease-out; }
.menu-hero-card:hover img { transform: scale(1.03); }
.menu-hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.5));
}
.menu-hero-card .card-caption {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: #fff;
}
.menu-hero-card .card-caption strong {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.15;
}
.menu-hero-card .card-caption em { font-style: normal; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.menu-cards { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-content: start; }

.menu-item-card {
  position: relative; background: #fff; border: 1px solid var(--paper-border);
  border-radius: 8px; padding: 16px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
  display: flex; flex-direction: column; gap: 8px;
}
.menu-item-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 150, 62, 0.3);
  background: linear-gradient(0deg, var(--amber-soft), var(--amber-soft)), #fff;
}
.menu-item-card .dot {
  position: absolute; top: 14px; right: 14px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.menu-item-card p { font-size: 13px; color: var(--slate-brown); line-height: 1.6; }
.menu-item-card .card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.menu-item-card .more { font-size: 12px; color: var(--slate-brown); border-bottom: 1px solid var(--paper-border); }
.menu-item-card:hover .more { color: var(--amber); border-color: var(--amber); }

.badge {
  display: inline-block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--cinema-red); color: #fff; padding: 3px 8px; border-radius: 3px; font-weight: 500;
}
.badge.amber { background: var(--amber); }

/* ---------- 招牌推荐宽卡片 ---------- */
.signature-list { display: flex; flex-direction: column; gap: 32px; }
.signature-card {
  display: grid; grid-template-columns: 40% 60%;
  background: #fff; border: 1px solid var(--paper-border); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); transition: box-shadow 200ms ease;
  width: 80%; margin: 0 auto;
}
.signature-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
.signature-card .sig-media { position: relative; min-height: 300px; background: var(--cinema-black); }
.signature-card .sig-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.signature-card .sig-body { padding: 34px 36px; display: flex; flex-direction: column; }
.signature-card .sig-body p { color: var(--charcoal-brown); font-size: 15px; margin: 14px 0 18px; }
.signature-card .sig-meta { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.signature-card .sig-meta .price { font-size: 18px; }
.signature-card .sig-link {
  margin-left: auto; font-size: 13px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--paper-border); padding-bottom: 2px;
}
.signature-card .sig-link:hover { color: var(--amber); border-color: var(--amber); }

/* ---------- 菜单总览 / 列表页通用 ---------- */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 96px) 0 72px; background: var(--cinema-black);
  overflow: hidden; color: #fff;
}
.page-hero .media { position: absolute; inset: 0; }
.page-hero .media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero .media::after { content: ""; position: absolute; inset: 0; background: rgba(13, 13, 15, 0.45); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1.05;
  letter-spacing: -0.6px; margin: 12px 0 14px;
}
.page-hero p { color: rgba(255, 255, 255, 0.72); max-width: 620px; font-size: 15px; }
.breadcrumb { font-size: 12px; letter-spacing: 1px; color: rgba(255, 255, 255, 0.55); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { margin: 0 8px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.list-card {
  background: #fff; border: 1px solid var(--paper-border); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.list-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.list-card .thumb { height: 200px; background: var(--cinema-black); overflow: hidden; }
.list-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease-out; }
.list-card:hover .thumb img { transform: scale(1.04); }
.list-card .body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.list-card .body p { font-size: 14px; color: var(--slate-brown); }
.list-card .foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.list-card .foot .link { font-size: 13px; font-weight: 500; color: var(--amber); }

/* ---------- 菜品 / 文章详情 ---------- */
.detail-hero { position: relative; background: var(--cinema-black); color: #fff; padding: calc(var(--nav-h) + 72px) 0 56px; overflow: hidden; }
.detail-hero .media { position: absolute; inset: 0; }
.detail-hero .media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.detail-hero .media::after { content: ""; position: absolute; inset: 0; background: rgba(13, 13, 15, 0.5); }
.detail-hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.detail-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1.05; letter-spacing: -0.6px; margin: 14px 0; }
.detail-hero .lead { color: rgba(255, 255, 255, 0.75); max-width: 560px; }
.detail-hero .glass-panel { align-self: end; }

.prose { max-width: 720px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); margin: 40px 0 14px; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--charcoal-brown); }
.prose ul { margin: 0 0 16px 0; }
.prose li { position: relative; padding-left: 18px; margin-bottom: 8px; color: var(--charcoal-brown); }
.prose li::before { content: "✦"; position: absolute; left: 0; color: var(--amber); font-size: 11px; }
.prose figure { margin: 28px 0; }
.prose figure img { border-radius: 12px; width: 100%; }
.prose figcaption { font-size: 12px; color: var(--slate-brown); margin-top: 10px; letter-spacing: 0.2px; }

.split { display: grid; grid-template-columns: 1.45fr 1fr; gap: 56px; align-items: start; }
.info-card {
  background: #fff; border: 1px solid var(--paper-border); border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.info-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); margin-bottom: 14px; }
.info-list li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--paper-border); font-size: 14px; }
.info-list li:last-child { border-bottom: 0; }
.info-list .price { font-size: 15px; }

.related { margin-top: 64px; }
.related h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); margin-bottom: 24px; }

/* ---------- 预约 / 联系表单 ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: 0.3px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  background: #fff; border: 1px solid var(--paper-border); border-radius: 8px; padding: 13px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-soft);
}
.form-note { font-size: 12px; color: var(--slate-brown); }
.form-result {
  display: none; margin-top: 20px; padding: 20px 24px; border-radius: 12px;
  background: var(--amber-soft); border: 1px solid rgba(200, 150, 62, 0.35); font-size: 14px; color: var(--ink);
}
.form-result.is-visible { display: block; }
.form-result strong { display: block; font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  background: var(--amber); color: #fff; border: 0; border-radius: 8px;
  padding: 16px 40px; cursor: pointer; transition: background 200ms ease, transform 200ms ease;
}
.btn:hover { background: var(--amber-hover); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--paper-border); }
.btn.ghost:hover { border-color: var(--amber); color: var(--amber); background: transparent; }
.btn.small { font-size: 13px; padding: 11px 22px; }

.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.contact-strip .info-card { padding: 24px; }
.contact-strip .label { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.contact-strip strong { font-family: var(--font-display); font-size: 20px; color: var(--ink); font-weight: 600; display: block; margin-bottom: 6px; }
.contact-strip p { font-size: 13px; color: var(--slate-brown); }

.map-frame { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--paper-border); background: #fff; }
.map-frame svg { display: block; width: 100%; height: auto; }
.map-meta { padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; border-top: 1px solid var(--paper-border); }
.map-meta p { font-size: 13px; color: var(--slate-brown); }

/* ---------- 预订信息面板 ---------- */
.booking-band { background: var(--parchment); padding: 80px 0; }
.booking-panel {
  max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--paper-border);
  border-radius: 16px; padding: 40px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.booking-panel h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.booking-panel > p { color: var(--slate-brown); font-size: 14px; margin-bottom: 24px; }
.booking-panel .hours { margin: 26px 0 22px; }
.booking-panel .hours li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--paper-border); font-size: 14px; }
.booking-panel .hours li:last-child { border-bottom: 0; }
.booking-panel .hours span:last-child { font-family: var(--font-mono); font-size: 14px; color: var(--ink); }
.booking-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- 口碑字幕条 ---------- */
.testimonial-marquee {
  position: fixed; left: 0; right: 0; bottom: 0; height: var(--marquee-h); z-index: 95;
  background: rgba(13, 13, 15, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; overflow: hidden;
}
.marquee-track { display: flex; align-items: center; white-space: nowrap; animation: marquee 48s linear infinite; }
.testimonial-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 13px; font-weight: 300; color: rgba(255, 255, 255, 0.8); }
.marquee-track i { color: var(--amber); font-style: normal; margin: 0 22px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 160s; } }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--cinema-black); color: rgba(255, 255, 255, 0.65); padding: 64px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; margin-bottom: 12px; }
.site-footer p { font-size: 13px; }
.footer-col h4 { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 14px; font-weight: 500; }
.footer-col li { margin-bottom: 9px; font-size: 13px; }
.footer-col a:hover { color: var(--amber); }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: 0.5px;
  transition: background 200ms ease, border-color 200ms ease;
}
.socials a:hover { background: var(--glass-soft); border-color: var(--amber); color: var(--amber); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, 0.45); }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .scene-grid { flex-direction: column; }
  .menu-hero-card { flex: none; min-height: 280px; }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .signature-card { width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .detail-hero .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --marquee-h: 40px; }
  body { font-size: 15px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(13, 13, 15, 0.96);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 8px 24px 20px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 15px; }
  .nav-toggle { display: block; }
  .nav-cta { align-self: flex-start; margin-top: 12px; }
  .hero { height: auto; min-height: 100vh; padding: 100px 0 80px; }
  .hero-inner { align-items: flex-start; }
  .hero-title, .page-hero h1, .detail-hero h1 { font-size: 34px; letter-spacing: -0.4px; }
  .venue-name { font-size: 30px; }
  .signature-name { font-size: 24px; }
  .hero-panels { max-width: 100%; }
  .glass-panel { padding: 20px 22px; }
  .float-booking { width: 48px; height: 48px; right: 16px; bottom: calc(var(--marquee-h) + 16px); }
  .float-booking span { display: none; }
  .section { padding: 56px 0; }
  .menu-scene { min-height: auto; padding: 48px 0; }
  .menu-cards { grid-template-columns: 1fr; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .signature-card { grid-template-columns: 1fr; }
  .signature-card .sig-media { min-height: 220px; }
  .signature-card .sig-body { padding: 24px; }
  .detail-hero { padding: calc(var(--nav-h) + 48px) 0 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .booking-panel { padding: 26px 22px; }
  .btn { width: 100%; padding: 15px 24px; }
  .booking-actions { flex-direction: column; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .marquee-track span { font-size: 11px; }
  .marquee-track i { margin: 0 14px; }
  .scroll-hint { display: none; }
}
