@charset "UTF-8";
/* ==========================================================================
   群青咖啡馆 La Maison Café — Official Website Stylesheet
   品牌色：群青蓝 #0661AF（取自品牌标准色）
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  --blue: #0661af;
  --blue-600: #0a72c6;
  --blue-700: #05508f;
  --blue-800: #063f70;
  --blue-900: #072f54;
  --blue-050: #eef4fb;
  --blue-020: #f6f9fd;

  --ink: #221714;
  --ink-2: #574c44;
  --ink-3: #8a7f76;
  --line: #e3dbcc;
  --line-2: #d3c8b4;

  --cream: #f7f1e6;
  --paper: #fcfaf6;
  --sand: #efe7d8;
  --white: #ffffff;

  --gold: #b0894f;
  --gold-lt: #cfa86b;
  --gold-soft: #f0e4cd;
  --terra: #bd6239;

  --font-display: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman",
    Georgia, "Songti SC", "STSong", "SimSun", serif;
  --font-serif-cjk: "Songti SC", "STSong", "Source Han Serif SC", "Noto Serif SC",
    "SimSun", serif;
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 860px;
  --r-sm: 4px;
  --r: 10px;
  --r-lg: 18px;

  --sh-sm: 0 1px 2px rgba(34, 23, 20, 0.05), 0 2px 8px rgba(34, 23, 20, 0.04);
  --sh: 0 4px 12px rgba(34, 23, 20, 0.06), 0 12px 32px rgba(34, 23, 20, 0.07);
  --sh-lg: 0 8px 24px rgba(7, 47, 84, 0.08), 0 28px 60px rgba(7, 47, 84, 0.12);

  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, dl, dd, dt, figure, blockquote { margin: 0; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.h1 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }
h1.h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); }
.h2 { font-family: var(--font-display); font-weight: 400; line-height: 1.18; letter-spacing: -0.01em; font-size: clamp(1.75rem, 3.9vw, 2.85rem); }
.h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.28; font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.h4 { font-family: var(--font-sans); font-weight: 700; line-height: 1.4; font-size: 1.05rem; }

.cjk-serif { font-family: var(--font-serif-cjk); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold); display: block;
}
.eyebrow--center::after {
  content: ""; width: 30px; height: 1px; background: var(--gold); display: block;
}
.eyebrow--light { color: var(--gold-lt); }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(207, 168, 107, 0.6); }

.fr {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.lead { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--ink-2); line-height: 1.9; }
.muted { color: var(--ink-2); }
.tiny { font-size: 0.82rem; }
.rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 26px 0; }
.rule--center { margin-left: auto; margin-right: auto; }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--blue { background: var(--blue-900); color: #f2f6fb; }

.sec-head { max-width: 760px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { margin-top: 18px; }

.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.32s var(--ease); white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(6, 97, 175, 0.24); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(6, 97, 175, 0.32); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-050); }
.btn--light { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.45); color: #fff; backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--blue-900); border-color: #fff; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #9d7940; transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em;
  color: var(--blue); border-bottom: 1px solid rgba(6, 97, 175, 0.3);
  padding-bottom: 3px; transition: gap 0.3s var(--ease), border-color 0.3s;
}
.textlink:hover { gap: 14px; border-color: var(--blue); }
.textlink::after { content: "→"; }

/* ---------- 6. Top bar ---------- */
.topbar {
  background: var(--blue-900); color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem; letter-spacing: 0.03em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 40px; }
