/* ==========================================================================
   金大陆海鲜 · 官网样式
   品牌色：蓝 #05A2E3（主）/ 黄 #F8F209（点缀）——取自品牌 logo
   纯静态站，无外部字体依赖（国内访问不引 Google Fonts）
   ========================================================================== */

:root {
  /* —— 基础层：Design Token 原始值 —— */
  --blue-100: #d9f1fb;
  --blue-300: #a5dbf7;
  --blue-500: #05a2e3;   /* ★品牌主色（logo 取色） */
  --blue-600: #048ac1;
  --blue-700: #03719f;
  --blue-900: #0d3247;
  --yellow-500: #f8f209; /* ★品牌辅色（点缀用，logo 取色） */

  /* —— 语义层：组件只引用这一层 —— */
  --brand: var(--blue-500);
  --brand-dark: var(--blue-700);
  --brand-light: var(--blue-300);
  --brand-yellow: var(--yellow-500);
  --accent: var(--blue-700);      /* 按钮/强调（深蓝，后续可换黄） */
  --accent-dark: #02567a;
  --ink: var(--blue-900);
  --text: #3e586b;
  --text-light: #7d95a5;
  --paper: #f5f9fc;
  --paper-dark: #eaf2f8;
  --white: #fdfeff;
  --hairline: #d8e6f0;

  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow: 0 10px 40px rgba(13, 50, 71, 0.10);
  --shadow-sm: 0 4px 16px rgba(13, 50, 71, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 500; /* 正文：思源黑体 Medium */
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* 首次进入时用品牌 Logo 遮罩承接资源加载，避免首屏逐块跳出。 */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}
.page-loader__mark img {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.page-loader__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(5, 162, 227, .22);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: page-loader-spin 1.15s linear infinite;
}
@keyframes page-loader-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .page-loader { transition: none; }
  .page-loader__ring { animation: none; }
}

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

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

/* --------------------------------------------------------------------------
   通用组件
   -------------------------------------------------------------------------- */

/* 区块标题：金色小字 + 衬线大标题 + 分隔饰线 */
.section { padding: 88px 0; }
.section--paper-dark { background: var(--paper-dark); }
.section--ink { background: var(--ink); color: #d8ecf9; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  font-size: 13px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--brand-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.section--ink .section-head h2 { color: #ecf6fd; }
.section-head .divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  margin: 20px auto 0;
  position: relative;
}
.section-head .divider::before,
.section-head .divider::after {
  content: ""; position: absolute; top: -3px;
  width: 8px; height: 8px; transform: rotate(45deg);
  background: var(--brand-yellow);
}
.section-head .divider::before { left: -16px; }
.section-head .divider::after { right: -16px; }
.section-head .desc {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--text-light);
  font-size: 15px;
}
.section--ink .section-head .desc { color: #93bcd8; }
.menu-intro--mobile { display: none; }
.dish-point--mobile { display: none; }

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--sans);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(3, 113, 159, 0.3); }
.btn--gold { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5, 162, 227, 0.4); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn--outline { border-color: var(--brand); color: var(--brand-dark); background: transparent; }
.btn--outline:hover { background: var(--brand); color: #fff; }

/* 占位图：虚线框 + 标注，替换正式图后该标注消失 */
.ph { position: relative; overflow: hidden; background: var(--paper-dark); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph .ph-tag {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  font-size: 12px; letter-spacing: 0.08em;
  color: #5d7d95; background: rgba(253, 254, 255, 0.92);
  border: 1px dashed #a9c9de;
  padding: 4px 10px; border-radius: 3px;
  pointer-events: none;
}

/* 卡片 */
.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .card-body { padding: 24px; }
.card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.card .card-sub { font-size: 13px; color: var(--brand-dark); letter-spacing: 0.15em; margin-bottom: 10px; }

/* 表格（宴会厅参数等） */
.spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec th, .spec td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--hairline); }
.spec th { color: var(--text-light); font-weight: normal; white-space: nowrap; width: 5.5em; }
.spec td { color: var(--text); }

/* 徽标 */
.badge {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.1em;
  padding: 3px 12px;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  border-radius: 999px;
}
.badge--red { border-color: var(--accent); color: var(--accent); }
.badge--fill { background: var(--brand); border-color: var(--brand); color: #fff; }

/* 文案占位标记：待品牌方确认的文案统一此样式，替换后删除 mark 类 */
.pending { color: var(--text-light); }
.pending::after {
  content: "待确认";
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: var(--accent);
  border: 1px solid rgba(3, 113, 159, 0.4);
  border-radius: 3px;
  padding: 0 5px;
  line-height: 1.5;
  vertical-align: 2px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   页头
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  font-size: 13px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  color: #93bcd8;
}
.topbar .slogan { letter-spacing: 0.2em; }
.topbar .topbar-tel { display: flex; align-items: center; gap: 6px; color: var(--brand-light); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 254, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
}
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--brand-dark);
  background: radial-gradient(circle at 30% 25%, #fff, var(--paper-dark));
  flex-shrink: 0;
}
.brand-name { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: 0.15em; color: var(--ink); line-height: 1.2; }
.brand-name small { display: block; font-family: var(--sans); font-size: 11px; font-weight: normal; letter-spacing: 0.32em; color: var(--brand-dark); }

