/* ============================================================
   月桂花园酒店 · 宴会中心 —— 中式园林编辑风
   移动端优先(375px 基准),桌面居中窄栏。
   配色取自实拍:米白宣纸底 + 黛墨 + 墨绿(软装)+ 烫金点缀。
   中文衬线主导,拉丁降为辅助小标签。
   ============================================================ */

/* 自托管拉丁衬线标题字(OFL)。缺失时优雅降级到系统衬线(见下 --serif-latin)。 */
@font-face {
  font-family: 'BQ Serif';
  src: url('assets/fonts/eb-garamond.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

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

:root {
  --cream: #f5f2ea;   /* 宣纸米白 */
  --cream-2: #eae5da;
  --ink: #22282a;     /* 黛墨(黛瓦) */
  --ink-soft: #414a4a;
  --muted: #8a8b83;
  --jade: #2e4a41;    /* 墨绿(呼应包厢座椅/会议桌裙) */
  --jade-soft: #3f6156;
  --gold: #b8935a;    /* 烫金 */
  --gold-soft: #d8b877;
  --line: #ded6c8;
  --maxw: 480px;
  --serif-latin: 'BQ Serif', 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-cn: 'Songti SC', 'STSong', 'Source Han Serif SC', 'Noto Serif CJK SC', serif;
  --sans-cn: -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans-cn);
  color: var(--ink);
  background: #d9d2c7;
  line-height: 1.75;
}
.page {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* —— 通用文字 —— */
.kicker {
  font-family: var(--serif-latin);
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif-cn);
  font-size: 22px;
  letter-spacing: 2px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 20px;
}
.section { padding: 40px 22px; }

/* 诗意文案 */
.poem-cn {
  font-family: var(--serif-cn);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  text-align: center;
}
.poem-en {
  font-family: var(--serif-latin);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  margin-top: 2px;
}

/* 烫金花边 */
.ornament { display: flex; justify-content: center; margin: 18px 0; }

/* 进入视口渐显 */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* —— 首屏 Hero —— */
.hero { position: relative; width: 100%; aspect-ratio: 3 / 4; background: var(--ink); overflow: hidden; }
.hero-poster { position: relative; width: 100%; height: 100%; cursor: pointer; }
.hero img, .hero video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-lockup {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35);
  pointer-events: none;
}
.hero-cn { font-family: var(--serif-cn); font-size: 40px; letter-spacing: 8px; }
.hero-en { font-family: var(--serif-latin); font-size: 15px; letter-spacing: 0.5em; margin-top: 6px; opacity: .9; }
.hero-sub {
  font-family: var(--serif-cn); font-size: 18px; letter-spacing: 6px; margin-top: 20px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.5);
}
.hero-suben { font-family: var(--serif-latin); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 6px; opacity: .85; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6);
  background: rgba(0,0,0,.35); color: #fff; font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* —— 品牌简介 —— */
.intro { padding: 44px 26px 30px; }