.topbar ul { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar li { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; opacity: 0.7; flex: none; }
.topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar .tb-r { display: flex; gap: 22px; align-items: center; }
@media (max-width: 900px) { .topbar .tb-l li:nth-child(n + 2) { display: none; } }
@media (max-width: 640px) { .topbar { display: none; } }

/* ---------- 7. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 246, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(34, 23, 20, 0.08); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 76px; }

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand__mark { width: 34px; height: 38px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-size: 1.16rem; letter-spacing: 0.055em;
  color: var(--ink); white-space: nowrap;
}
.brand__sub {
  font-size: 0.66rem; letter-spacing: 0.4em; color: var(--ink-3);
  margin-top: 5px; padding-left: 1px;
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: rgba(255, 255, 255, 0.6); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 9px 15px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  transition: color 0.24s, background 0.24s;
}
.nav a:hover { color: var(--blue); background: var(--blue-050); }
.nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone {
  display: flex; flex-direction: column; line-height: 1.2; text-align: right;
}
.header-phone span { font-size: 0.64rem; letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase; }
.header-phone strong { font-size: 0.98rem; letter-spacing: 0.02em; color: var(--blue); font-family: var(--font-display); }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: transparent; border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 340px); z-index: 200;
  background: var(--paper); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.42s var(--ease);
  padding: 28px 26px; overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__close {
  border: 0; background: none; font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: var(--ink-2); margin-bottom: 20px;
}
.drawer nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 26px; }
.drawer nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.drawer nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.drawer .drawer-info { font-size: 0.86rem; color: var(--ink-2); }
.drawer .drawer-info p { margin-bottom: 8px; }
.drawer .drawer-info strong { color: var(--ink); }
.scrim {
  position: fixed; inset: 0; background: rgba(7, 47, 84, 0.4); z-index: 199;
  opacity: 0; visibility: hidden; transition: opacity 0.34s; backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-cta .btn { padding: 11px 20px; font-size: 0.86rem; }
}
@media (max-width: 520px) {
  .site-header .wrap { height: 66px; }
  .header-cta .btn { display: none; }
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 88vh, 830px);
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--blue-900);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 47, 84, 0.62) 0%, rgba(7, 47, 84, 0.28) 34%, rgba(20, 12, 8, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 32, 58, 0.72) 0%, rgba(7, 32, 58, 0.12) 62%);
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vw, 72px); padding-top: 140px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-lt); }
.hero h1 { color: #fff; max-width: 17ch; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.28); }
.hero h1 .fr { display: block; font-size: clamp(1.05rem, 2.2vw, 1.5rem); margin-top: 16px; color: var(--gold-lt); }
.hero__desc {
  color: rgba(255, 255, 255, 0.9); max-width: 54ch; margin-top: 24px;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem); line-height: 1.9;
}
.hero .btn-row { margin-top: 34px; }

.hero__facts {
  position: relative; z-index: 2; margin-top: 46px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero__facts div { padding: 20px 20px 4px 0; }
.hero__facts div + div { padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, 0.16); }
.hero__facts b {
  display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  color: #fff; line-height: 1.1; letter-spacing: 0.01em;
}
.hero__facts span { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.68); }
@media (max-width: 760px) {
  .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__facts div:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero__facts div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
}

/* ---------- 9. Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 24px 26px; }
.card__body h3 { margin-bottom: 9px; }
.card__body p { color: var(--ink-2); font-size: 0.93rem; }

.pillar { text-align: left; }
.pillar__no {
  font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.2em;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.pillar__icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-050); color: var(--blue); margin-bottom: 18px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- 10. Story split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 74px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh); width: 100%; }
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split__media--stack img:first-child { grid-row: span 2; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; left: -18px; bottom: -22px;
  background: var(--blue); color: #fff; border-radius: var(--r);
  padding: 18px 24px; box-shadow: var(--sh-lg); max-width: 210px;
}
.split__badge b { display: block; font-family: var(--font-display); font-size: 1.85rem; line-height: 1; }
.split__badge span { font-size: 0.76rem; letter-spacing: 0.1em; opacity: 0.82; }
.quote-strip blockquote {
  font-family: var(--font-serif-cjk); font-size: 1.08rem; line-height: 2;
  color: var(--ink); padding-left: 22px; border-left: 2px solid var(--gold);
}
.quote-strip cite { display: block; margin-top: 12px; font-style: normal; font-size: 0.8rem; color: var(--ink-3); letter-spacing: 0.08em; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__badge { left: auto; right: 12px; bottom: -18px; }
}

/* ---------- 11. Signature dishes ---------- */
.dish {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.dish-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--blue-900); }
.dish-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.8s var(--ease); opacity: 0.94; }
.dish-card:hover img { transform: scale(1.05); }
.dish-card__ov {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 22px;
  background: linear-gradient(180deg, rgba(7, 29, 52, 0) 0%, rgba(7, 29, 52, 0.68) 42%, rgba(7, 29, 52, 0.92) 100%);
  color: #fff;
}
.dish-card__ov h3 { color: #fff; font-size: 1.12rem; }
.dish-card__ov .en { display: block; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold-lt); margin-top: 3px; }
.dish-card__ov .price {
  display: inline-block; margin-top: 12px; font-family: var(--font-display);
  font-size: 1.02rem; color: #fff; border-bottom: 1px solid rgba(207, 168, 107, 0.7); padding-bottom: 2px;
}
.dish-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold); color: #fff; font-size: 0.68rem; letter-spacing: 0.12em;
  padding: 5px 11px; border-radius: 999px; font-weight: 600;
}
@media (max-width: 980px) { .dish { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .dish { grid-template-columns: 1fr; } .dish-card img { aspect-ratio: 4 / 3; } }

/* ---------- 12. Menu ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.menu-tabs button,
.menu-tabs a {
  border: 1px solid var(--line-2); background: transparent; border-radius: 999px;
  padding: 10px 20px; font-size: 0.88rem; cursor: pointer; color: var(--ink-2);
  transition: all 0.28s var(--ease); letter-spacing: 0.02em; white-space: nowrap;
}
.menu-tabs button:hover,
.menu-tabs a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-050); }
.menu-tabs button[aria-selected="true"] { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 600; }

/* 菜单页吸顶分类导航 */
.menu-nav {
  position: sticky; top: 76px; z-index: 60;
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.menu-nav .menu-tabs { margin-bottom: 0; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.menu-nav .menu-tabs::-webkit-scrollbar { display: none; }
@media (max-width: 520px) { .menu-nav { top: 66px; } }

/* 菜单页分类锚点区块 */
.menu-block { scroll-margin-top: 150px; }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade 0.5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-cat { margin-bottom: 54px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 6px; }
.menu-cat__head h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.menu-cat__head .fr { font-size: 0.92rem; }
.menu-cat__head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-cat__note { font-size: 0.86rem; color: var(--ink-3); margin-bottom: 22px; }

/* 分类首段 — 长引文用于咖啡 / 餐食 / 酒 */
.menu-cat__quote {
  margin: -8px 0 22px;
  padding: 12px 0 14px;
  border-bottom: 1px dotted var(--line-2);
  max-width: 760px;
  font-family: var(--font-serif-cjk);
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--ink-2);
}
.menu-cat__quote b { color: var(--ink); font-weight: 600; }
.menu-cat__quote i { color: var(--terra); font-style: normal; }

/* 单道菜的 1-2 行描述 */
.menu-item__desc {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-2);
  margin: 6px 0 4px;
  line-height: 1.7;
  max-width: 56ch;
}
.menu-item__desc--lead { color: var(--ink); font-weight: 500; }

/* 风味 chip 集合（用于不含配料说明的经典咖啡 / 甜品） */
.menu-item__flavor {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}
.menu-item__flavor i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--blue);
  background: var(--blue-050);
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: 0.04em;
}