.main-nav ul { display: flex; gap: 8px; }
.main-nav a {
  display: block; padding: 8px 18px;
  font-size: 15px; letter-spacing: 0.12em;
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.main-nav a:hover { color: var(--brand-dark); }
.main-nav a.active {
  color: var(--brand-dark);
  font-weight: 600;
  position: relative;
}
.main-nav a.active::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  transform: translateX(-50%);
  width: 24px; height: 2px; background: var(--brand);
}
.header-tel { display: flex; align-items: center; gap: 10px; }
.header-tel .tel-label { font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; }
.header-tel .tel-num { font-size: 20px; font-weight: 700; color: var(--accent); font-family: var(--serif); letter-spacing: 0.04em; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   首页通栏（Swiper 轮播）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  --swiper-theme-color: var(--brand-light);
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 700px; /* 固定等高：第1张带统计区最高(实测668)，避免2/3张底部露缝 */
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 32, 48, 0.82) 0%, rgba(6, 32, 48, 0.55) 45%, rgba(6, 32, 48, 0.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 100px 0; width: 100%; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; letter-spacing: 0.4em; color: var(--brand-light);
  margin-bottom: 22px;
}
.hero-kicker::before { content: ""; width: 40px; height: 1px; background: var(--brand); }
.hero h1 {
  font-family: var(--serif);
  font-size: 56px; font-weight: 700;
  letter-spacing: 0.1em; line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero .hero-sub {
  font-family: var(--serif);
  font-size: 20px; letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap;
}
.hero-meta .meta-item .num {
  font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--brand-light);
  line-height: 1.2;
}
.hero-meta .meta-item .num small { font-size: 15px; margin-left: 3px; }
.hero-meta .meta-item .label { font-size: 13px; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.72); }
.hero-meta .meta-item.pending-num .num { font-size: 24px; line-height: 1.55; }

/* 通用页头（内页） */
.page-hero {
  background: linear-gradient(120deg, #0d3247 0%, #123e5c 60%, #17507a 100%);
  color: #fff;
  padding: 84px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(5, 162, 227, 0.22);
}
.page-hero::before { left: -120px; top: -140px; }
.page-hero::after { right: -100px; bottom: -180px; }
.page-hero .eyebrow { font-size: 13px; letter-spacing: 0.5em; text-indent: 0.5em; color: var(--brand-light); display: block; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--serif); font-size: 40px; letter-spacing: 0.18em; font-weight: 700; }
.page-hero p { margin-top: 14px; color: rgba(255, 255, 255, 0.72); font-size: 15px; letter-spacing: 0.1em; }

/* 品牌页头跟随光晕：坐标由 requestAnimationFrame 节流后的 pointermove 写入。 */
.page-hero--cursor .container { position: relative; z-index: 1; }
.hero-pointer-glow {
  position: absolute;
  z-index: 0;
  left: 0; top: 0;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, 50%), var(--cursor-y, 50%), 0);
  transition: opacity 0.2s ease;
}
.hero-pointer-glow::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  left: 50%; top: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 211, 244, 0.17) 0%, rgba(76, 172, 216, 0.08) 32%, transparent 70%);
  transform: translate(-50%, -50%);
}
.hero-pointer-glow::after {
  content: "";
  position: absolute;
  width: 42px; height: 42px;
  left: 50%; top: 50%;
  border: 1px solid rgba(180, 231, 248, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(123, 207, 241, 0.18);
  transform: translate(-50%, -50%) scale(0.75);
}
.page-hero--cursor.is-pointer-active .hero-pointer-glow { opacity: 1; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .hero-pointer-glow { display: none; }
}

/* 面包屑 */
.breadcrumb { font-size: 13px; color: var(--text-light); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb .sep { margin: 0 8px; color: var(--hairline); }

/* --------------------------------------------------------------------------
   首页各区块
   -------------------------------------------------------------------------- */

/* 品牌简介（左文右视频） */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .eyebrow { font-size: 13px; letter-spacing: 0.4em; color: var(--brand-dark); display: block; margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink); margin-bottom: 24px; line-height: 1.5;
}
.about-text p { margin-bottom: 16px; text-align: justify; }
.about-text .lead { font-family: var(--serif); font-size: 18px; line-height: 1.8; color: var(--ink); }
.about-text .about-more { margin-top: 12px; }
.about-figure { position: relative; }
.about-video { aspect-ratio: 16 / 9 !important; overflow: hidden; background: #061b28; }
.about-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-figure .ph { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow); }

/* 宴型精选卡片 */
.feast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feast-card .ph { aspect-ratio: 4 / 3; }
.feast-card .card-body { display: flex; flex-direction: column; gap: 6px; }
.feast-card .card-foot { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.feast-card .price { font-family: var(--serif); color: var(--accent); font-weight: 700; font-size: 17px; }
.feast-card .price small { font-size: 12px; color: var(--text-light); font-weight: normal; }
.link-more { font-size: 14px; color: var(--brand-dark); letter-spacing: 0.1em; }
.link-more:hover { color: var(--accent); }

/* 招牌菜横向滚动 / 网格 */
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dish-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); }
.dish-card .ph { aspect-ratio: 4 / 3; }
.dish-card .dish-info { padding: 16px 18px 18px; text-align: center; }
.dish-card .dish-info h3 { font-size: 18px; margin-bottom: 4px; }
.dish-card .dish-info p { font-size: 13px; color: var(--text-light); }

/* 门店 */
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.store-card { display: grid; grid-template-columns: 220px 1fr; }
.store-card .ph { height: 100%; min-height: 210px; }
.store-card .card-body h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.store-card .store-rows { font-size: 14px; display: grid; gap: 6px; margin-top: 6px; }
.store-card .store-rows b { color: var(--text-light); font-weight: normal; margin-right: 8px; }
.store-card .store-rows .tel { color: var(--accent); font-weight: 600; }
.store-card .card-foot { margin-top: 14px; display: flex; gap: 12px; }