/* —— 进入卡片 —— */
.entries { display: flex; flex-direction: column; gap: 22px; }
.entry-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(60, 48, 30, 0.06);
}
.entry-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.entry-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.entry-body { padding: 18px 20px 22px; text-align: center; }
.entry-label { font-family: var(--serif-latin); font-size: 11px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.entry-title { font-family: var(--serif-cn); font-size: 22px; letter-spacing: 3px; margin: 6px 0 8px; }
.entry-teaser { font-size: 13px; color: var(--muted); letter-spacing: .5px; }
.entry-more { display: inline-block; margin-top: 14px; font-size: 13px; letter-spacing: 2px; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* —— 套餐 —— */
.packages-list { display: flex; flex-direction: column; gap: 14px; }
.package-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 18px 18px 16px; }
.package-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.package-head h3 { font-family: var(--serif-cn); font-size: 17px; letter-spacing: 1px; }
.package-type { font-size: 11px; color: var(--cream); background: var(--jade); border-radius: 2px; padding: 2px 9px; letter-spacing: 1px; }
.package-price { font-family: var(--serif-latin); color: var(--gold); font-size: 20px; font-weight: 600; margin: 10px 0; letter-spacing: .5px; }
.package-includes { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.package-includes li { font-size: 12px; color: var(--ink-soft); background: var(--cream-2); border-radius: 2px; padding: 3px 10px; }
.price-note { color: var(--muted); font-size: 12px; margin-top: 16px; text-align: center; letter-spacing: .5px; }

/* —— 案例 —— */
.cases-list { display: flex; flex-direction: column; gap: 14px; }
.cases-list figure { border-radius: 4px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.cases-list img { width: 100%; display: block; }
.cases-list figcaption { padding: 10px 14px; font-size: 13px; color: var(--muted); text-align: center; }

/* —— 底部信息 —— */
.contact { padding: 40px 22px 16px; text-align: center; color: var(--muted); font-size: 14px; }
.contact .addr { color: var(--ink); margin-bottom: 16px; letter-spacing: 1px; }
.phones { margin: 0 auto 20px; max-width: 300px; text-align: left; }
.phone-row { display: flex; align-items: baseline; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.phone-row:last-child { border-bottom: none; }
.phone-label { flex: 0 0 56px; font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.phone-nums { flex: 1; display: flex; flex-wrap: nowrap; align-items: center; white-space: nowrap; }
.phone-num { color: var(--jade); text-decoration: none; letter-spacing: 0; font-size: 14px; white-space: nowrap; }
.phone-sep { color: var(--line); margin: 0 6px; }
.contact-actions { display: flex; gap: 12px; justify-content: center; }
.contact-actions a {
  flex: 1; text-decoration: none; color: var(--jade); border: 1px solid var(--jade);
  border-radius: 2px; padding: 11px 0; font-size: 14px; letter-spacing: 2px;
}
.bottom-spacer { height: 84px; }

/* —— 详情页 —— */
.detail-nav { padding: 16px 22px 0; }
.back-link { text-decoration: none; color: var(--ink-soft); font-size: 13px; letter-spacing: 1px; }
.detail-head { padding: 30px 26px 6px; text-align: center; }
.detail-label { font-family: var(--serif-latin); font-size: 12px; letter-spacing: 0.34em; color: var(--gold); text-transform: uppercase; }
.detail-title { font-family: var(--serif-cn); font-size: 30px; letter-spacing: 5px; margin-top: 8px; }
.detail-spec { margin-top: 10px; font-size: 13px; letter-spacing: 1.5px; color: var(--jade); }
.detail-intro { margin-top: 6px; }
.detail-body { padding-bottom: 10px; }
.detail-block { padding: 30px 0 34px; }

/* 满幅大片带 + 叠加双语标题(4:3 贴合横向实拍,少裁切、更锐) */
.band { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-cap { position: absolute; left: 22px; bottom: 20px; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.band-en { display: block; font-family: var(--serif-latin); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; opacity: .9; }
.band-cn { display: block; font-family: var(--serif-cn); font-size: 26px; letter-spacing: 4px; margin-top: 4px; }

/* 宴会厅规格 */
.specs { display: flex; justify-content: center; gap: 26px; padding: 24px 22px 4px; }
.specs .spec { text-align: center; }
.specs dt { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.specs dd { font-family: var(--serif-latin); font-size: 20px; color: var(--ink); margin-top: 4px; }
.features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 14px 22px 0; }
.features li { font-size: 12px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 2px; padding: 3px 11px; }

.band-text { padding: 22px 26px 0; }

/* —— 按钮 —— */
.btn {
  border: none; border-radius: 2px; padding: 13px 0; font-size: 15px; letter-spacing: 2px;
  font-weight: 500; cursor: pointer;
}
.btn-consult { background: var(--jade); color: var(--cream); }
.btn-consult:active { background: var(--jade-soft); }
.btn-follow { background: transparent; color: var(--jade); border: 1px solid var(--jade); }

/* —— 悬浮 CTA 固定栏 —— */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  max-width: var(--maxw); margin: 0 auto; display: flex; gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245, 242, 234, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 20px rgba(34, 40, 42, 0.10);
  backdrop-filter: blur(6px);
}
.sticky-cta .btn { flex: 1; }

/* —— 弹层 —— */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal[hidden] { display: none; }
.modal-mask { position: absolute; inset: 0; background: rgba(28, 26, 23, 0.6); }
.modal-card { position: relative; z-index: 1; background: var(--cream); border-radius: 4px; padding: 26px 24px; width: 82%; max-width: 320px; text-align: center; }
.modal-close { position: absolute; top: 6px; right: 12px; border: none; background: none; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; }
.oa-qr { width: 190px; height: 190px; object-fit: contain; margin: 6px auto 12px; display: block; background: #fff; }
.oa-tip, .wechat-tip { color: var(--ink); font-size: 15px; margin-bottom: 14px; letter-spacing: 1px; }
.copy-hint { color: var(--gold); font-size: 13px; margin-top: 10px; }