/* 工艺 chip（用于以「手工 / 现做 / 鲜肉 / 蔬食 / 含酒」等工艺为标签的菜品） */
.menu-item__craft {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}
.menu-item__craft i {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--terra);
  background: rgba(189, 98, 57, 0.07);
  border-radius: 3px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
}
.menu-item__craft i.c-blue  { color: var(--blue);  background: var(--blue-050); }
.menu-item__craft i.c-green { color: #4a7a48;     background: rgba(74,122,72,0.10); }
.menu-item__craft i.c-gray  { color: var(--ink-3); background: rgba(34,23,20,0.05); }

/* 招牌菜高亮（用在十年口碑推荐/三大主推） */
.menu-item--feat { border-bottom: 1px solid rgba(176, 137, 79, 0.4); padding: 18px 0 16px; }
.menu-item--feat .menu-item__name { font-family: var(--font-display); font-size: 1.1rem; }
.menu-item--feat .menu-item__price { color: var(--gold); font-weight: 600; }

/* 厨房笔记 / 搭配建议（出现在分类或菜品下方） */
.menu-cat__kitchen,
.menu-cat__pairing {
  margin: 16px 0 0;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  font-size: 0.84rem;
  color: var(--ink-2);
  background: rgba(176, 137, 79, 0.05);
  border-radius: 0 4px 4px 0;
  max-width: 760px;
  line-height: 1.75;
}
.menu-cat__kitchen b,
.menu-cat__pairing b { color: var(--ink); font-weight: 600; }

/* 整页厨房笔记三联卡（出现在招牌板块下方） */
.kitchen-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 8px;
}
.kitchen-notes__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--sh-sm);
  position: relative;
}
.kitchen-notes__card::before {
  content: "";
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.kitchen-notes__card h4 {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.kitchen-notes__card p {
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.78;
}
.kitchen-notes__card p b { color: var(--ink); }
@media (max-width: 760px) {
  .kitchen-notes { grid-template-columns: 1fr; }
}

.menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 44px; }
.menu-item { padding: 15px 0; border-bottom: 1px dashed var(--line); }
.menu-item__top { display: flex; align-items: baseline; gap: 12px; }
.menu-item__name { font-family: var(--font-serif-cjk); font-size: 1.02rem; color: var(--ink); }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-3px); min-width: 18px; }
.menu-item__price { font-family: var(--font-display); font-size: 1.02rem; color: var(--blue); font-weight: 400; }
.menu-item__en { display: block; font-size: 0.76rem; color: var(--ink-3); letter-spacing: 0.05em; margin-top: 3px; }
.menu-item__ing { display: block; font-size: 0.82rem; color: var(--ink-2); margin-top: 7px; line-height: 1.7; }
.menu-item__marks { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
.menu-item__marks i {
  font-style: normal; font-size: 0.64rem; letter-spacing: 0.06em; color: var(--terra);
  border: 1px solid rgba(189, 98, 57, 0.35); border-radius: 3px; padding: 1px 5px;
}
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; gap: 0; } }