/* 咨询横幅 */
.cta-band {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  color: #fff; text-align: center;
  padding: 72px 0;
}
.cta-band h2 { font-family: var(--serif); font-size: 30px; letter-spacing: 0.15em; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; letter-spacing: 0.1em; }
.cta-band .cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, 0.7); }

/* CTA 动效：仅此段与 cta-band--motion 标记相关，删除即可完整回退为静态横幅。 */
.cta-band--motion {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-band--motion::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -55% -35%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 230, 90, 0.13), transparent 30%),
    linear-gradient(112deg, transparent 43%, rgba(255, 235, 133, 0.15) 50%, transparent 57%);
  transform: translate3d(-20%, 16%, 0) rotate(-8deg);
  animation: cta-light-sweep 10s ease-in-out infinite;
}
.cta-band--motion .container { position: relative; z-index: 1; }
.cta-band--motion .btn--gold { animation: cta-call-pulse 3.6s ease-in-out infinite; }
@keyframes cta-light-sweep {
  0%, 18% { transform: translate3d(-20%, 16%, 0) rotate(-8deg); opacity: 0; }
  42% { opacity: 1; }
  72%, 100% { transform: translate3d(20%, -16%, 0) rotate(-8deg); opacity: 0; }
}
@keyframes cta-call-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band--motion::before,
  .cta-band--motion .btn--gold { animation: none; }
}

/* --------------------------------------------------------------------------
   品牌页
   -------------------------------------------------------------------------- */
.prose { max-width: 780px; margin: 0 auto; font-size: 16px; }
.prose p { margin-bottom: 20px; text-align: justify; }
.prose .lead {
  font-family: var(--serif);
  font-size: 20px; line-height: 2;
  color: var(--ink);
  border-left: 3px solid var(--brand);
  padding-left: 20px;
  margin-bottom: 28px;
}
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.honor-item {
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.honor-item .year { font-family: var(--serif); color: var(--brand-dark); font-size: 15px; letter-spacing: 0.1em; }
.honor-item h3 { font-size: 17px; margin: 8px 0 6px; }
.honor-item p { font-size: 13px; color: var(--text-light); }

/* --------------------------------------------------------------------------
   宴会产品页
   -------------------------------------------------------------------------- */
.hall-card { display: grid; grid-template-columns: 1.1fr 1fr; }
.hall-card .ph { min-height: 300px; aspect-ratio: 4 / 3; height: auto; }
.hall-card .card-body { padding: 28px; display: flex; flex-direction: column; }
.hall-card .hall-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 14px; }
.hall-card .spec { flex: 0 0 auto; margin: 4px 0 10px; }
.hall-card .hall-note { font-size: 13px; color: var(--text-light); margin-top: 12px; }
.hall-card .hall-note strong { color: var(--accent); font-weight: 600; }

/* 包厢卡：统一信息层级，避免小卡留白与长参数拥挤 */
.room-grid { align-items: stretch; }
.room-card { display: flex; flex-direction: column; height: 100%; }
.room-card .ph { aspect-ratio: 4 / 3; }
.room-card .card-body { padding: 22px 24px 24px; display: flex; flex: 1; flex-direction: column; }
.room-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.room-head h3 { margin: 0; font-size: 19px; letter-spacing: 0.04em; }
.room-head > span { flex: 0 0 auto; border: 1px solid var(--hairline); border-radius: 999px; color: var(--brand-dark); font-size: 11px; letter-spacing: 0.08em; padding: 3px 8px; }
.room-summary { min-height: 120px; }
.room-numbers { margin: 7px 0 0; color: var(--brand-dark); font-size: 12px; letter-spacing: 0.04em; line-height: 1.5; }
.room-intro { min-height: 3.4em; margin: 10px 0 14px; color: var(--text-light); font-size: 13px; line-height: 1.7; }
.room-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.room-stats > div { min-width: 0; padding: 10px 8px; }
.room-stats > div + div { border-left: 1px solid var(--hairline); }
.room-stats .room-stat-wide { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--hairline); border-left: 0; }
.room-stats .room-stat-wide strong { margin-top: 0; }
.room-stats span { display: block; color: var(--text-light); font-size: 11px; letter-spacing: 0.08em; }
.room-stats strong { display: block; margin-top: 4px; color: var(--text); font-size: 14px; font-weight: 500; line-height: 1.35; }
.room-features { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding-top: 14px; }
.room-features span { border-radius: 999px; background: var(--paper); color: var(--brand-dark); font-size: 11px; padding: 4px 9px; }

/* 宴型选项卡 */
.feast-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.feast-tab {
  padding: 10px 30px;
  border: 1px solid var(--hairline);
  background: var(--white);
  border-radius: 999px;
  font-size: 15px; letter-spacing: 0.15em;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.feast-tab:hover { border-color: var(--brand); color: var(--brand-dark); }
.feast-tab.active { background: var(--ink); border-color: var(--ink); color: var(--brand-light); }
.feast-panel { display: none; }
.feast-panel.active { display: block; animation: fadeIn 0.4s ease; }

/* 套餐卡 */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.package-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 32px 28px; position: relative; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card--hot { border-color: var(--brand); box-shadow: 0 12px 32px rgba(5, 162, 227, 0.22); }
.package-card .pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-size: 12px; letter-spacing: 0.2em; text-indent: 0.2em;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.package-card h3 { font-family: var(--serif); font-size: 21px; color: var(--ink); letter-spacing: 0.08em; }
.package-card .pkg-price { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--accent); margin: 14px 0 4px; }
.package-card .pkg-price small { font-size: 14px; font-weight: normal; color: var(--text-light); }
.package-card .pkg-price.is-consult { font-size: 22px; letter-spacing: 0.1em; color: var(--brand-dark); }
.package-card .pkg-dishes { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.package-card ul { text-align: left; margin: 0 auto 24px; max-width: 260px; display: grid; gap: 8px; }
.package-card ul li { font-size: 14px; padding-left: 20px; position: relative; }
.package-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; transform: rotate(45deg);
  background: var(--brand-yellow);
}

/* 菜单折叠面板 */
.menu-accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.menu-item { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.menu-item .menu-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 17px; letter-spacing: 0.08em; color: var(--ink);
}
.menu-item .menu-head .cat { color: var(--brand-dark); font-size: 14px; margin-right: 14px; }
.menu-item .menu-head .arrow { transition: transform 0.25s; color: var(--brand-dark); }
.menu-item.open .menu-head .arrow { transform: rotate(180deg); }
.menu-item .menu-body { display: none; padding: 4px 24px 20px; }
.menu-item.open .menu-body { display: block; }
.menu-item .menu-body li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 9px 0; border-bottom: 1px dashed var(--hairline); font-size: 15px;
}
.menu-item .menu-body li:last-child { border-bottom: none; }
.menu-item .menu-body .ing { color: var(--text-light); font-size: 13px; }

/* --------------------------------------------------------------------------
   菜品页
   -------------------------------------------------------------------------- */
.dish-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.signature-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.signature-band .ph { aspect-ratio: 16 / 10; border-radius: var(--radius); box-shadow: var(--shadow); }
.signature-list { display: grid; gap: 4px; }
.signature-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 4px; border-bottom: 1px solid var(--hairline);
}
.signature-list .no { font-family: var(--serif); color: var(--brand); font-size: 15px; min-width: 2em; }
.signature-list .name { font-family: var(--serif); font-size: 17px; color: var(--ink); letter-spacing: 0.05em; white-space: nowrap; }
.signature-list .desc { font-size: 13px; color: var(--text-light); }

/* --------------------------------------------------------------------------
   案例页
   -------------------------------------------------------------------------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card .ph { aspect-ratio: 3 / 4; }
.case-card .card-body { display: block; }
.case-card .case-title { font-size: 16px; }
.case-card .case-title small { display: block; font-size: 13px; color: var(--text-light); margin-top: 2px; }
.case-note { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 28px; }

/* 灯箱 */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 20, 31, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: var(--radius); }
.lightbox .lb-close {
  position: absolute; right: 28px; top: 22px;
  background: none; border: none; color: #fff; font-size: 38px; cursor: pointer; line-height: 1;
}
.lightbox .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: 14px; letter-spacing: 0.15em; }

/* --------------------------------------------------------------------------
   页脚
   -------------------------------------------------------------------------- */