.menu-feature {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 56px;
}
.menu-feature article { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.menu-feature img { aspect-ratio: 4 / 5; object-fit: cover; }
.menu-feature div {
  position: absolute; inset: auto 0 0 0; padding: 22px 20px 18px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7, 29, 52, 0.9));
}
.menu-feature h3 { color: #fff; font-size: 1.06rem; }
.menu-feature p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.78); margin-top: 4px; }
@media (max-width: 700px) { .menu-feature { grid-template-columns: 1fr; } }

/* ---------- 13. Info table (GEO / AI 摘要块) ---------- */
.factbox {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--sh-sm);
}
.factbox__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.factbox__head h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.factbox p.ai-note { font-size: 0.84rem; color: var(--ink-3); margin-bottom: 26px; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin-top: 22px; }
.facts > div { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.facts dt { flex: none; width: 92px; font-size: 0.82rem; color: var(--ink-3); letter-spacing: 0.06em; }
.facts dd { font-size: 0.94rem; color: var(--ink); }
.facts dd strong { color: var(--blue); font-weight: 600; }
@media (max-width: 760px) { .facts { grid-template-columns: 1fr; } }

/* ---------- 14. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--font-serif-cjk); font-size: 1.02rem; color: var(--ink);
  transition: color 0.24s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 30px; width: 11px; height: 11px;
  border-right: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg); transition: transform 0.3s var(--ease);
}
.faq details[open] summary { color: var(--blue); }
.faq details[open] summary::after { transform: rotate(225deg); top: 34px; }
.faq summary:hover { color: var(--blue); }
.faq__a { padding: 0 46px 26px 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.9; }
.faq__a p + p { margin-top: 12px; }
.faq__a strong { color: var(--ink); }

/* ---------- 15. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 172px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--r); position: relative; background: var(--sand); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 13px;
  background: linear-gradient(transparent, rgba(7, 29, 52, 0.82));
  color: #fff; font-size: 0.8rem; opacity: 0; transition: opacity 0.4s;
}
.gallery figure:hover figcaption { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; } }
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 132px; gap: 10px; }
  .g-wide { grid-column: span 2; }
}

/* ---------- 16. Testimonials ---------- */
.quote-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.quote-cards blockquote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sh-sm); position: relative;
}
.quote-cards blockquote::before {
  content: "“"; font-family: var(--font-display); font-size: 3.4rem; line-height: 0.7;
  color: var(--gold-soft); display: block; height: 22px;
}
.quote-cards blockquote p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.9; flex: 1; }
.quote-cards cite { font-style: normal; font-size: 0.82rem; color: var(--ink-3); letter-spacing: 0.06em; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.82rem; }
@media (max-width: 900px) { .quote-cards { grid-template-columns: 1fr; } }