.site-footer { background: #081f30; color: #8fa9bc; font-size: 14px; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding: 64px 0 48px;
}
.site-footer h4 {
  font-family: var(--serif); color: #d8ecf9; font-size: 17px; letter-spacing: 0.15em;
  margin-bottom: 18px; font-weight: 600;
}
.footer-brand .brand-name { color: #e6f3fc; }
.footer-brand p { margin-top: 14px; line-height: 1.9; font-size: 13px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--brand-light); }
.footer-qr { display: flex; align-items: flex-start; justify-content: center; }
.footer-main > div:last-child h4 { text-align: center; }
.footer-main > div:last-child .footer-qr { justify-content: center; }
.footer-qr .qr-item { text-align: center; }
.footer-qr .qr-item .ph { width: 110px; height: 110px; border-radius: var(--radius); margin: 0 auto 8px; }
.footer-qr .qr-item span { font-size: 12px; letter-spacing: 0.1em; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li > span { flex: 0 0 auto; white-space: nowrap; }
.footer-contact .ft-tel { position: relative; top: -4px; font-family: var(--serif); font-size: 20px; color: var(--brand-light); }
.mobile-builder-link { display: none; }
.footer-bottom {
  border-top: 1px solid rgba(216, 236, 249, 0.12);
  padding: 20px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #6f8ba0;
}

/* --------------------------------------------------------------------------
   悬浮咨询 + 移动端底栏
   -------------------------------------------------------------------------- */
/* 移动端底栏默认隐藏，仅 ≤640px 显示（见响应式） */
.mobile-bar { display: none; }
.back-top {
  position: fixed; right: 94px; bottom: 96px; z-index: 190;
  width: 48px; height: 48px; display: none; align-items: center; justify-content: center;
  border: 1px solid var(--hairline); border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.95); color: var(--brand-dark);
  box-shadow: 0 8px 22px rgba(13, 50, 71, 0.2); font-size: 24px; line-height: 1;
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.back-top iconify-icon { display: block; font-size: 22px; transform: rotate(-90deg); }
.float-consult { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: grid; gap: 12px; justify-items: center; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 8px 24px rgba(13, 50, 71, 0.28);
  font-family: var(--sans); font-size: 11px; color: #fff; letter-spacing: 0.05em;
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.06); }
.float-btn svg { width: 22px; height: 22px; }
.float-btn--tel { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.float-btn--wx { background: linear-gradient(135deg, #2fae67, #1f8b4d); }
.float-qr {
  position: absolute; right: 74px; bottom: 0;
  width: 220px; background: var(--white); border-radius: 8px;
  box-shadow: var(--shadow); padding: 18px;
  display: none; text-align: center;
}
.float-consult.open .float-qr { display: block; }
.float-qr::after {
  content: ""; position: absolute; right: -7px; bottom: 22px;
  width: 14px; height: 14px; background: var(--white); transform: rotate(45deg);
}
.float-qr-code { width: 160px; height: 160px; margin: 0 auto 10px; overflow: hidden; border: 1px dashed var(--hairline); border-radius: 4px; }
.float-qr-code img { display: block; width: 225px; height: auto; max-width: none; margin: 0; border: 0; transform: translate(-36px, -73px); }
.float-qr p { font-size: 13px; color: var(--text); line-height: 1.6; }
.float-qr small { color: var(--text-light); font-size: 12px; }
.float-qr .qr-close { position: absolute; right: 10px; top: 6px; border: none; background: none; color: var(--text-light); font-size: 16px; cursor: pointer; }

/* --------------------------------------------------------------------------
   滚动进入动效
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   响应式
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .dish-grid, .dish-page-grid { grid-template-columns: repeat(3, 1fr); }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero h1 { font-size: 40px; }
  .about-grid, .signature-band { grid-template-columns: 1fr; gap: 40px; }
  .feast-grid { grid-template-columns: 1fr 1fr; }
  .hall-card { grid-template-columns: 1fr; }
  .hall-card .ph { min-height: 220px; }
  .store-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .case-grid { grid-template-columns: 1fr 1fr; }

  /* 移动端导航：汉堡展开 */
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    min-width: 44px; min-height: 44px;
    background: none; border: none; cursor: pointer; padding: 8px;
    touch-action: manipulation;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: all 0.25s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 76px;
    background: var(--white); border-bottom: 1px solid var(--hairline);
    display: none; box-shadow: var(--shadow-sm);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 12px 24px 20px; gap: 2px; }
  .main-nav a { min-height: 44px; padding: 10px 4px; border-bottom: 1px solid var(--hairline); display: flex; align-items: center; }
  .main-nav a.active::after { display: none; }
  .header-tel .tel-label { display: none; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  body { font-size: 15px; padding-bottom: calc(50px + env(safe-area-inset-bottom)); }
  .topbar { display: none; }
  .header-inner { height: 64px; }
  .brand-logo { width: 42px; height: 42px; font-size: 16px; }
  .brand-name { font-size: 18px; }
  .header-tel .tel-num { display: none; }
  .main-nav { top: 64px; }
  .hero { min-height: 0; }
  .hero-swiper .swiper-slide { height: 520px; }
  .hero-inner { padding: 56px 24px; }
  .hero .hero-sub { word-break: keep-all; line-height: 2; }
  .hero-bg img { object-position: center 22%; }
  .hero h1 { font-size: 30px; letter-spacing: 0.06em; }
  .hero .hero-sub { font-size: 15px; letter-spacing: 0.18em; }
  .hero-meta { gap: 24px; margin-top: 40px; }
  .section-head h2 { font-size: 26px; }
  .menu-intro--desktop { display: none; }
  .menu-intro--mobile { display: block; }
  .dish-card .dish-info .dish-point--desktop { display: none; }
  .dish-card .dish-info .dish-point--mobile { display: block; }
  .page-hero { padding: 60px 0 52px; }
  .page-hero h1 { font-size: 28px; }
  /* 首页宴会卡片在手机端单列，保留图片比例并给文案完整阅读宽度。 */
  .feast-grid { grid-template-columns: 1fr; gap: 18px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .dish-grid, .dish-page-grid, .case-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feast-card .card-body { padding: 18px 20px 20px; }
  .feast-card .card-foot { flex-wrap: wrap; gap: 10px 18px; }
  .dish-card .dish-info { padding: 10px 8px 12px; }
  .dish-card .dish-info h3 { font-size: 15px; }
  .dish-card .dish-info p:not(.dish-point--mobile) { display: none; }
  .room-card .card-body { padding: 16px; }
  /* 包厢卡片在手机端压缩图片与信息密度，保留核心人数/场景信息。 */
  .room-card .ph { aspect-ratio: 16 / 9; }
  .room-card .card-body { padding: 13px 14px 15px; }
  .room-head h3 { font-size: 18px; }
  .room-head > span { padding: 2px 7px; font-size: 10px; }
  .room-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 0;
    margin: 7px 0 9px;
    font-size: 12px;
    line-height: 1.55;
  }
  .room-stats > div { padding: 7px 6px; }
  .room-stats span { font-size: 10px; }
  .room-stats strong { margin-top: 3px; font-size: 13px; }
  .room-features { gap: 5px; padding-top: 9px; }
  .room-features span { padding: 3px 7px; font-size: 10px; }
  /* 宴会厅标签在手机端只保留一行，优先展示核心宴席场景。 */
  .hall-card .hall-tags {
    flex-wrap: nowrap;
    gap: 6px;
    margin: 4px 0 10px;
    overflow: hidden;
    white-space: nowrap;
  }
  .hall-card .hall-tags .badge {
    flex: 0 0 auto;
    padding: 3px 7px;
    font-size: 11px;
  }
  .hall-card .hall-tags .badge:nth-child(n + 5) { display: none; }
  /* 地址在页脚与到店指引中已有展示，手机卡片内隐藏重复信息。 */
  .hall-card .hall-note { display: none; }
  .room-head { display: block; }
  .room-head > span { display: inline-block; margin-top: 7px; }
  .room-summary { min-height: 0; }
  .room-intro { min-height: 0; margin: 9px 0 12px; }
  .room-stats > div { padding: 9px 6px; }
  .room-stats strong { font-size: 13px; }
  .store-card { grid-template-columns: 1fr; }
  .store-card .ph { min-height: 0; aspect-ratio: 16 / 8; }
  .store-card .card-body { padding: 18px; }
  .store-card .store-rows { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 12px; font-size: 13px; line-height: 1.55; }
  .store-card .store-rows > div:first-child,
  .store-card .store-rows > div:nth-child(4) { grid-column: 1 / -1; }
  .store-card .store-rows b { margin-right: 4px; }
  .store-card .card-foot { margin-top: 10px; }
  .btn { padding: 12px 26px; font-size: 14px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: 38px 18px 28px; }
  .footer-main > .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; align-items: center; }
  .footer-brand > img { grid-row: 1 / 3; width: 58px !important; height: 58px !important; margin: 0 !important; }
  .footer-brand .brand-name { align-self: end; }
  .footer-brand p { grid-column: 1 / -1; margin-top: 8px; line-height: 1.6; }
  /* 移动端页脚采用品牌 + 联系信息主线，导航仍由顶部汉堡菜单提供。 */
  .footer-main > div:nth-child(2) { display: none; }
  .footer-main > .footer-contact { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .site-footer h4 { margin-bottom: 10px; font-size: 16px; }
  .site-footer ul { gap: 6px; }
  .footer-contact li { gap: 6px; line-height: 1.55; }
  .footer-contact .ft-tel { font-size: 17px; }
  .footer-contact h4 { border: 0; padding: 0; margin-bottom: 8px; text-align: left; }
  .mobile-builder-link {
    display: inline-block;
    margin: -2px 0 10px;
    color: var(--brand-light);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .footer-qr .qr-item .ph { width: 88px; height: 88px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding-left: 18px; padding-right: 18px; }

  /* 悬浮按钮让位给移动端底栏 */
  .float-consult { display: none; }
  .back-top { right: 14px; bottom: calc(64px + env(safe-area-inset-bottom)); width: 44px; height: 44px; font-size: 21px; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    display: flex;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -6px 24px rgba(13, 50, 71, 0.18);
  }
  .mobile-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 0; color: #fff; font-size: 15px; letter-spacing: 0.15em;
  }
  .mobile-bar a svg, .mobile-bar a iconify-icon { width: 18px; font-size: 18px; }
  .mobile-bar .mb-tel { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
  .mobile-bar .mb-wx { background: linear-gradient(135deg, #2fae67, #1f8b4d); }
  /* 小屏隐藏轮播箭头（手势滑动即可），保留分页圆点 */
  .swiper-button-next, .swiper-button-prev { display: none !important; }
  .dish-swiper { padding-bottom: 44px; }
  .case-swiper { padding-bottom: 44px; }
}

/* 320px 等窄屏：单列内容优先，避免卡片标题和按钮挤压。 */
@media (max-width: 380px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .feast-grid, .dish-grid, .dish-page-grid, .case-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-meta { gap: 16px; }
  .section-head { margin-bottom: 40px; }
}

/* --------------------------------------------------------------------------
   Iconify 图标基础
   -------------------------------------------------------------------------- */
iconify-icon {
  display: inline-block;
  vertical-align: -0.15em;
  line-height: 1;
}
.float-btn iconify-icon { font-size: 21px; }
.float-btn span, .mobile-bar span { line-height: 1; }
.mobile-bar a iconify-icon { font-size: 18px; }
.store-rows b iconify-icon { font-size: 15px; color: var(--brand-dark); }
.spec th iconify-icon { font-size: 15px; color: var(--brand-dark); }
.hall-note iconify-icon { color: var(--brand-dark); font-size: 15px; }
.case-note iconify-icon { color: var(--brand-dark); }
.btn iconify-icon { font-size: 1.15em; }
.topbar-tel iconify-icon { font-size: 15px; }

/* --------------------------------------------------------------------------
   Swiper 轮播定制（通栏 / 招牌菜 / 案例）
   -------------------------------------------------------------------------- */
/* 通栏：分页圆点与箭头 */
.hero-swiper .swiper-pagination { bottom: 26px; }
.hero-swiper .swiper-pagination-bullet {
  width: 26px; height: 3px; border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1; transition: all 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--brand-light); }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(6, 32, 48, 0.35);
  color: #fff;
  transition: background 0.25s;
}
.hero-swiper .swiper-button-prev:hover, .hero-swiper .swiper-button-next:hover { background: rgba(5, 162, 227, 0.65); }
.hero-swiper .swiper-button-prev { left: 28px; }
.hero-swiper .swiper-button-next { right: 28px; }

/* 招牌菜轮播 */
.dish-swiper {
  padding: 4px 4px 56px;
  --swiper-theme-color: var(--brand-dark);
}
.dish-swiper .swiper-slide { height: auto; display: flex; }
.dish-swiper .dish-card { width: 100%; }

/* 案例轮播 */
.case-swiper {
  padding: 4px 4px 56px;
  --swiper-theme-color: var(--brand-dark);
}.case-swiper .swiper-slide { height: auto; display: flex; flex-direction: column; }
.case-swiper .case-card { width: 100%; cursor: zoom-in; }
.case-swiper .swiper-button-prev, .case-swiper .swiper-button-next {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.case-swiper .swiper-button-prev:hover, .case-swiper .swiper-button-next:hover {
  background: var(--brand); color: #fff;
}
.case-swiper .swiper-button-prev { left: -8px; }
.case-swiper .swiper-button-next { right: -8px; }

/* 桌面端显示菜碟/案例轮播箭头（小屏在上方媒体查询统一隐藏） */
@media (min-width: 641px) {
  .dish-swiper .swiper-button-prev, .dish-swiper .swiper-button-next {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--white); color: var(--brand-dark);
    box-shadow: var(--shadow-sm); transition: all 0.25s;
  }
  .dish-swiper .swiper-button-prev:hover, .dish-swiper .swiper-button-next:hover {
    background: var(--brand); color: #fff;
  }
  .dish-swiper .swiper-button-prev { left: -8px; }
  .dish-swiper .swiper-button-next { right: -8px; }
}

/* --------------------------------------------------------------------------
   文档式素材预览（喜宴套餐菜单页 / 完整菜谱在线翻阅）
   文档页不能裁剪：contain 完整显示 + 灯箱看整页
   -------------------------------------------------------------------------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.doc-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.doc-card .ph {
  aspect-ratio: 1 / 1.3;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.doc-card .ph img { width: 100%; height: 100%; object-fit: contain; }
.doc-card .doc-cap {
  padding: 10px 12px 12px;
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.doc-card .doc-cap b { display: block; font-family: var(--serif); font-size: 15px; color: var(--ink); letter-spacing: 0.06em; }
.doc-card .doc-cap span { display: block; font-size: 12px; color: var(--brand-dark); margin-top: 2px; }
.doc-card .doc-cap .pending-tag { font-size: 11px; color: var(--text-light); }

@media (max-width: 1024px) { .doc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .doc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .doc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* 灯箱内文档页看全貌 */
.lightbox img.doc-full { object-fit: contain; background: #fff; max-height: 92vh; }

/* 品牌 Logo 图 */
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }

/* 套餐轮播 */
.pkg-swiper { padding: 4px 4px 56px; --swiper-theme-color: var(--brand-dark); }
.pkg-swiper .swiper-slide { height: auto; display: flex; }
.pkg-swiper .doc-card { width: 100%; }
.pkg-swiper .swiper-button-prev, .pkg-swiper .swiper-button-next {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--brand-dark);
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.pkg-swiper .swiper-button-prev:hover, .pkg-swiper .swiper-button-next:hover { background: var(--brand); color: #fff; }
.pkg-swiper .swiper-button-prev { left: -8px; }
.pkg-swiper .swiper-button-next { right: -8px; }
@media (max-width: 640px) { .pkg-swiper { padding-bottom: 44px; } }

/* 套餐卡（经典样式） */
.pkg-card2 {
  position: relative; overflow: hidden;
  width: 100%; background: var(--white); border: 1px solid #e3cf94;
  border-radius: var(--radius); padding: 30px 22px 24px; text-align: center;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg-card2::before {
  content: ""; position: absolute; inset: 5px; z-index: 2;
  border: 1px solid rgba(214, 190, 120, 0.55); border-radius: 3px; pointer-events: none;
}
.pkg-card2 > * { position: relative; z-index: 3; }
.pkg-corner { position: absolute; width: 150px; opacity: 0.8; pointer-events: none; z-index: 1; }
.pkg-corner.tl { left: 0; top: 0; }
.pkg-corner.br { right: 0; bottom: 0; transform: rotate(180deg); }
.pkg-card2:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-card2 h3 { font-family: var(--serif); font-size: 21px; letter-spacing: 0.1em; color: var(--ink); }
.pkg-price2 { display: flex; justify-content: center; align-items: baseline; gap: 5px; margin: 16px 0 4px; }
.pkg-price2 .rmb, .pkg-price2 .num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--ink); }
.pkg-price2 small { font-size: 13px; color: var(--text-light); }
.pkg-price2 del { font-size: 12px; color: var(--text-light); margin-left: 8px; }
.pkg-sum { font-size: 13px; color: var(--text-light); margin-bottom: 14px; letter-spacing: 0.05em; }
.pkg-dish-list { columns: 2; column-gap: 14px; font-size: 12.5px; line-height: 2; color: var(--text); text-align: left; margin-bottom: 18px; }
.pkg-dish-list li { break-inside: avoid; }
.pkg-card2 .pkg-btn { margin: 0 auto; min-width: 200px; }
.pkg-view { display: inline-block; margin-top: 12px; font-size: 11.5px; color: var(--brand-dark); letter-spacing: 0.06em; cursor: zoom-in; }
.pkg-view:hover { color: var(--accent-dark); }
/* 手机端套餐卡：菜品保持完整展示，采用双列减少纵向占用；仅影响 640px 以下。 */
@media (max-width: 640px) {
  .pkg-card2 { padding: 22px 16px 18px; }
  .pkg-card2 h3 { font-size: 20px; letter-spacing: 0.08em; }
  .pkg-price2 { gap: 4px; margin: 10px 0 2px; flex-wrap: wrap; }
  .pkg-price2 .rmb, .pkg-price2 .num { font-size: 30px; }
  .pkg-price2 del { margin-left: 4px; }
  .pkg-sum { font-size: 12px; margin-bottom: 8px; }
  .pkg-dish-list {
    columns: 2;
    column-gap: 16px;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 12px;
  }
  .pkg-card2 .pkg-btn { width: min(100%, 220px); min-width: 0; padding: 10px 18px; }
  .pkg-view { margin-top: 8px; }
  .pkg-corner { width: 110px; }
}

@media (max-width: 360px) {
  .pkg-card2 { padding-left: 14px; padding-right: 14px; }
  .pkg-dish-list { column-gap: 10px; font-size: 11.5px; }
}

/* 门店 + 地图左右布局（首页到店指引） */
.store-map-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: stretch; }
.store-map-grid .store-card { grid-template-columns: 300px 1fr; }
.map-panel { position: relative; z-index: 0; background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; min-height: 380px; }
.store-map { position: absolute; inset: 0; }
.map-nav {
  position: absolute; right: 14px; top: 14px; z-index: 500;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--brand-dark);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.map-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.map-nav iconify-icon { font-size: 16px; }
@media (max-width: 900px) {
  .store-map-grid { grid-template-columns: 1fr; }
  .store-map-grid .store-card { grid-template-columns: 1fr; }
  .map-panel { min-height: 0; height: 280px; }
}

/* 厅卡轮播 */
.hall-swiper { position: relative; width: 100%; height: auto; }
.hall-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.hall-swiper .swiper-pagination { bottom: 10px; }
.hall-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.65; transition: all 0.25s; }
.hall-swiper .swiper-pagination-bullet-active { background: var(--brand-yellow); opacity: 1; }
.ph-count { position: absolute; right: 10px; bottom: 10px; z-index: 3; font-size: 11px;
  color: #fff; background: rgba(0, 0, 0, 0.45); border-radius: 999px; padding: 2px 9px;
  letter-spacing: 0.05em; pointer-events: none; }

/* ==========================================================================
   轮播导航箭头统一改版（玻璃态圆钮，覆盖上方所有旧箭头样式）
   ========================================================================== */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next,
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next,
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next,
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--hairline);
  box-shadow: 0 6px 18px rgba(13, 50, 71, 0.16);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after,
.nav-wrap .swiper-button-prev::after, .nav-wrap .swiper-button-next::after,
.nav-wrap .swiper-button-prev::after, .nav-wrap .swiper-button-next::after,
.nav-wrap .swiper-button-prev::after, .nav-wrap .swiper-button-next::after {
  content: ""; display: block; width: 20px; height: 20px; margin: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2303719f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero-swiper .swiper-button-next::after,
.nav-wrap .swiper-button-next::after,
.case-swiper .swiper-button-next::after,
.pkg-swiper .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2303719f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover,
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover,
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover,
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 22px rgba(5, 162, 227, 0.42);
  transform: translateY(-50%) scale(1.06);
}
.hero-swiper .swiper-button-prev:hover::after,
.hero-swiper .swiper-button-next:hover::after,
.nav-wrap .swiper-button-prev:hover::after, .nav-wrap .swiper-button-next:hover::after,
.nav-wrap .swiper-button-prev:hover::after, .nav-wrap .swiper-button-next:hover::after,
.nav-wrap .swiper-button-prev:hover::after, .nav-wrap .swiper-button-next:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.hero-swiper .swiper-button-next:hover::after,
.nav-wrap .swiper-button-next:hover::after,
.case-swiper .swiper-button-next:hover::after,
.pkg-swiper .swiper-button-next:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
/* 垂直居中修正（hero 原按钮不在中线的旧规则覆盖） */
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next { top: 50%; transform: translateY(-50%); margin: 0; }
.hero-swiper .swiper-button-prev:hover, .hero-swiper .swiper-button-next:hover { transform: translateY(-50%) scale(1.06); }
/* 位置：完整收入画面内，不再被边缘切半 */
.hero-swiper .swiper-button-prev { left: 26px; }
.hero-swiper .swiper-button-next { right: 26px; }
.dish-swiper .swiper-button-prev, .case-swiper .swiper-button-prev, .pkg-swiper .swiper-button-prev { left: 12px; }
.dish-swiper .swiper-button-next, .case-swiper .swiper-button-next, .pkg-swiper .swiper-button-next { right: 12px; }