/* ---------- 17. Community / French corner ---------- */
.community { position: relative; overflow: hidden; }
.community__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.community h2 { color: #fff; }
.community p { color: rgba(242, 246, 251, 0.82); }
.community__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.community__media img { border-radius: var(--r); }
.community__media img:first-child { margin-top: 26px; }
.community__list { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.community__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: rgba(242, 246, 251, 0.8); }
.community__list svg { width: 17px; height: 17px; flex: none; margin-top: 5px; color: var(--gold-lt); }
@media (max-width: 860px) { .community__grid { grid-template-columns: 1fr; } }

/* ---------- 18. Visit / Contact ---------- */
.visit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.visit-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm);
}
.visit-card__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue-050);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 18px;
}
.visit-card__icon svg { width: 20px; height: 20px; }
.visit-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.visit-card p, .visit-card address { font-style: normal; color: var(--ink-2); font-size: 0.93rem; line-height: 1.85; }
.visit-card a { color: var(--blue); font-weight: 600; }
.visit-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hours { width: 100%; font-size: 0.92rem; }
.hours td { padding: 7px 0; border-bottom: 1px dashed var(--line); color: var(--ink-2); }
.hours td:last-child { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours tr:last-child td { border-bottom: 0; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

.map-embed {
  margin-top: 28px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--sand); position: relative;
  aspect-ratio: 21 / 8; display: grid; place-items: center; text-align: center;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 19. Divider / watermark ---------- */
.watermark {
  font-family: var(--font-display); text-align: center; line-height: 0.86;
  font-size: clamp(3.2rem, 15vw, 12rem); color: transparent;
  -webkit-text-stroke: 1px rgba(6, 97, 175, 0.14);
  letter-spacing: 0.06em; user-select: none; pointer-events: none;
  margin: 0;
}
.watermark--gold { -webkit-text-stroke-color: rgba(176, 137, 79, 0.26); }

/* ---------- 20. Page hero (sub pages) ---------- */
.pagehero {
  background: var(--blue-900); color: #fff; position: relative; overflow: hidden;
  padding: clamp(58px, 9vw, 108px) 0 clamp(46px, 7vw, 84px);
}
.pagehero::after {
  content: ""; position: absolute; right: -12%; top: -46%; width: 62%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, rgba(6, 97, 175, 0.55), transparent 68%);
}
.pagehero .wrap { position: relative; z-index: 2; }
.pagehero h1 { color: #fff; }
.pagehero .lead { color: rgba(255, 255, 255, 0.8); margin-top: 20px; max-width: 62ch; }
.breadcrumb { display: flex; gap: 10px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }

/* ---------- 20b. Menu page hero（沿用品牌深蓝底，仅压缩信息密度） ---------- */
/* 底色、光晕、文字色全部走 .pagehero 基础规则，与品牌故事 / 空间环境等页保持一致 */
.pagehero .watermark {
  position: absolute; right: 2%; top: 6%; z-index: 1;
  font-size: clamp(4rem, 13vw, 10rem); line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
}

.menu-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 26px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.78);
}
.menu-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.menu-hero__meta span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-lt);
}
.menu-hero__meta b { font-family: var(--font-display); color: var(--gold-lt); font-size: 1.06rem; font-weight: 600; }