/* ==========================================================================
   菜品/案例/套餐轮播：箭头移到图片外，垂直正对图片中线
   ========================================================================== */
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next,
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next,
.nav-wrap .swiper-button-prev, .nav-wrap .swiper-button-next {
  top: calc(50% - 44px); /* 图片中线 = 轮播中线 - 文字区高度的一半 */
  transform: none;
}
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover,
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover,
.nav-wrap .swiper-button-prev:hover, .nav-wrap .swiper-button-next:hover {
  transform: scale(1.06);
}
.nav-wrap .swiper-button-prev { left: -30px; }
.nav-wrap .swiper-button-next { right: -30px; }
/* 视口不足以在容器外露按钮时，收回内侧 */
@media (max-width: 1300px) {
  .nav-wrap .swiper-button-prev { left: 10px; }
  .nav-wrap .swiper-button-next { right: 10px; }
}

.nav-wrap { position: relative; }

/* 菜谱翻阅区子标题 + 菜品图卡 */
.caipu-sub { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 21px;
  letter-spacing: 0.08em; color: var(--ink); margin: 48px 0 20px; }
.caipu-sub::before { content: ""; width: 6px; height: 22px; background: var(--brand); border-radius: 2px; }
.md-card .ph { aspect-ratio: 4 / 3; }
.md-card .ph img { object-fit: cover; }

/* 二维码旁微信号 */
.wx-id { display: block; font-size: 12px; letter-spacing: 0.04em; margin-top: 5px; }

/* ==========================================================================
   菜品图集：固定 4:3 占位，按 DOM 顺序逐行排列，避免懒加载后重排
   ========================================================================== */
.masonry { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.masonry .md-card { margin: 0; min-width: 0; }
.masonry .md-card .ph { aspect-ratio: 4 / 3; height: auto; }
.masonry .md-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.masonry .md-card.reveal { opacity: 0; transform: none; transition: opacity 0.45s ease; }
.masonry .md-card.reveal.visible { opacity: 1; }
@media (max-width: 1100px) { .masonry { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

/* 案例新人评语 */
.case-quote { margin: 14px 0 2px; padding-top: 12px; border-top: 1px solid var(--hairline); display: grid; grid-template-rows: 3.4em auto; font-size: 13px; line-height: 1.7; color: var(--text); text-align: left; }
.case-quote-text { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.case-quote em { display: block; font-style: normal; font-size: 11.5px; color: var(--brand-dark); margin-top: 0; text-align: right; }

/* ==========================================================================
   字体映射：一级标题=思源宋体 / 二级标题=思源黑体 Heavy / 正文=思源黑体 Medium
   ========================================================================== */
h2, h3, h4, .case-title, .menu-item .menu-head, .pkg-text-head b, .doc-cap b, .caipu-sub {
  font-family: var(--sans) !important;
  font-weight: 900 !important; /* 小标题：思源黑体 Heavy */
}
.case-title small { font-weight: 500; font-family: var(--sans); }