/* ---------- 21. Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--line-2); }
.timeline li { position: relative; padding-bottom: 36px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 7px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--gold);
}
.timeline li.is-key::before { background: var(--blue); border-color: var(--blue); }
.timeline b { display: block; font-family: var(--font-display); font-size: 1.12rem; color: var(--blue); margin-bottom: 6px; }
.timeline p { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- 22. Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(242, 246, 251, 0.72); padding: 68px 0 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 {
  color: #fff; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 700;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a:hover { color: #fff; }
.footer-about p { margin-top: 20px; line-height: 1.9; max-width: 34ch; }
.footer-about .brand { margin-bottom: 0; }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-bottom {
  margin-top: 56px; border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 88px 24px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(242, 246, 251, 0.5);
}
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.85); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 23. Floating action ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.fab a, .fab button {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--blue); border: 1px solid var(--line);
  box-shadow: var(--sh); cursor: pointer; transition: all 0.3s var(--ease);
}
.fab a:hover, .fab button:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }
.fab svg { width: 20px; height: 20px; }
.fab .to-top { opacity: 0; visibility: hidden; }
.fab .to-top.is-on { opacity: 1; visibility: visible; }
@media (max-width: 640px) { .fab { right: 12px; bottom: 12px; } }

/* ---------- 24. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.09s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.27s; }
.reveal[data-d="4"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 26. Nav density（7 项导航） ---------- */
@media (max-width: 1280px) {
  .nav a { padding: 9px 11px; font-size: 0.86rem; }
  .header-phone { display: none; }
}

/* ---------- 27. 菜单页 · 四大板块（v2） ---------- */
.world { margin-top: clamp(56px, 8vw, 96px); }
.world:first-of-type { margin-top: 0; }

.world-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: clamp(260px, 34vw, 360px); display: flex; align-items: flex-end;
  box-shadow: var(--sh); margin-bottom: clamp(34px, 5vw, 54px);
  background: var(--blue-900);
}
.world-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; opacity: 0.92;
}
.world-banner::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 32, 58, 0.18) 0%, rgba(7, 29, 52, 0.42) 52%, rgba(7, 29, 52, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 32, 58, 0.55) 0%, rgba(7, 32, 58, 0.06) 55%);
}
.world-banner__body {
  position: relative; z-index: 2; padding: clamp(24px, 4vw, 40px) clamp(22px, 4vw, 40px);
  max-width: 620px; color: #fff;
}
.world-banner__no {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.26em;
  color: var(--gold-lt); text-transform: uppercase; margin-bottom: 12px;
}
.world-banner__no::before { content: ""; width: 28px; height: 1px; background: var(--gold-lt); }
.world-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
.world-banner h2 .fr { display: block; font-size: 0.55em; margin-top: 6px; }
.world-banner p { color: rgba(255, 255, 255, 0.85); font-size: 0.94rem; margin-top: 12px; line-height: 1.85; }

/* 子分类：编号 + 标题 */
.menu-subcat { margin-top: 46px; }
.menu-subcat:first-child { margin-top: 0; }
.menu-subcat .menu-cat__head::before {
  content: attr(data-no);
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em;
  color: var(--gold); align-self: center; white-space: nowrap;
}

/* 特调 / 调酒：配料标签 */
.ing-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.ing-chips i {
  font-style: normal; font-size: 0.74rem; color: var(--ink-2);
  background: var(--sand); border-radius: 999px; padding: 3px 11px;
  letter-spacing: 0.02em;
}

/* ---------- 28. 数据条（口碑页等浅色背景） ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-sm);
}
.stat-strip > div { padding: 30px 22px; text-align: center; }
.stat-strip > div + div { border-left: 1px solid var(--line); }
.stat-strip b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--blue); line-height: 1.1;
}
.stat-strip span { font-size: 0.8rem; color: var(--ink-3); letter-spacing: 0.08em; }
@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-strip > div:nth-child(3) { border-left: 0; }
  .stat-strip > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* ---------- 29. 浅色勾选列表（活动页等） ---------- */
.checklist { display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--ink-2); }
.checklist svg { width: 17px; height: 17px; flex: none; margin-top: 5px; color: var(--gold); }

/* ---------- 30. 触屏设备画廊说明常显 ---------- */
@media (hover: none) {
  .gallery figcaption { opacity: 1; }
}

/* ---------- 25. Print ---------- */
@media print {
  .site-header, .topbar, .fab, .hero__media::after, .scrim, .drawer,
  .menu-nav, .world-banner img { display: none !important; }
  body { background: #fff; }
  .section { padding: 20px 0; }
  .world-banner { min-height: 0; background: none; box-shadow: none; }
  .world-banner__body { color: var(--ink); padding: 10px 0; max-width: none; }
  .world-banner__no, .world-banner h2, .world-banner p { color: var(--ink); }
}
