/* ==========================================================================
   Olá Açaí SG — base.css
   单一样式表，全站共用。设计语言取自现有菜单印刷品：
   奶油底 + 橄榄绿 + 金色，水果色作为分类点缀。
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  color-scheme: light;

  /* 品牌色 */
  --cream:        #F7F3EA;
  --cream-deep:   #EDE7DA;
  --cream-card:   #FFFDF8;
  --olive:        #5F6440;
  --olive-dark:   #454A2C;
  --olive-soft:   #8A8F6B;
  --gold:         #EBD79F;
  --gold-deep:    #D9BE72;
  --acai:         #6B4270;
  --ink:          #2B2E20;
  --ink-soft:     #5C6050;
  --line:         #DDD6C6;
  --white:        #FFFFFF;

  /* 水果点缀色（对应菜单上的色块） */
  --f-pink:   #F4BEB8;
  --f-orange: #F5C58F;
  --f-yellow: #F6DE96;
  --f-green:  #C6DEA6;
  --f-purple: #CBB8E0;

  /* 排版 */
  --font-display: "Anton", "Haettenschweiler", "Arial Narrow", Impact, sans-serif;
  --font-script:  "Sacramento", "Snell Roundhand", cursive;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;

  /* 尺度 */
  --wrap: 1160px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(43,46,32,.08), 0 4px 12px rgba(43,46,32,.05);
  --shadow-md: 0 4px 10px rgba(43,46,32,.08), 0 14px 34px rgba(43,46,32,.09);
  --shadow-lg: 0 10px 24px rgba(43,46,32,.10), 0 30px 60px rgba(43,46,32,.12);

  --header-h: 68px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* 防横向滚动条。必须用 clip 而不是 hidden ——
     hidden 会把 overflow-y 计算成 auto，body 就变成滚动容器，
     于是**所有后代的 position: sticky 全部失效**（实测：招牌碗那段钉不住，
     stage 跟着滚走）。clip 不创建滚动容器，sticky 照常工作。
     不支持 clip 的旧浏览器退回 hidden；滚动叙事在 JS 里会检测并自动降级。 */
  overflow-x: hidden;
}
@supports (overflow: clip) {
  body { overflow-x: clip; }
}
img, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--olive-dark); text-underline-offset: .18em; }
a:hover { color: var(--acai); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.08; letter-spacing: .005em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible {
  outline: 3px solid var(--acai);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Typography ------------------------------------------------ */
.display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .012em;
  color: var(--olive-dark);
}
h1 { font-size: clamp(2.35rem, 7vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.12rem, 2.1vw, 1.4rem); font-weight: 700; color: var(--ink); }
h4 { font-size: 1.02rem; font-weight: 700; color: var(--ink); }

.script {
  font-family: var(--font-script);
  text-transform: none;
  font-weight: 400;
  color: var(--olive);
  letter-spacing: 0;
  line-height: .9;
}
/* 标题里的手写体永远自成一行，否则会压在上一行的大写字母上 */
h1 .script, h2 .script { display: block; font-size: 1.12em; margin-top: -.04em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin: 0 0 .8rem;
}
.lead { font-size: clamp(1.06rem, 1.7vw, 1.22rem); color: var(--ink-soft); }
.tiny { font-size: .86rem; color: var(--ink-soft); }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 780px; }
section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.band-cream { background: var(--cream-deep); }
.band-olive { background: var(--olive-dark); color: #F3F1E5; }
.band-olive h2, .band-olive h3 { color: var(--gold); }
/* 排除 .btn —— 否则会把按钮文字也染成金色，压在平台品牌色上对比度只有
   1.99:1（Grab 绿）/ 3.56:1（panda 粉），远低于 AA。按钮自己管自己的文字色。 */
.band-olive a:not(.btn) { color: var(--gold); }
.band-white { background: var(--cream-card); }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.stack > * + * { margin-top: 1rem; }
.section-head { max-width: 660px; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head.center { margin-inline: auto; }

/* ---------- 4b. 叶子装饰 -------------------------------------------------- */
/* 素材来自集点卡 / logo 上的品牌图案（Green Abstract Floral Loyalty Card.pdf），
   按形状拆成三种，避免整站一个朝向：
     --frond  羽状长叶（横向伸展）
     --spray  散射簇叶（向上炸开）
     --berry  金色果串（细长的一串）
   全部走伪元素，加 class 就行，不用动 HTML 结构。 */
.leafy {
  --frond: url("../img/leaf.webp");
  --spray: url("../img/leaf-2.webp");
  --berry: url("../img/leaf-3.webp");
  position: relative; isolation: isolate; overflow: clip;
}
.leafy::before, .leafy::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  inset: auto;                 /* 每条变体只写自己要的方向，先统一清掉 */
  opacity: .16;
}

/* 六种摆法轮着用。改朝向就改 transform，改位置就改那四个方向值。 */
.leafy::before, .leafy-1::before {
  inset: auto;
  background-image: var(--frond); aspect-ratio: .99;
  width: min(44vw, 430px); top: -5%; right: -8%; transform: rotate(-12deg);
}
.leafy::after, .leafy-1::after {
  inset: auto;
  background-image: var(--berry); aspect-ratio: 2.72;
  width: min(40vw, 380px); bottom: 3%; left: -6%; transform: rotate(6deg);
}

.leafy-2::before {
  inset: auto;
  background-image: var(--spray); aspect-ratio: .69;
  width: min(30vw, 285px); top: -8%; left: -5%; transform: rotate(28deg);
}
.leafy-2::after {
  inset: auto;
  background-image: var(--frond); aspect-ratio: .99;
  width: min(40vw, 390px); bottom: -7%; right: -7%; transform: rotate(168deg);
}

.leafy-3::before {
  inset: auto;
  background-image: var(--frond); aspect-ratio: .99;
  width: min(38vw, 370px); top: -6%; left: -9%; transform: rotate(196deg);
}
.leafy-3::after {
  inset: auto;
  background-image: var(--spray); aspect-ratio: .69;
  width: min(28vw, 270px); bottom: -6%; right: -3%; transform: rotate(-22deg);
}

.leafy-4::before {
  inset: auto;
  background-image: var(--spray); aspect-ratio: .69;
  width: min(34vw, 320px); top: -10%; right: -4%; transform: scaleX(-1) rotate(18deg);
}
.leafy-4::after { content: none; }

.leafy-5::before {
  inset: auto;
  background-image: var(--berry); aspect-ratio: 2.72;
  width: min(42vw, 400px); top: 4%; right: -8%; transform: rotate(-9deg);
}
.leafy-5::after {
  inset: auto;
  background-image: var(--spray); aspect-ratio: .69;
  width: min(30vw, 290px); bottom: -9%; left: -6%; transform: scaleX(-1) rotate(-18deg);
}

.leafy-6::before {
  inset: auto;
  background-image: var(--frond); aspect-ratio: .99;
  width: min(46vw, 450px); bottom: -8%; left: -10%; transform: rotate(-168deg);
}
.leafy-6::after { content: none; }

/* 深底上用白色描线，压得更淡 */
.band-olive.leafy::before, .band-olive.leafy::after,
.page-head.leafy::before, .page-head.leafy::after,
.band-night.leafy::before, .band-night.leafy::after,
.site-footer.leafy::before, .site-footer.leafy::after {
  filter: brightness(0) invert(1); opacity: .10;
}

/* 手机上只留一片，别把文字压花了 */
@media (max-width: 700px) {
  .leafy::before, .leafy::after { opacity: .12; }
  .leafy::after  { content: none; }
  .leafy-4::before, .leafy-6::before { width: 52vw; }
  .leafy-6::before { bottom: -4%; left: -16%; }
}
/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.5rem;
  border: 2px solid transparent; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700; line-height: 1.15;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--olive); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--olive-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--olive-dark); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-deep); color: var(--olive-dark); }
.btn--ghost { background: transparent; color: var(--olive-dark); border-color: var(--olive); }
.btn--ghost:hover { background: rgba(95,100,64,.09); color: var(--olive-dark); }
.btn--light { background: #fff; color: var(--olive-dark); }
.btn--light:hover { background: var(--gold); }
.btn[aria-disabled="true"], .btn.is-disabled {
  opacity: .52; cursor: not-allowed; box-shadow: none; transform: none;
  filter: grayscale(.18);
}
.btn[aria-disabled="true"]:hover, .btn.is-disabled:hover {
  background: var(--olive); color: #fff; box-shadow: none; transform: none;
}
.btn--sm { min-height: 40px; padding: .5rem 1.05rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn-row--center { justify-content: center; }

/* ---------- 5b. 外送平台订餐按钮 ----------------------------------------- */
/* 这两个按钮是全站转化的终点，原来只是两个和别的按钮长得一样的胶囊，
   顾客看不出点过去会打开哪个 App。改动三点：
     1) 各用平台自己的品牌色 —— GrabFood 绿 / foodpanda 粉，辨识度最高；
        只有这两个「跳去外部 App」的按钮这么做，其余仍走橄榄绿品牌色，不会花。
     2) 左边加一个购物袋图标（CSS mask + currentColor，不用改 HTML、不用额外请求）。
     3) 实心底边 + 投影做出厚度，hover 会顶起来，点起来有反馈。
   .btn::before 已经被扫光效果占了，所以图标用 ::after + order:-1 放到左边。 */
.btn--order {
  gap: .55rem;
  box-shadow: 0 2px 0 rgba(0,0,0,.20), 0 6px 16px rgba(0,0,0,.20);
}
.btn--order::after {
  content: ""; order: -1; flex: none;
  width: 1.15em; height: 1.15em;
  /* 默认跟文字同色；深色底上按钮改成统一的浅色填充后，
     由 --order-accent 接管，让图标单独承载平台身份（见下方 5c 节）。 */
  background: var(--order-accent, currentColor);
  -webkit-mask: var(--order-icon) center / contain no-repeat;
          mask: var(--order-icon) center / contain no-repeat;
}
.btn--order:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.22), 0 12px 24px rgba(0,0,0,.26);
}
.btn--order:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0,0,0,.20), 0 4px 10px rgba(0,0,0,.18);
}
/* 购物袋（实心剪影，配合 mask 使用；颜色跟 currentColor 走） */
.btn--grab, .btn--panda {
  --order-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.2 7h13.6l1.05 13.2a1.6 1.6 0 0 1-1.6 1.8H5.75a1.6 1.6 0 0 1-1.6-1.8L5.2 7z'/%3E%3Cpath d='M8.5 7.6V5.5a3.5 3.5 0 0 1 7 0v2.1h-2V5.5a1.5 1.5 0 0 0-3 0v2.1h-2z'/%3E%3C/svg%3E");
}
/* 两个平台都保留各自真实的品牌色，但文字色按对比度分别选：
   白字压在 Grab 绿上只有 2.84:1，过不了 AA；换成品牌深墨字是 4.89:1。
   foodpanda 粉反过来 —— 白字 5.07:1，深墨字只有 2.73:1。
   所以两个按钮文字色不同，这是按对比度定的，不是不统一。 */
.btn--grab  { background: #00B14F; color: var(--ink); }        /* GrabFood 品牌绿 */
.btn--grab:hover  { background: #00C558; color: var(--ink); }
.btn--panda { background: #D70F64; color: #fff; }              /* foodpanda 品牌粉 */
.btn--panda:hover { background: #E31570; color: #fff; }
/* 深色底上（hero、页脚、band-olive）给个浅描边，免得和背景糊在一起 */
.hero .btn--order, .band-night .btn--order, .band-olive .btn--order,
.page-head .btn--order, .site-footer .btn--order {
  border-color: rgba(255,255,255,.22);
}

/* ---------- 6. Header ---------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--olive-dark); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,234,.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; margin-right: auto; }
.brand picture { display: block; }
/* 窄屏：只放字标。宽屏的完整锁定见下面 900px 那一档。 */
.brand img { height: 34px; width: auto; display: block; }

/* 宽屏用**完整的**品牌锁定（图形＋横线＋字标）。
   为此 --header-h 从 68px 提到 128px —— 那个变量全站 13 处都在用
   （移动端导航面板、页头留白、菜单侧栏 sticky、DIY 碗的 sticky 偏移…），
   所以改这一个数，其它位置会自己跟上，不用逐处调。

   高度取 100px 是量出来的，不是拍的：锁定里图形占 80.5% 的高，
   100 × 0.805 ≈ 81px —— 刚好过了这枚细排线插画的可读线（实测 72px，
   40px 和 56px 都是一团糊）。再矮就白放了。

   900px 这个断点必须和 HTML 里 <source media> 写的完全一致，
   否则会出现「CSS 按锁定排版、浏览器却送来字标」的错配。 */
@media (min-width: 900px) {
  :root { --header-h: 128px; }
  .brand img { height: 100px; }
  .site-header__inner { padding-block: .8rem; }
}
.brand__txt { font-family: var(--font-display); font-size: 1.14rem; color: var(--olive-dark); text-transform: uppercase; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  padding: .55rem .72rem; border-radius: var(--r-sm);
  font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--ink);
  white-space: nowrap;
}
.nav a:hover { background: rgba(95,100,64,.09); color: var(--olive-dark); }
.nav a[aria-current="page"] { color: var(--olive-dark); font-weight: 700; background: rgba(235,215,159,.45); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 2px solid var(--olive); border-radius: var(--r-sm);
  background: transparent; cursor: pointer; color: var(--olive-dark);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }
.nav-toggle[aria-expanded="true"] .icon-bars { display: none; }

/* 桌面端：订餐按钮只出现在 header 右侧，导航里的那个是给移动端抽屉用的 */
.nav .btn { display: none; }
@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav .btn { display: inline-flex; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .6rem var(--gut) 1.2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: .9rem; }
}

/* 状态徽章：营业中 / 已打烊 */
.status {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 700; color: var(--ink-soft);
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--olive-soft); flex: none; }
.status[data-state="open"] { color: #2F6B34; }
.status[data-state="open"] .status__dot { background: #43A047; box-shadow: 0 0 0 3px rgba(67,160,71,.2); }
.status[data-state="closed"] { color: #8A4B3C; }
.status[data-state="closed"] .status__dot { background: #C0603F; }

/* ---------- 7. Hero：整屏 -------------------------------------------------
   现在同时保留两版，靠 .hero 上的 data-hero-style 切换，方便直接对比：

   A) data-hero-style="photo"  —— 实拍图铺满整屏 + 暖色压暗层，文字压在图上。
      源图 assets/source-hero/island-gal-lifestyle.png（1537×1023），
      响应式产物由 tools-make-hero-photo.py 生成。1x 桌面和手机够锐，
      2x 视网膜桌面仍会放大约 1.9 倍。文字压在实拍图上，压暗层必须做得够厚
      才能保住可读性（已按 WCAG AA 实测，最差 4.84:1）。

   B) data-hero-style="studio" —— 背景是画出来的暖调深色渐变，碗是从菜单印刷稿
      里取出的 5376×3584 原图（自带 alpha）裁成的 2448px 透明抠图，
      2x / 3x 屏都锐利。背景可控，所以不需要厚蒙版。
      素材由 tools-make-bowl-photos.py 生成；投影烘焙进 WebP，
      不用运行时 drop-shadow（那会每帧重新栅格化）。

   选定之后要收掉对比开关：见本节末尾「对比开关」那一段的说明。
   header 在首页浮在 hero 上（见 6b 节）。 */
.hero {
  position: relative;
  min-height: 100vh;            /* 旧浏览器兜底 */
  min-height: 100svh;           /* 手机端不受地址栏收放影响 */
  display: grid;
  grid-template-columns: minmax(0, 1fr);  /* 防止 auto 轨道被内容撑破 */
  overflow: hidden;
  isolation: isolate;
  padding-block: calc(var(--header-h) + clamp(1.2rem, 4vw, 2.4rem)) clamp(2.2rem, 6vw, 4.2rem);
}
.hero__grid { display: grid; gap: clamp(1rem, 3vw, 2rem); align-items: center; }
.hero__inner { position: relative; z-index: 1; max-width: 600px; }

/* ---- A. 实拍全屏版 ------------------------------------------------------- */
.hero[data-hero-style="photo"] { align-items: end; }
.hero[data-hero-style="photo"] .hero__art { display: none; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--olive-dark); }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 38%;
  transform-origin: 52% 44%;
  animation: hero-drift 26s ease-in-out infinite alternate;
}
@media (min-width: 860px) {
  .hero__bg img { object-position: 66% 42%; }
}
/* 极慢的推近，让静态图有一点"还在冒热气"的活气 */
@keyframes hero-drift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.11); }
}
/* 压暗层。文字压在实拍图上，光靠 text-shadow 撑不住可读性，
   必须有一层足够厚的渐变：上缘让白色导航站得住，左下角压最深托住标题和按钮。 */
.hero[data-hero-style="photo"]::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(26,28,17,.66) 0%, rgba(26,28,17,.24) 20%,
      rgba(26,28,17,.30) 44%, rgba(26,28,17,.80) 84%, rgba(26,28,17,.94) 100%),
    radial-gradient(120% 85% at 12% 92%, rgba(26,28,17,.72), transparent 60%);
}
/* 桌面端文字在左侧，再补一道横向压暗，正文才不会压在草莓上读不出来 */
@media (min-width: 860px) {
  .hero[data-hero-style="photo"]::after {
    background:
      linear-gradient(100deg,
        rgba(26,28,17,.92) 0%, rgba(26,28,17,.80) 28%,
        rgba(26,28,17,.52) 48%, rgba(26,28,17,.16) 70%, transparent 86%),
      linear-gradient(180deg,
        rgba(26,28,17,.58) 0%, rgba(26,28,17,.10) 24%,
        rgba(26,28,17,.10) 62%, rgba(26,28,17,.52) 100%);
  }
}
/* 实拍版正文限宽更窄：再往右就压到被打亮的碗沿上，对比度掉到 AA 线下 */
.hero[data-hero-style="photo"] .hero__lead {
  max-width: 34ch; text-shadow: 0 1px 10px rgba(20,22,12,.7);
}
.hero[data-hero-style="photo"] h1 { text-shadow: 0 2px 20px rgba(20,22,12,.5); }

/* ---- B. 超清抠图版 ------------------------------------------------------- */
.hero[data-hero-style="studio"] {
  align-items: center;
  /* 碗右后方一团暖光，让它像是被打了光而不是贴上去的 */
  background:
    radial-gradient(58% 56% at 74% 44%, rgba(150,116,52,.40), transparent 68%),
    radial-gradient(90% 70% at 8% 8%, rgba(95,100,64,.34), transparent 62%),
    linear-gradient(158deg, #2C2F1D 0%, #24261A 46%, #171911 100%);
}
.hero[data-hero-style="studio"] .hero__bg { display: none; }
@media (min-width: 900px) {
  .hero[data-hero-style="studio"] .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: clamp(1.5rem, 4vw, 3rem);
  }
}
/* 碗：手机端置顶居中（DOM 里排在文案前面，所以默认就在上方）；
   桌面端推到第二列靠右，和背景那团暖光对上位。 */
.hero__art { position: relative; justify-self: center; }
.hero__art img {
  display: block; width: min(86vw, 420px); height: auto;
  animation: hero-float 9s ease-in-out infinite alternate;
}
@media (min-width: 900px) {
  .hero__art { order: 2; justify-self: end; margin-right: clamp(-5rem, -4vw, -1rem); }
  .hero__art img { width: min(54vw, 660px); }
}
@media (min-width: 1400px) {
  .hero__art img { width: min(52vw, 740px); }
}
/* 只动 transform，不碰滤镜，合成层里几乎零成本 */
@keyframes hero-float {
  from { transform: translateY(-8px) rotate(-1.2deg); }
  to   { transform: translateY(8px) rotate(1.2deg); }
}
.hero .eyebrow { color: var(--gold); margin-bottom: .7rem; }
.hero h1 {
  color: #fff; margin-bottom: .3em;
  font-size: clamp(2.6rem, 8.2vw, 5.2rem);
  text-shadow: 0 2px 20px rgba(20,22,12,.5);
}
.hero h1 .script { color: var(--gold); }
/* 正文一律纯白，不要降透明度 —— 90% 白压在实拍图上就掉到 AA 线下了 */
.hero__lead {
  color: #fff; font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 38ch; margin-bottom: 1.2rem;
}
/* 价格 + 营业状态 + 步行距离。
   原来 chips 和按钮都用 flex-wrap 自由换行，六个元素排出了六个不同的右边缘
   （实测 415 / 609 / 395 / 409 / 656 / 388），看着就是散的。
   改成统一的两列网格：所有元素共用同一条对齐轴，第三个跨满两列。
   营业状态那句长度会变（"Open now" ~ "Closed · opens 11am tomorrow"），
   网格宽度固定，不会因为文案变长就重新换行。 */
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
@media (min-width: 701px) {
  .hero__chips {
    display: grid; grid-template-columns: 1fr 1fr; gap: .38rem;
    max-width: 330px; margin-bottom: 1rem;
  }
  /* 状态 chip 独占一行：它的文案长度会变，单独一行就不会挤到别人 */
  .hero__chips .status { grid-column: 1 / -1; }
  .hero .btn-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: .38rem;
    max-width: 330px;
  }
  .hero .btn-row .btn:last-child { grid-column: 1 / -1; }
  /* 平台色实底面积大了就会压过品牌的橄榄绿/金。整块（chips + 按钮）
     统一收到 330px 宽，比全站默认小一大截 —— 颜色不动，靠缩小降视觉重量。 */
  .hero .btn-row .btn {
    min-height: 34px; padding: .3rem .6rem; font-size: .8rem; gap: .32rem;
  }
  .hero .btn--order::after { width: .92em; height: .92em; }
  .hero__chip { padding: .22rem .6rem; font-size: .72rem; }
  /* 触屏设备（比如 iPad，视口也在 701px 以上）不能把点击目标缩到这么小，
     那里按 44px 的可触控下限来。 */
  @media (pointer: coarse) {
    .hero .btn-row .btn { min-height: 44px; }
    .hero__chip { padding: .34rem .78rem; font-size: .82rem; }
  }
}
/* 半透明胶囊用暗底而不是白底，白字才站得住 */
.hero__chip {
  display: inline-flex; align-items: center; gap: .42rem; margin: 0;
  padding: .42rem .9rem; border-radius: var(--r-pill);
  background: rgba(24,26,16,.52);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  font-size: .87rem; font-weight: 700; color: #fff; line-height: 1.3;
}
/* hero 的订餐按钮只显示平台名："Order on" 在收窄后的按钮里放不下，
   购物袋图标已表达下单动作（底部固定订餐栏也是这么写的）。
   链接上有 aria-label，读屏器读到的仍是完整的 "Order on GrabFood"。 */
.hero .btn__prefix { display: none; }

.hero__chip--price { background: var(--gold); border-color: var(--gold); color: var(--olive-dark); }
/* 营业徽章在深色图上要反白 */
.hero__chip.status { color: #fff; }
.hero__chip.status[data-state="open"] { color: #D6F5C9; }
.hero__chip.status[data-state="closed"] { color: #F6D2C4; }

.hero .btn-row { gap: .6rem; }
/* 图上的次要按钮：描白边而不是描橄榄绿 */
.hero .btn--ghost {
  border-color: rgba(255,255,255,.62); color: #fff; background: rgba(255,255,255,.08);
}
.hero .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

/* 往下滚的提示 */
.hero__cue {
  position: absolute; left: 50%; bottom: .9rem; z-index: 1;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.8); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
}
.hero__cue:hover { color: #fff; }
.hero__cue svg { width: 20px; height: 20px; animation: hero-cue 1.9s ease-in-out infinite; }
@keyframes hero-cue {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50%      { transform: translateY(5px); opacity: 1; }
}
/* ---- 对比开关（临时）-----------------------------------------------------
   只是给你 A/B 对比用的，定下来之后删三处即可：
     1) index.html 里 .hero-switch 那一段
     2) app.js 第 0c 节 heroSwitch()
     3) 本段样式 + 上面用不到的那个变体
   同时把 index.html 上 <section class="hero" data-hero-style="…"> 写死成选定的那个。 */
.hero-switch {
  position: absolute; z-index: 3;
  top: calc(var(--header-h) + .6rem); right: var(--gut);
  display: inline-flex; align-items: center; gap: .3rem; padding: 4px;
  border-radius: var(--r-pill);
  background: rgba(20,22,13,.62);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.hero-switch__label {
  padding-inline: .5rem .15rem; font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62);
}
.hero-switch__btn {
  appearance: none; -webkit-appearance: none; border: 0; cursor: pointer;
  padding: .32rem .8rem; border-radius: var(--r-pill); background: transparent;
  font-family: inherit; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.82);
  letter-spacing: .02em; transition: background .15s ease, color .15s ease;
}
.hero-switch__btn:hover { background: rgba(255,255,255,.16); color: #fff; }
.hero-switch__btn[aria-pressed="true"] { background: var(--gold); color: var(--olive-dark); }
.hero-switch__btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@media (max-width: 700px) {
  .hero-switch { top: calc(var(--header-h) + .4rem); right: .6rem; padding: 3px; }
  .hero-switch__label { display: none; }
  .hero-switch__btn { padding: .28rem .6rem; font-size: .7rem; }
}

/* 手机端第一屏只有 ~690px 可用（去掉 header 和固定订餐条），
   而"看到就想下单"的前提是订餐按钮必须在折叠线以上。所以这里把碗缩小、
   砍掉纯装饰的 eyebrow、收紧行距，并让两个订餐按钮并排占一行。 */
@media (max-width: 700px) {
  .hero__inner { max-width: none; }
  .hero__cue { display: none; }
  .hero__art img { width: min(62vw, 250px); }
  .hero__grid { gap: .5rem; }
  .hero .eyebrow { display: none; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero__lead { font-size: .98rem; line-height: 1.5; margin-bottom: .9rem; }
  .hero__chips { gap: .4rem; margin-bottom: .9rem; }
  .hero__chip { padding: .34rem .75rem; font-size: .8rem; }
  /* 步行距离在下面的 Visit 区块还有，第一屏先让位给按钮 */
  .hero__chip--walk { display: none; }
  .hero .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
  /* 两个订餐按钮并排时每个只有 ~173px。字号再大一点，"Order on GrabFood"
     就会折成两行、按钮长到 65px 高，很难看。收字号 + 收左右内边距，
     让它稳定单行；触控高度仍保持 46px。 */
  .hero .btn-row .btn {
    min-height: 46px; padding-inline: .5rem; font-size: .85rem; gap: .35rem;
  }
  .hero .btn-row .btn--order::after { width: .95em; height: .95em; }
  .hero .btn-row .btn:last-child { grid-column: 1 / -1; font-size: .95rem; }
}
/* 矮屏（iPhone SE / mini 一类）再收一档，保证三个 CTA 都在折叠线以上 */
@media (max-width: 700px) and (max-height: 800px) {
  .hero__art img { width: min(50vw, 190px); }
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.5rem); }
  .hero__lead { font-size: .92rem; margin-bottom: .7rem; }
  .hero__chips { margin-bottom: .7rem; }
}
/* hero 高度是整屏，底部会正好被固定的手机订餐条盖住 —— body 的 padding-bottom
   只垫在文档末尾，救不了第一屏。这里单独把最后一个 CTA 顶上来。 */
@media (max-width: 860px) {
  .hero { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__art img, .hero__bg img { animation: none; }
  .hero__cue svg { animation: none; }
}

/* ---------- 6b. 首页：header 浮在整屏 hero 上 ---------------------------- */
/* 只有 <body data-hero-overlay> 的页面（首页）走这套。滚过 hero 之后
   app.js 会把 data-scrolled 置 true，header 变回正常的奶油底。 */
body[data-hero-overlay] .site-header {
  position: fixed; inset-inline: 0; top: 0;
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
body[data-hero-overlay] .site-header .brand__txt,
body[data-hero-overlay] .site-header .nav > a { color: #fff; }
body[data-hero-overlay] .site-header .nav > a:hover { background: rgba(255,255,255,.16); color: #fff; }
/* 汉堡按钮会落在图上最亮的位置（碗沿、牛皮纸），纯白描边会消失。
   垫一层半透明暗底，亮处暗处都看得见。 */
body[data-hero-overlay] .site-header .nav-toggle {
  border-color: rgba(255,255,255,.55); color: #fff;
  background: rgba(26,28,17,.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
/* logo 同理：白色 logo 压在浅色牛皮纸上会糊，给它一点投影 */
body[data-hero-overlay] .site-header .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(20,22,12,.65));
}
/* 滚下去之后恢复成实底 header */
body[data-hero-overlay][data-scrolled="true"] .site-header {
  background: rgba(247,243,234,.94); border-bottom-color: var(--line);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
}
body[data-hero-overlay][data-scrolled="true"] .site-header .brand__txt { color: var(--olive-dark); }
body[data-hero-overlay][data-scrolled="true"] .site-header .nav > a { color: var(--ink); }
body[data-hero-overlay][data-scrolled="true"] .site-header .brand img { filter: none; }
body[data-hero-overlay][data-scrolled="true"] .site-header .nav > a:hover { background: rgba(95,100,64,.09); color: var(--olive-dark); }
body[data-hero-overlay][data-scrolled="true"] .site-header .nav-toggle { border-color: var(--olive); color: var(--olive-dark); }
/* 手机抽屉展开时必须是实底，否则菜单项压在图上看不清 */
body[data-hero-overlay] .site-header:has(.nav[data-open="true"]) {
  background: var(--cream); border-bottom-color: var(--line);
}
body[data-hero-overlay] .site-header:has(.nav[data-open="true"]) .brand__txt { color: var(--olive-dark); }
body[data-hero-overlay] .site-header:has(.nav[data-open="true"]) .brand img { filter: none; }
body[data-hero-overlay] .site-header:has(.nav[data-open="true"]) .nav-toggle { border-color: var(--olive); color: var(--olive-dark); }

/* ---------- 6b-2. 区块间的有机曲线 ---------------------------------------- */
/* 区块原来都是直角相接，一条条横线堆下去。给深色带上下缘加一道很浅的弧，
   整体更像手作食物品牌，而不是后台表格。

   用 border-radius 而不是 SVG 波浪：一个属性、零额外请求，
   而且不会像 SVG 分隔层那样在缩放时和背景差出一条缝。
   只给"深色压在浅色上"的区块用，浅色之间不需要（本来就看不出边界）。 */
.band-night, .page-head {
  border-radius: 0 0 clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
}
.band-night { border-radius: clamp(1.5rem, 4vw, 3.5rem); }
/* 钉住叙事那一段太高，圆角放在几千像素的两端反而看不出，收掉 */
[data-scroll-story="on"] { border-radius: 0; }

/* ---------- 6c. 深色内容带 ------------------------------------------------ */
/* 首页原来的结构是「深色 hero → 中间一路浅色 → 深色页脚」，中段没有任何节奏，
   一屏一屏翻下去全是奶油底 + 白卡片。这里给出一个可复用的深色带，
   用在最想让人停下来看的区块（现在是六个招牌碗）。
   和 hero / page-head 同一套暖调渐变，全站深色语言统一。 */
.band-night {
  position: relative;
  color: #F3F1E5;
  background:
    radial-gradient(65% 60% at 78% 8%, rgba(150,116,52,.30), transparent 66%),
    radial-gradient(70% 65% at 10% 96%, rgba(95,100,64,.36), transparent 64%),
    linear-gradient(168deg, #2C2F1D 0%, #23261A 54%, #1A1C13 100%);
}
.band-night h2, .band-night h3 { color: #fff; }
.band-night .script { color: var(--gold); }
.band-night .eyebrow { color: var(--gold); }
.band-night .lead, .band-night p { color: rgba(255,255,255,.86); }
.band-night a:not(.btn) { color: var(--gold); }
.band-night .btn--primary { background: var(--gold); color: var(--olive-dark); }
.band-night .btn--primary:hover { background: var(--gold-deep); color: var(--olive-dark); }
.band-night .btn--ghost {
  border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.08);
}
.band-night .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

/* ---------- 7b. 内页页头 -------------------------------------------------- */
/* 首页有整屏 hero，内页原来只是「标题浮在一片奶油底上 + 一大块空白」，
   两者完全不像同一个站。这里给六个内页一个共用的深色页头带：
   和 hero 同一套暖调渐变 + 品牌叶子线稿，标题立刻有了落点。
   只加 class，不改各页的内容结构。 */
/* 底部那道金色分隔线用背景层画，不用 ::after —— 这些元素同时挂着 .leafy，
   两个伪元素都被叶子占了，抢用会把其中一片叶子顶掉。 */
.page-head {
  position: relative;
  color: #fff;
  overflow: clip;                       /* 大碗要出血切边 */
  min-height: clamp(230px, 30vh, 340px);
  display: grid; align-items: center;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  background:
    linear-gradient(90deg, var(--gold), var(--gold-deep) 45%, var(--olive-soft)) bottom / 100% 3px no-repeat,
    radial-gradient(70% 90% at 82% 12%, rgba(150,116,52,.34), transparent 66%),
    radial-gradient(80% 70% at 6% 6%, rgba(95,100,64,.40), transparent 62%),
    linear-gradient(158deg, #2C2F1D 0%, #24261A 52%, #1B1D14 100%);
}
/* 内页头部原来就是一个深色矩形加几行字，和首页那个整屏大碗完全不是一个量级。
   这里压一只印刷级抠图碗、故意出血切掉一部分 —— 当图形元素用，不是产品照。
   素材是现成的（tools-make-bowl-photos.py 生成的 1040px 抠图），零新增成本。
   每页配一只不同的碗，六个页面不会看起来像同一张模板。 */
/* 巨型描边字：内页头部的编排层。
   上一版在这里压了一只 540px 的大碗，但带子最高才 460px —— 圆形物体
   被右、上、下三条边同时切掉，看着是"图片没放下"而不是有意出血；
   五个页面构图还完全一样，等于同一张模板重复五次。
   改用纯文字：不会被裁坏、每页一个词、零素材，也不跟标题抢主次。 */
.page-head__ghost {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  /* 完整落在带子里。之前用 bottom: -.14em 让它沉出边缘，但只沉了 15%，
     切掉的是字母本身（Anton 全大写没有下伸部），看着像出错而不是有意。
     要么完整、要么沉一半，中间状态最难看。 */
  right: clamp(.75rem, 2vw, 2.5rem); bottom: clamp(.5rem, 2vh, 1.4rem);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 13vw, 11rem);
  line-height: .78; letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.16);
}
/* 不支持 text-stroke 的浏览器退回一个很淡的实心字，不会变成一坨白块 */
@supports not ((-webkit-text-stroke: 1px #000)) {
  .page-head__ghost { color: rgba(255,255,255,.07); }
}
.page-head .wrap { position: relative; z-index: 1; }
/* 标题放大一档，让它稳稳压住背景那个词 */
.page-head h1 { font-size: clamp(2.5rem, 6.6vw, 4.2rem); }
.page-head h1, .page-head h2 { color: #fff; }
@media (min-width: 900px) {
  /* 头部一律用完整栅格宽度（覆盖 .wrap--narrow，否则文字被居中推到右边） */
  .page-head .wrap { max-width: var(--wrap); }
  /* 只作用于"纯文字"头部：给右边的幽灵字腾地方。
     catering 的头部 .wrap 本身就是 .split 分栏，套上这条会把**两个栏**
     都压到 64%，图片被挤小、和文字栏对不齐 —— 所以要排除掉。 */
  .page-head .wrap:not(.split) > * { max-width: 64%; }
  /* 居中版页头（目前只有 404）：上面那条限宽是为幽灵字让位的，但限宽之后
     还得把**这一栏本身**居中，否则整块贴在左边、只是内部文字居中。
     和真正居中的元素（那枚品牌锁定）实测差 194px —— 一眼就看得出没对齐。 */
  .page-head .wrap.center:not(.split) > * { margin-inline: auto; }
}
/* 小屏收掉幽灵字。那条带子本来就短、标题已经占满宽度，
   再塞一个大字只会被右边缘切掉、还压住营业状态那行（实测如此）。
   缩小到能放下的尺寸又淡得看不见，不如不放。 */
@media (max-width: 700px) {
  .page-head__ghost { display: none; }
}

.page-head .script { color: var(--gold); }
.page-head .eyebrow { color: var(--gold); }
.page-head .lead, .page-head p { color: rgba(255,255,255,.9); }
.page-head a:not(.btn) { color: var(--gold); text-decoration: underline; }
.page-head a:not(.btn):hover { color: #fff; }
/* 营业徽章在深色底上要反白 */
.page-head .status { color: rgba(255,255,255,.92); }
.page-head .status[data-state="open"] { color: #D6F5C9; }
.page-head .status[data-state="closed"] { color: #F6D2C4; }
/* 橄榄绿按钮压在深色页头上会糊进背景，换成金色（和 hero 里同一套处理） */
.page-head .btn--primary { background: var(--gold); color: var(--olive-dark); }
.page-head .btn--primary:hover { background: var(--gold-deep); color: var(--olive-dark); }
/* 次要按钮在深色底上描白边 */
.page-head .btn--ghost {
  border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.08);
}
.page-head .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

/* ---------- 8. Cards ----------------------------------------------------- */
.card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35rem; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card--link:hover .card__body h3 a { color: var(--olive-dark); }
.card__body p { margin-bottom: .9rem; color: var(--ink-soft); font-size: .96rem; }
.card__more { margin-top: auto; font-weight: 700; font-size: .93rem; text-decoration: none; color: var(--olive-dark); }
.card__more::after { content: " →"; }
.card--link a::after { content: ""; position: absolute; inset: 0; }
.card--link { position: relative; }

/* 信任带：横排四条事实，靠细分隔线分组，不再是四张卡片。
   和下面的「四大品类」卡片网格拉开层次，两个区块不再互相重复。 */
.proof {
  display: grid; gap: 0; margin: 0; padding: 0; list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--cream-card); overflow: hidden;
}
@media (min-width: 880px) { .proof { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.proof__item {
  display: flex; align-items: center; gap: .7rem;
  padding: .95rem 1.1rem; min-width: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
/* 只在网格内部画线：首行不要上边线，首列不要左边线 */
.proof__item:nth-child(-n + 2) { border-top: 0; }
.proof__item:nth-child(odd) { border-left: 0; }
@media (min-width: 880px) {
  .proof__item { border-top: 0; }
  .proof__item:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof__item:first-child { border-left: 0; }
}
.proof__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); font-size: 1.02rem; line-height: 1;
}
.proof__txt { min-width: 0; }
.proof__txt strong {
  display: block; font-size: .96rem; color: var(--olive-dark); line-height: 1.25;
}
.proof__txt small {
  display: block; margin-top: .1rem; font-size: .8rem; color: var(--ink-soft);
}
@media (max-width: 420px) {
  .proof__item { padding: .8rem .75rem; gap: .55rem; }
  .proof__icon { width: 30px; height: 30px; font-size: .92rem; }
  .proof__txt strong { font-size: .88rem; }
  .proof__txt small { font-size: .74rem; }
}

.feature {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.4rem 1.35rem;
}
.feature__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: .85rem;
  background: var(--gold); color: var(--olive-dark);
  font-size: 1.35rem; line-height: 1;
}
.feature h3 { margin-bottom: .3rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- 8b. Moving homepage content --------------------------------- */
.ingredient-marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--olive-dark); color: #fff;
}
.ingredient-marquee__track {
  display: flex; align-items: center; gap: clamp(1.1rem, 3vw, 2.5rem);
  width: max-content; padding: .68rem 0;
  animation: ingredient-marquee 26s linear infinite;
}
.ingredient-marquee__track span {
  font-family: var(--font-display); font-size: clamp(.86rem, 2vw, 1.05rem);
  letter-spacing: .075em; text-transform: uppercase; white-space: nowrap;
}
.ingredient-marquee__track i { color: var(--gold); font-style: normal; }
.ingredient-marquee:hover .ingredient-marquee__track { animation-play-state: paused; }
@keyframes ingredient-marquee {
  to { transform: translateX(-50%); }
}

.signature-showcase {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 2.2vw, 1.35rem); margin: 1.7rem 0 1.9rem;
  perspective: 1100px;
}
.signature-bowl-card {
  --bowl-rx: 0deg; --bowl-ry: 0deg; --bowl-rise: 0px;
  position: relative; min-width: 0; overflow: hidden; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(255,253,248,.84); color: var(--ink);
  font: inherit; text-align: left; cursor: pointer; isolation: isolate;
  box-shadow: var(--shadow-sm);
  transform: translateY(var(--bowl-rise)) rotateX(var(--bowl-rx)) rotateY(var(--bowl-ry));
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, opacity .45s ease, translate .55s cubic-bezier(.2,.75,.2,1);
}
.motion-ready .signature-bowl-card { opacity: 0; translate: 0 22px; }
.motion-ready .signature-bowl-card.is-inview { opacity: 1; translate: 0 0; }
.signature-bowl-card::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 20%), rgba(255,255,255,.38), transparent 35%);
  opacity: 0; transition: opacity .22s ease;
}
.signature-bowl-card:hover, .signature-bowl-card.is-open {
  --bowl-rise: -7px; border-color: rgba(78,93,50,.48); box-shadow: var(--shadow-lg);
}
.signature-bowl-card:hover::after, .signature-bowl-card.is-open::after { opacity: 1; }
.signature-bowl-card__art {
  position: relative; display: block; overflow: hidden; aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(235,215,159,.55), transparent 58%),
    linear-gradient(145deg, #FAF5E7, #F1E7C9);
}
.signature-bowl-card:nth-child(2) .signature-bowl-card__art,
.signature-bowl-card:nth-child(5) .signature-bowl-card__art {
  background: radial-gradient(circle at 50% 48%, rgba(151,171,112,.32), transparent 58%), #F7F3E6;
}
.signature-bowl-card:nth-child(4) .signature-bowl-card__art {
  background: radial-gradient(circle at 50% 48%, rgba(204,105,111,.24), transparent 58%), #FBF3E9;
}
/* 投影已经烘焙进 WebP（见 tools-make-bowl-photos.py），这里不再用
   filter: drop-shadow() —— 碗上有常驻的浮动动画，每一帧都要重新栅格化整张图，
   六个卡片同时跑代价很实在。只留 transform 动画，走合成层。 */
.signature-bowl-card__art img {
  position: absolute; inset: 5%; width: 90%; height: 90%; object-fit: contain;
  translate: 0 0; transform: scale(1) rotate(0deg);
  transition: transform .48s cubic-bezier(.2,.8,.2,1);
  animation: signature-bowl-float 5.6s ease-in-out infinite;
  animation-delay: calc(var(--bowl-index, 0) * -.65s);
}
.signature-bowl-card:nth-child(1) { --bowl-index: 1; }
.signature-bowl-card:nth-child(2) { --bowl-index: 2; }
.signature-bowl-card:nth-child(3) { --bowl-index: 3; }
.signature-bowl-card:nth-child(4) { --bowl-index: 4; }
.signature-bowl-card:nth-child(5) { --bowl-index: 5; }
.signature-bowl-card:nth-child(6) { --bowl-index: 6; }
.signature-bowl-card:hover img, .signature-bowl-card.is-open img {
  transform: scale(1.055) rotate(-1.2deg);
  filter: drop-shadow(0 22px 15px rgba(59,43,26,.27));
}
.signature-bowl-card__num {
  position: absolute; left: .8rem; top: .8rem; z-index: 2;
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--olive-dark); color: var(--gold);
  font-family: var(--font-display); font-size: .78rem; box-shadow: var(--shadow-sm);
}
/* 热门标记：数据取自 menu.html 已经标好的 CROWD FAVOURITE，不是新编的。
   放在碗的右上角，和左上角的序号对角呼应。 */
.signature-bowl-card__flag {
  position: absolute; right: .7rem; top: .8rem; z-index: 2;
  padding: .2rem .6rem; border-radius: var(--r-pill);
  background: var(--gold); color: var(--olive-dark);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; box-shadow: var(--shadow-sm);
}
/* 过敏提示要看得见，不能混在普通配料文字里 */
.signature-bowl-card__details b { color: var(--gold); font-weight: 700; }
/* 钉住叙事模式下挪到左上，跟在章节序号下面 */
[data-scroll-story="on"] .signature-bowl-card__flag {
  right: auto; left: 0; top: 2.6rem; font-size: .74rem; padding: .24rem .7rem;
}

.signature-bowl-card__copy {
  position: relative; z-index: 4; display: grid; grid-template-columns: 1fr 34px;
  gap: .2rem .7rem; padding: 1rem 1.05rem 1.1rem; background: rgba(255,253,248,.96);
}
.signature-bowl-card__copy strong,
.signature-bowl-card__copy small { display: block; }
.signature-bowl-card__copy strong {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--olive-dark);
}
.signature-bowl-card__copy small { margin-top: .16rem; color: var(--ink-soft); font-size: .78rem; }
.signature-bowl-card__plus {
  grid-column: 2; grid-row: 1; display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--olive-dark);
  font-size: 1.25rem; font-weight: 800; transition: transform .28s ease, background .2s ease;
}
.signature-bowl-card.is-open .signature-bowl-card__plus,
.signature-bowl-card:hover .signature-bowl-card__plus { transform: rotate(45deg); background: var(--acai); color: #fff; }
.signature-bowl-card__details {
  grid-column: 1 / -1; display: block; max-height: 0; overflow: hidden;
  opacity: 0; translate: 0 -4px; color: var(--acai); font-size: .76rem; font-weight: 800;
  transition: max-height .28s ease, opacity .22s ease, translate .28s ease, margin .28s ease;
}
.signature-bowl-card.is-open .signature-bowl-card__details,
.signature-bowl-card:hover .signature-bowl-card__details,
.signature-bowl-card:focus-visible .signature-bowl-card__details {
  max-height: 2rem; margin-top: .45rem; opacity: 1; translate: 0 0;
}
/* ---- 深色带里的招牌碗卡片 -------------------------------------------------
   卡片原来是奶油白底，放到 .band-night 上会变成六块亮斑，把碗本身压下去。
   改成深色玻璃质感：碗是主角，卡片只是托住它。 */
.band-night .signature-bowl-card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
  color: #F3F1E5;
  box-shadow: 0 10px 26px rgba(0,0,0,.34);
}
.band-night .signature-bowl-card:hover,
.band-night .signature-bowl-card.is-open {
  background: rgba(255,255,255,.09);
  border-color: rgba(235,215,159,.5);
  box-shadow: 0 18px 44px rgba(0,0,0,.46);
}
/* 碗后面一小团暖光，替掉原来的奶油渐变 */
.band-night .signature-bowl-card__art,
.band-night .signature-bowl-card:nth-child(2) .signature-bowl-card__art,
.band-night .signature-bowl-card:nth-child(4) .signature-bowl-card__art,
.band-night .signature-bowl-card:nth-child(5) .signature-bowl-card__art {
  background: radial-gradient(circle at 50% 47%, rgba(150,116,52,.34), transparent 62%);
}
.band-night .signature-bowl-card__copy { background: rgba(20,22,14,.55); }
.band-night .signature-bowl-card__copy strong { color: #fff; }
.band-night .signature-bowl-card__copy small { color: rgba(255,255,255,.7); }
.band-night .signature-bowl-card__details { color: rgba(255,255,255,.82); }
.band-night .signature-bowl-card__num { background: rgba(20,22,14,.8); color: var(--gold); }
/* 光泽扫过的高光在深色上要收一点，否则像一块白斑 */
.band-night .signature-bowl-card::after {
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 20%), rgba(255,255,255,.16), transparent 38%);
}

/* ---- 招牌碗滚动叙事（桌面）-------------------------------------------------
   同一份 DOM，两种呈现：默认是上面那套六宫格；桌面 + 允许动效时，
   app.js 会给区块加 data-scroll-story="on"，变成钉住的一屏一碗。

   为什么只在桌面开：手机第一屏寸土寸金，六屏钉住式滚动会把「下单」推得很远。
   关掉动效（prefers-reduced-motion）也自动退回网格 —— 钉住滚动本质上是
   在接管用户的滚动，对前庭敏感的人不友好。JS 没跑起来同样是网格，内容不丢。

   想彻底关掉：把 app.js 第 5b 节的 signatureStory() 删掉即可，
   CSS 这段没有 data-scroll-story="on" 就完全不生效。 */
[data-scroll-story="on"] {
  --story-count: 6;
  --story-step: 46vh;      /* 每个碗占的滚动距离；调小整段就短 */
  padding-block: 0;
}
/* 高度必须给到 .wrap，不能只给 section ——
   sticky 只能在**它自己的包含块**里移动。stage 的父元素是 .wrap，
   如果 .wrap 只有内容高（约 1200px），钉住走几百像素就到头了（实测就是这样）。
   grid-template-rows: auto 1fr auto 让中间那行吃掉全部富余高度，
   stage 用 align-self: start 保持自己的高度，就能在这一整行里钉住走完。 */
[data-scroll-story="on"] > .wrap {
  min-height: calc(100vh + var(--story-count) * var(--story-step));
  display: grid;
  grid-template-rows: auto 1fr auto;
}
/* 区块高 3000px+，叶子挂在上下两端会离得很远、看着像孤零零两片，
   叙事模式下收掉。（.leafy 的 overflow: clip 不影响 sticky —— 真正
   破坏 sticky 的是 body 的 overflow-x，见第 2 节。） */
[data-scroll-story="on"]::before,
[data-scroll-story="on"]::after { display: none; }
[data-scroll-story="on"] .section-head {
  position: relative; z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 4rem) 0;
}
[data-scroll-story="on"] .signature-showcase {
  position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h));
  align-self: start;          /* 别被 1fr 那一行拉伸，否则没有可钉住的余量 */
  display: block; margin: 0; perspective: none;
}
/* 六张卡叠在一起，只显示当前那张 */
[data-scroll-story="on"] .signature-bowl-card {
  position: absolute; inset: 0;
  display: grid; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  padding: 0 0 clamp(3rem, 8vh, 6rem);
  background: none; border: 0; box-shadow: none; overflow: visible;
  opacity: 0; visibility: hidden;
  /* 必须显式写 transition: none。
     基础 .signature-bowl-card 上有 `opacity .45s ease, translate .55s`，
     不覆盖的话：每帧写入新的 opacity 都会启动一次 450ms 过渡、下一帧又被打断，
     几百次互相打架 —— 画面就是死卡。不透明度这里完全由滚动位置驱动，
     不需要任何按时间走的过渡。 */
  /* 必须显式写 transition: none —— 基础 .signature-bowl-card 上有
     `opacity .45s ease`，不覆盖的话每次换碗都会淡入 450ms，就不是"一步到位"了。 */
  transition: none;
  translate: 0 0;
  transform: none;
}
[data-scroll-story="on"] .signature-bowl-card.is-story-active {
  opacity: 1; visibility: visible;
}
[data-scroll-story="on"] .signature-bowl-card::after { content: none; }
/* 碗：占满左半边 */
[data-scroll-story="on"] .signature-bowl-card__art {
  position: relative; aspect-ratio: 1; width: 100%;
  max-height: min(72vh, 700px); justify-self: center;
  background: radial-gradient(circle at 50% 48%, rgba(150,116,52,.34), transparent 62%);
}
/* 硬切换，碗不做缩放/位移 —— 那些是给连续过渡用的 */
[data-scroll-story="on"] .signature-bowl-card__art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: none;
}
/* 序号当章节标记用：钉在左上角，后面缀上总数，读起来是「04 / 06」。
   原来居中浮在碗顶上，像个没着落的标签。 */
[data-scroll-story="on"] .signature-bowl-card__num {
  position: absolute; left: 0; top: 0; z-index: 2;
  width: auto; height: auto; border-radius: 0;
  background: none; color: var(--gold); box-shadow: none;
  display: flex; align-items: baseline; gap: .3rem;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem); letter-spacing: .16em;
}
[data-scroll-story="on"] .signature-bowl-card__num::after {
  content: "/ 0" counter(story-total);
  counter-reset: story-total var(--story-count, 6);
  font-size: .68em; color: rgba(255,255,255,.42); letter-spacing: .1em;
}
/* 右半边的文案：钉住时放大成正经的介绍 */
[data-scroll-story="on"] .signature-bowl-card__copy {
  display: block; background: none; padding: 0; text-align: left;
}
[data-scroll-story="on"] .signature-bowl-card__copy > span:first-child { display: block; }
[data-scroll-story="on"] .signature-bowl-card__copy strong {
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .01em;
}
[data-scroll-story="on"] .signature-bowl-card__copy small {
  margin-top: .5rem; font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--gold); font-weight: 700;
}
[data-scroll-story="on"] .signature-bowl-card__plus { display: none; }
/* 网格模式下这行是折叠的，钉住模式要常驻显示 */
[data-scroll-story="on"] .signature-bowl-card__details {
  display: block; max-height: none; opacity: 1; overflow: visible;
  margin-top: .9rem; padding: 0;
  font-size: clamp(.95rem, 1.3vw, 1.05rem); color: rgba(255,255,255,.82);
}
/* 进度条：当前是第几碗 */
[data-scroll-story="on"] .signature-showcase::after {
  content: ""; position: absolute; left: 0; bottom: clamp(1.2rem, 4vh, 2.6rem);
  width: 100%; height: 3px; border-radius: 3px;
  background:
    linear-gradient(90deg, var(--gold) 0 calc((var(--story-index, 0) + 1) / var(--story-count) * 100%),
                    rgba(255,255,255,.16) 0);
  transition: background .4s ease;
}
[data-scroll-story="on"] .btn-row { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 4rem); }
/* 钉住时不要再叠浮动动画，两套动画会互相打架 */
[data-scroll-story="on"] .signature-bowl-card__art img { animation: none; }

@keyframes signature-bowl-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@media (max-width: 900px) {
  .signature-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .signature-showcase { grid-template-columns: 1fr; }
  .signature-bowl-card { display: grid; grid-template-columns: 42% 58%; align-items: stretch; }
  .signature-bowl-card__art { aspect-ratio: auto; min-height: 172px; }
  .signature-bowl-card__copy { align-content: center; }
}

/* ---------- 9. Menu ------------------------------------------------------ */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding-block: .6rem;
}
.menu-nav__row { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: thin; padding-bottom: .15rem; }
.menu-nav a {
  flex: none; padding: .45rem .95rem; border-radius: var(--r-pill);
  background: var(--cream-deep); color: var(--ink); text-decoration: none;
  font-size: .92rem; font-weight: 700; white-space: nowrap;
}
.menu-nav a:hover, .menu-nav a.is-active { background: var(--olive); color: #fff; }

.menu-section { scroll-margin-top: calc(var(--header-h) + 58px); }
.menu-section__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.2rem;
  border-bottom: 3px solid var(--olive); padding-bottom: .55rem; margin-bottom: 1.5rem;
}
.menu-section__head h2 { margin: 0; }
.price-line {
  font-family: var(--font-body); font-weight: 700; color: var(--ink-soft);
  font-size: .98rem; margin-left: auto;
}

.item-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.item {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem;
  align-items: baseline;
  padding: .95rem .3rem; border-bottom: 1px dashed var(--line);
}
.item__name { font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.item__tag {
  display: inline-block; margin-left: .5rem; vertical-align: middle;
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  background: var(--gold); color: var(--olive-dark);
  padding: .18rem .5rem; border-radius: var(--r-pill);
}
.item__tag--v { background: var(--f-green); }
.item__tag--n { background: var(--f-orange); }
.item__desc { grid-column: 1 / -1; margin: .2rem 0 0; color: var(--ink-soft); font-size: .95rem; }
.item__price { font-weight: 700; color: var(--olive-dark); white-space: nowrap; }

/* 招牌碗把现有成品漫画带进菜单，不再只是文字价格表。 */
.item-list--signature {
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
}
.item-list--signature .item--visual {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-content: start;
  padding: 0 1rem 1rem; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(255,253,248,.88); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.item-list--signature .item--visual:hover {
  transform: translateY(-6px); border-color: rgba(95,100,64,.5); box-shadow: var(--shadow-lg);
}
.item--visual .item__media {
  position: relative; display: grid; place-items: center;
  grid-column: 1 / -1; aspect-ratio: 1.16 / 1;
  margin: 0 -1rem .85rem; overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(235,215,159,.58), transparent 57%),
    linear-gradient(145deg, #FBF7EC, #EEE3C5);
}
.item--visual:nth-child(2) .item__media,
.item--visual:nth-child(5) .item__media {
  background: radial-gradient(circle at 50% 48%, rgba(151,171,112,.35), transparent 57%), #F5F1E3;
}
.item--visual:nth-child(4) .item__media {
  background: radial-gradient(circle at 50% 48%, rgba(211,111,122,.27), transparent 57%), #FBF2E9;
}
.item--visual .item__media img {
  width: 88%; height: 88%; object-fit: contain;
  filter: drop-shadow(0 14px 11px rgba(58,42,25,.2));
  translate: 0 0; transform: scale(1);
  animation: menu-bowl-drift 5.4s ease-in-out infinite;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}
.item--visual:nth-child(2n) .item__media img { animation-delay: -2.7s; }
.item--visual:hover .item__media img {
  transform: scale(1.075) rotate(1.2deg);
  filter: drop-shadow(0 18px 13px rgba(58,42,25,.24));
}
.item-list--signature .item__price {
  padding: .16rem .52rem; border-radius: var(--r-pill);
  background: var(--olive-dark); color: #fff; font-size: .82rem;
}
@keyframes menu-bowl-drift {
  0%, 100% { translate: 0 2px; }
  50% { translate: 0 -7px; }
}
@media (max-width: 980px) {
  .item-list--signature { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .item-list--signature { grid-template-columns: 1fr; gap: .8rem; }
  .item-list--signature .item--visual {
    grid-template-columns: minmax(108px, 34%) minmax(0, 1fr) auto;
    min-height: 160px; padding: .8rem;
  }
  .item--visual .item__media {
    grid-column: 1; grid-row: 1 / 4; align-self: stretch;
    min-height: 160px; aspect-ratio: auto; margin: -.8rem .8rem -.8rem -.8rem;
  }
  .item-list--signature .item__name { grid-column: 2; }
  .item-list--signature .item__price { grid-column: 3; }
  .item-list--signature .item__desc { grid-column: 2 / 4; }
}

/* Smoothie / milkshake section: real product photo stays beside the list. */
.menu-photo-layout {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.menu-photo-card {
  position: sticky; top: calc(var(--header-h) + 82px);
  margin: 0; overflow: hidden; border-radius: var(--r-lg);
  background: var(--olive-dark); color: #fff; box-shadow: var(--shadow-lg);
}
.menu-photo-card img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.menu-photo-card:hover img { transform: scale(1.035); }
.menu-photo-card figcaption {
  padding: .8rem 1rem .9rem; color: #E7E4D4; font-size: .88rem;
}
.menu-photo-card figcaption strong { color: var(--gold); }
@media (max-width: 800px) {
  .menu-photo-layout { grid-template-columns: 1fr; }
  .menu-photo-card { position: relative; top: auto; }
  .menu-photo-card img { aspect-ratio: 4 / 3; object-position: center 65%; }
}

.chip-set { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.chip {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .38rem .85rem; font-size: .93rem;
}
.chip--pink   { background: var(--f-pink); border-color: transparent; }
.chip--orange { background: var(--f-orange); border-color: transparent; }
.chip--yellow { background: var(--f-yellow); border-color: transparent; }
.chip--green  { background: var(--f-green); border-color: transparent; }
.chip--purple { background: var(--f-purple); border-color: transparent; }

.note-box {
  background: var(--cream-deep); border-left: 4px solid var(--gold-deep);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: .9rem 1.1rem;
  font-size: .95rem; color: var(--ink-soft);
}

/* ---------- 10. DIY builder ---------------------------------------------- */
.builder {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.builder__step + .builder__step { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.builder__step h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: .2rem; }
.builder__num {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--olive); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: .9rem;
}
.builder__hint { font-size: .9rem; color: var(--ink-soft); margin: 0 0 .8rem 2.2rem; }
.opts { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
/* 只作用于紧跟 input 的那个 span，否则内层的 .plus 也会被套上一个胶囊 */
.opt input + span {
  display: inline-flex; align-items: center; gap: .35rem; min-height: 42px;
  padding: .45rem .95rem; border: 2px solid var(--line); border-radius: var(--r-pill);
  background: var(--white); cursor: pointer; font-size: .95rem; user-select: none;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.opt input + span:hover { border-color: var(--olive-soft); }
.opt input:checked + span { background: var(--olive); border-color: var(--olive); color: #fff; font-weight: 700; }
.opt input:focus-visible + span { outline: 3px solid var(--acai); outline-offset: 2px; }
.opt input:disabled + span { opacity: .42; cursor: not-allowed; }
.opt .plus { font-size: .8rem; opacity: .85; }

.builder__out {
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 2px solid var(--olive);
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .builder__out { grid-template-columns: 1fr auto; align-items: center; } }
.builder__total { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.7rem); color: var(--olive-dark); line-height: 1; }
.builder__recap { font-size: .93rem; color: var(--ink-soft); margin: .45rem 0 0; }
.builder__warn { color: #8A4B3C; font-weight: 700; font-size: .92rem; margin: .45rem 0 0; }

/* ---------- 10a. 手绘小人 -------------------------------------------------
   位置：DIY 区块右上，和「Build Your Own Bowl」这个动作对上 —— 画的就是
   一个小孩拿着勺子守着一只空碗。

   故意用 background-image + 绝对定位，不用 <img>：
   素材还没放进来时，既不会出现裂图图标，也不占文档流、不会留一块空洞。
   把 assets/img/doodle/kid-with-bowl-*.webp 放进去就自动出现。

   生成素材：python3 tools-make-doodle.py assets/source-art/kid-with-bowl.png */
/* 手绘小人（拿着碗那个）。

   ⚠️ 用的是 background-image，**不要**改成 mask + currentColor。
   那条路更省素材（一张图配 currentColor 通吃深浅底），试过，退回来了：
   Chrome 在 `file://` 下拒绝加载 CSS mask 引用的**外部图片文件**，
   而 mask 加载失败的表现是元素**整个消失**，不是退化成没有 mask。
   这个站要能双击 index.html 直接看，所以不能用。
   实测：同一页同一窗口，http:// 下小人正常，file:// 下那块区域全空。
   （站上那 27 个图标不受影响 —— 它们的 mask 是 data: 内联 SVG，不是外部文件。
     同样实测过 file:// 下正常。）
   代价是深色带要单独一张浅色版：
   `python3 tools-make-doodle.py 源图 kid-with-bowl-light --ink=FFFDF8`

   aspect-ratio 必须和素材一致（640×729 = .878）。原来写 .72，
   配 contain 会在框子上方留一段空白，小人被顶到下面去。 */
.doodle {
  position: absolute; z-index: 0; pointer-events: none;
  aspect-ratio: .878;
  background-repeat: no-repeat; background-position: center bottom;
  background-size: contain;
}
/* 奶油底上用深色版。第一行是老浏览器的兜底，image-set 认得的会用第二行。 */
.doodle--diy {
  right: clamp(.5rem, 3vw, 2.5rem); top: clamp(1rem, 3vw, 2rem);
  width: clamp(120px, 13vw, 180px);
  opacity: .78;
  background-image: url("../img/doodle/kid-with-bowl-320.webp");
  background-image: -webkit-image-set(
    url("../img/doodle/kid-with-bowl-320.webp") 1x,
    url("../img/doodle/kid-with-bowl-640.webp") 2x);
  background-image: image-set(
    url("../img/doodle/kid-with-bowl-320.webp") 1x,
    url("../img/doodle/kid-with-bowl-640.webp") 2x);
}
/* 手机端第一屏很挤，收掉 */
/* 手机上第一屏很挤，那里确实放不下 */
@media (max-width: 720px) { .doodle--diy { display: none; } }

/* ---------- 10a-2. 集点卡区块 --------------------------------------------- */
/* 门店有一张官方的数字集点卡（含 Apple Wallet），但网站从来没提过 ——
   这是白白丢掉的回头客钩子。规则文案全部照抄官方卡片，没有自行编写。 */
.loyalty {
  position: relative;
  display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
}
@media (min-width: 860px) {
  .loyalty { grid-template-columns: minmax(0, 1fr) auto; }
}
.loyalty__facts {
  list-style: none; margin: 1.2rem 0 0; padding: 0;
  display: grid; gap: .6rem;
}
.loyalty__facts li {
  display: flex; align-items: baseline; gap: .6rem;
  color: rgba(255,255,255,.86); font-size: .95rem; line-height: 1.45;
}
.loyalty__facts strong { color: #fff; }
.loyalty__facts span { flex: none; font-size: 1.05rem; }
/* 二维码必须有白底和静区，否则很多扫码器读不到 —— 这里给它一张白卡 */
.loyalty__card {
  justify-self: center;
  background: #fff; border-radius: var(--r-lg);
  padding: clamp(.9rem, 2vw, 1.2rem);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  text-align: center;
}
.loyalty__card img { width: clamp(180px, 24vw, 240px); height: auto; }
/* 特异性要压过 .band-night p 的白色，否则白字压在白卡上直接看不见 */
.band-night .loyalty__card .loyalty__scan {
  margin: .5rem 0 0; color: var(--olive-dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
/* 首页最后那条 CTA 带是深色的，所以这里给浅色 —— 同一张素材，只换 color。
   内容居中，两侧是空的，小人贴左下角不会压到任何字。
   1080px 以下按钮会换行占满整宽，那时收掉。 */
.cta-band { position: relative; overflow: hidden; }
.doodle--cta {
  /* 不贴 bottom:0 —— 贴着带子下沿时那只碗看起来像被切掉了一截。 */
  left: clamp(1rem, 3vw, 3.5rem); bottom: clamp(.6rem, 1.6vw, 1.4rem);
  width: clamp(110px, 13vw, 185px);
  opacity: .72;
  /* 深色带 -> 浅色线条版 */
  background-image: url("../img/doodle/kid-with-bowl-light-320.webp");
  background-image: -webkit-image-set(
    url("../img/doodle/kid-with-bowl-light-320.webp") 1x,
    url("../img/doodle/kid-with-bowl-light-640.webp") 2x);
  background-image: image-set(
    url("../img/doodle/kid-with-bowl-light-320.webp") 1x,
    url("../img/doodle/kid-with-bowl-light-640.webp") 2x);
}
/* 收起门槛是实测出来的：960px 时小人会碰到最左边那个按钮（1100px 还有余量）。
   所以卡在 1024px，别为了「多显示一点」把这个数往下调。 */
@media (max-width: 1024px) { .doodle--cta { display: none; } }

/* ---------- 10b. Bowl lab：实物图片选料 + 实时碗预览 ----------------------- */
/* 左边是分步选料，右边是那只会动的碗。手机端把碗吸顶，滑到哪一步都看得见。 */
.bowl-lab { display: grid; gap: 1.1rem; align-items: start; }
@media (min-width: 1000px) {
  .bowl-lab { grid-template-columns: minmax(0, 1fr) 366px; gap: 1.8rem; }
}

/* --- 选料图片格子 --- */
.opts--tiles {
  display: grid; gap: .6rem;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
}
@media (max-width: 460px) {
  .opts--tiles { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .tile__img { width: 62px; height: 62px; }
  .tile__add { top: -6px; right: -6px; width: 21px; height: 21px; font-size: .85rem; }
}

.opt--tile { display: block; }
.opt--tile label { display: block; height: 100%; }
/* 覆盖上面的胶囊样式：图片格子是方的，不是胶囊 */
.opt--tile input + .tile {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: .1rem;
  height: 100%; min-height: 0; padding: .55rem .4rem .5rem;
  border: 2px solid var(--line); border-radius: var(--r-md);
  background: var(--white); color: var(--ink); cursor: pointer;
  font-size: .84rem; font-weight: 700; line-height: 1.25; text-align: center; user-select: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease;
}
.opt--tile input + .tile:hover { border-color: var(--olive-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.opt--tile input:checked + .tile {
  background: var(--cream-card); border-color: var(--olive); color: var(--olive-dark);
  box-shadow: 0 0 0 3px rgba(95,100,64,.14);
}
.opt--tile .tile.is-linked {
  border-color: var(--acai); transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(95,52,104,.15), var(--shadow-sm);
}
.opt--tile input:focus-visible + .tile { outline: 3px solid var(--acai); outline-offset: 2px; }
.tile__img {
  width: 72px; height: 72px; object-fit: contain; pointer-events: none;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}
.opt--tile input:checked + .tile .tile__img { transform: scale(1.06); }
.opt--tile input + .tile:active .tile__img { transform: scale(.9); }
.tile__name { display: block; }
.tile__price { display: block; font-size: .72rem; font-weight: 700; color: var(--acai); }
/* 右上角的 + / ✓ 徽章 */
.tile__add {
  position: absolute; top: -8px; right: -8px; width: 24px; height: 24px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-deep); color: var(--olive-dark);
  font-size: .95rem; font-weight: 700; line-height: 1;
  box-shadow: 0 1px 4px rgba(43,46,32,.22);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.tile__add::after { content: "+"; }
.opt--tile input:checked + .tile .tile__add { background: var(--olive); color: #fff; transform: scale(1.08); }
.opt--tile input:checked + .tile .tile__add::after { content: "✓"; font-size: .8rem; }

/* --- 右侧（手机端顶部）的碗 --- */
.bowl-stage { position: sticky; top: calc(var(--header-h) + 58px); z-index: 6; order: -1; }
@media (min-width: 1000px) { .bowl-stage { order: 0; top: calc(var(--header-h) + 72px); } }
.bowl-stage__inner {
  background: linear-gradient(180deg, var(--cream-card), #F1EBDD);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: .7rem .8rem;
  display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: .3rem .8rem; align-items: center;
}
@media (min-width: 1000px) {
  .bowl-stage__inner { grid-template-columns: 1fr; padding: 1.1rem 1.2rem 1.2rem; gap: 0; }
}

.bowl-viz {
  --bowl-fill: #E6DECC;
  --bowl-scale: 1;
  position: relative; width: 100%; aspect-ratio: 1;
  grid-row: span 2;
  transform: scale(var(--bowl-scale)); transform-origin: 50% 50%;
  transition: transform .4s cubic-bezier(.34,1.35,.64,1);
}
.bowl-viz[data-size="small"]  { --bowl-scale: .92; }
.bowl-viz[data-size="medium"] { --bowl-scale: 1; }
.bowl-viz[data-size="large"]  { --bowl-scale: 1.07; }
@media (min-width: 1000px) { .bowl-viz { grid-row: auto; } }

/* 碗身：门店用的是牛皮纸碗（见菜单第一页那六张成品图），不是白瓷碗 */
.bowl-viz__vessel {
  position: absolute; inset: 0; padding: 5.2%; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #F2E3C6 0%, #E4CDA6 44%, #D0B287 72%, #B4926A 100%);
  box-shadow:
    0 14px 26px rgba(43,46,32,.22), 0 3px 8px rgba(43,46,32,.14),
    inset 0 2px 2px rgba(255,255,255,.7), inset 0 -7px 13px rgba(94,66,34,.22);
}
/* 纸碗口沿：上沿亮、下沿暗，把贴图压回碗里而不是浮在圆上 */
.bowl-viz__vessel::before {
  content: ""; position: absolute; inset: 3.7%; border-radius: 50%; z-index: 4;
  box-shadow:
    inset 0 5px 5px rgba(255,248,226,.62),
    inset 0 -7px 8px rgba(91,57,28,.22),
    0 0 0 2px rgba(137,99,55,.20);
  pointer-events: none;
}
/* 纸碗内壁那一圈压边 */
.bowl-viz__vessel::after {
  content: ""; position: absolute; inset: 2.6%; border-radius: 50%; z-index: 5;
  border: 1px solid rgba(120, 88, 48, .28); pointer-events: none;
}
/* 碗内壁：料就铺在这块圆形上，超出的部分自动被圆裁掉 */
.bowl-viz__surface {
  position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background:
    radial-gradient(circle at 31% 20%, rgba(255,255,255,.16), transparent 36%),
    radial-gradient(circle at 70% 86%, rgba(62,31,18,.13), transparent 48%),
    var(--bowl-fill);
  box-shadow: inset 0 4px 15px rgba(0,0,0,.30), inset 0 -3px 9px rgba(0,0,0,.18);
  transition: background .45s ease;
}
.bowl-viz__bands {
  position: absolute; inset: -1.5%;
  filter: saturate(1.04) contrast(1.025);
}
/* Comic ingredients are separate cut-outs, but the final preview should read as
   one finished illustration. Pulling the composition slightly inside the bowl
   leaves a fine base-colour halo and gives the paper rim more breathing room. */
.bowl-viz[data-skin="comic"] .bowl-viz__bands {
  inset: .7%;
  border-radius: 50%;
  overflow: hidden;
  filter: saturate(1.07) contrast(1.035);
}
/* 打光层：左上一片受光、下缘压暗、外圈一圈暗角。没有这层，一堆平铺的贴图
   就是一片扁的色块；加上之后才像一碗有厚度的东西。不吃点击。 */
.bowl-viz__surface::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,251,238,.22), rgba(255,251,238,0) 46%),
    radial-gradient(circle at 62% 104%, rgba(58,32,18,.32), rgba(58,32,18,0) 56%),
    radial-gradient(circle at 50% 50%, rgba(58,32,18,0) 58%, rgba(58,32,18,.26) 100%);
}
/* A very light pencil grain unifies the independently cut comic ingredients.
   It is deliberately subtle: food detail stays crisp and Photo/Simple are
   untouched. */
.bowl-viz[data-skin="comic"] .bowl-viz__surface::after {
  background:
    repeating-linear-gradient(116deg, rgba(67,45,29,.030) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(24deg, rgba(255,250,235,.025) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 29% 20%, rgba(255,251,238,.26), rgba(255,251,238,0) 44%),
    radial-gradient(circle at 62% 104%, rgba(58,32,18,.30), rgba(58,32,18,0) 54%),
    radial-gradient(circle at 50% 50%, rgba(58,32,18,0) 57%, rgba(58,32,18,.25) 100%);
}
.bowl-viz[data-skin="comic"] .bowl-viz__vessel::before {
  box-shadow:
    inset 0 5px 4px rgba(255,248,226,.66),
    inset 0 -7px 8px rgba(91,57,28,.25),
    0 0 0 2px rgba(92,64,35,.34),
    0 0 0 3px rgba(255,245,219,.30);
}
.bowl-viz__empty {
  position: absolute; left: 16%; right: 16%; top: 50%; transform: translateY(-50%); margin: 0;
  font-size: .72rem; line-height: 1.35; color: var(--ink-soft); text-align: center;
  transition: opacity .3s ease;
}
@media (min-width: 1000px) { .bowl-viz__empty { font-size: .86rem; } }
.bowl-viz[data-empty="false"] .bowl-viz__empty { opacity: 0; }

/* 一种料铺一条竖的 —— 菜单第一页六张成品碗里有四张就是这么分区的 */
.bowl-band {
  --band-tilt: 0deg;
  position: absolute; top: -7%; bottom: -7%; margin: 0; padding: 0; border: 0;
  /* 必须显式透明：<button> 的 UA 默认底色（buttonface #EFEFEF）会从料的缝里透出来 */
  -webkit-appearance: none; appearance: none; background-color: transparent;
  cursor: pointer; transform-origin: 50% 50%;
  transform: rotate(var(--band-tilt));
  transition: left .4s cubic-bezier(.34,1.2,.64,1), width .4s cubic-bezier(.34,1.2,.64,1),
              top .4s cubic-bezier(.34,1.2,.64,1), height .4s cubic-bezier(.34,1.2,.64,1),
              opacity .28s ease, transform .4s cubic-bezier(.34,1.45,.64,1), filter .18s ease;
}
/* 料的贴图：手绘插画，四边无缝，横竖都平铺。
   生成脚本 tools-make-bowl-art.py，改色改画法都在那里。 */
.bowl-band--art {
  /* 和实物版一样按**碗高**定尺度（元素高 = 一个碗直径），这样不管格子多宽，
     所有料的颗粒大小都一致；格子变宽只是多铺几列。 */
  background-repeat: repeat; background-position: center;
  background-size: auto var(--tile, 26%);
}
.bowl-band--art.bowl-band--fruit  { --tile: 30%; }
.bowl-band--art.bowl-band--crunch { --tile: 22%; }
/* 酱是一节一节的绳子，只纵向平铺，接起来就是连续的一条 */
.bowl-band--sauce {
  background-repeat: repeat-y; background-position: center top; background-size: 100% auto;
}

/* ---- 半写实漫画素材（BOWL_STYLE = 'comic'）---------------------------- */
/* 每一种料都是透明 PNG/WebP 小簇。JS 会按已选数量在竖列和横排之间切换，
   同时叠加原图与镜像图，因此不会像一张纹理被机械拉伸。 */
.bowl-band--comic {
  background-color: transparent;
  background-origin: border-box;
  background-clip: border-box;
  filter: drop-shadow(0 2px 1px rgba(49,31,18,.20));
}
.bowl-band--comic-column { top: -4%; bottom: -4%; }
.bowl-band--comic-row { bottom: auto; right: auto; }
.bowl-band--comic:hover,
.bowl-band--comic.is-highlighted {
  filter: drop-shadow(0 3px 2px rgba(49,31,18,.24)) brightness(1.06) saturate(1.06);
}

/* ---- 实物照那一套（BOWL_STYLE = 'photo'）------------------------------- */
/* 每张 WebP 都必须是「窄 × 高」的竖向真实摆盘（例如 banana 90×780）。
   旧素材若是 780×90 横图，浏览器会把它压成规则条纹，看起来像织物。 */
.bowl-band--photo {
  top: 0; bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* 左缘由 JS 切成稳定的波浪形，相邻条带再轻微压边。 */
}
.bowl-band--overlay {
  /* Comic mode chooses row/column repetition in JS; Photo and Simple retain
     their own class defaults. Avoid !important so overlays can rotate. */
  overflow: visible;
}
.bowl-band--drizzle-overlay {
  filter: drop-shadow(0 4px 3px rgba(46,24,12,.34));
}
.bowl-band--garnish {
  filter: drop-shadow(0 2px 1px rgba(35,23,16,.46));
}
/* Drizzle / chia 使用透明照片覆盖在底层食材上；hover 时保留它们的投影。 */
.bowl-band:hover, .bowl-band.is-highlighted {
  filter: brightness(1.10) saturate(1.08); z-index: 50 !important;
}
.bowl-band--drizzle-overlay:hover,
.bowl-band--drizzle-overlay.is-highlighted {
  filter: drop-shadow(0 4px 3px rgba(46,24,12,.34)) brightness(1.08) saturate(1.06);
}
.bowl-band--garnish:hover,
.bowl-band--garnish.is-highlighted {
  filter: drop-shadow(0 2px 1px rgba(35,23,16,.46)) brightness(1.08);
}
.bowl-band:focus-visible { outline: 3px solid var(--acai); outline-offset: -3px; z-index: 51 !important; }
.bowl-band--in, .bowl-band--out {
  opacity: 0; transform: rotate(var(--band-tilt)) scaleX(.2);
}

/* 落料时碗晃一下 */
.bowl-viz.is-hit .bowl-viz__vessel { animation: bowl-jiggle .4s ease; }
@keyframes bowl-jiggle {
  0%, 100% { transform: none; }
  30%      { transform: scale(1.035, .965); }
  65%      { transform: scale(.985, 1.015); }
}

/* 从格子飞到碗里的那一份复制品 */
.bowl-fly {
  position: fixed; z-index: 90; pointer-events: none; object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(43,46,32,.3));
}

.bowl-stage__count {
  margin: .1rem 0 0; font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  letter-spacing: .04em; text-transform: uppercase;
}
/* 实物 / 插画 切换 */
.skin-switch {
  display: inline-flex; margin: .55rem auto 0; padding: 3px;
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--r-pill);
}
.skin-switch__btn {
  appearance: none; -webkit-appearance: none; border: 0; cursor: pointer;
  padding: .3rem .85rem; border-radius: var(--r-pill); background: transparent;
  font-family: inherit; font-size: .76rem; font-weight: 700; color: var(--ink-soft);
  letter-spacing: .03em; transition: background .15s ease, color .15s ease;
}
.skin-switch__btn:hover { color: var(--olive-dark); }
.skin-switch__btn[aria-pressed="true"] { background: var(--olive); color: #fff; }
.skin-switch__btn:focus-visible { outline: 3px solid var(--acai); outline-offset: 2px; }

.bowl-stage__hint {
  margin: .5rem 0 0; font-size: .78rem; line-height: 1.4; color: var(--ink-soft); text-align: center;
}
.bowl-stage__hint[data-copied="true"] { color: var(--olive-dark); font-weight: 700; }
@media (min-width: 1000px) {
  .bowl-stage__count { margin-top: .5rem; text-align: center; }
  .skin-switch { display: flex; width: fit-content; }
}

/* 价格块在碗下面（手机端在碗右边） */
.bowl-stage .builder__out { margin-top: .1rem; padding-top: .35rem; border-top: 0; gap: .5rem; }
.bowl-stage .builder__total { font-size: 1.9rem; }
.bowl-stage .builder__recap { display: none; }
.bowl-stage .eyebrow { font-size: .66rem; }
.bowl-stage .btn { width: 100%; }
.bowl-stage .btn[aria-disabled="true"] {
  opacity: .58; cursor: not-allowed; box-shadow: none; transform: none;
  filter: saturate(.65);
}
.bowl-stage .btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; }
.bowl-stage .btn-row { display: grid; gap: .4rem; grid-template-columns: 1fr 1fr; }
.bowl-stage .btn-row .btn--primary { grid-column: 1 / -1; }
@media (min-width: 1000px) {
  .bowl-stage .builder__out {
    grid-template-columns: 1fr; margin-top: .8rem; padding-top: .9rem;
    border-top: 2px solid var(--olive); gap: .9rem;
  }
  .bowl-stage .builder__total { font-size: 2.4rem; }
  .bowl-stage .builder__recap { display: block; }
}
/* 手机端把整张卡压扁：碗在左，行情在右，按钮横一排 */
@media (max-width: 999px) {
  .bowl-stage__inner { grid-template-columns: 104px minmax(0, 1fr); grid-template-rows: auto auto auto; }
  .bowl-viz { grid-column: 1; grid-row: 1 / span 2; }
  .bowl-stage__count { grid-column: 2; grid-row: 1; margin: 0; font-size: .66rem; line-height: 1.3; }
  .bowl-stage .builder__out { display: contents; }
  .bowl-stage .builder__out > div:first-child { grid-column: 2; grid-row: 2; }
  .bowl-stage .eyebrow { display: none; }
  .bowl-stage .builder__total { font-size: 1.6rem; }
  .bowl-stage .builder__warn { font-size: .74rem; margin-top: .15rem; }
  .bowl-stage .btn-row { grid-column: 1 / -1; grid-row: 3; grid-template-columns: 1fr 1fr; gap: .4rem; }
  .bowl-stage .btn-row .btn--primary { grid-column: 1 / -1; }
  /* 手机端那张吸顶卡要尽量矮：提示语只在复制成功后才占一行 */
  .bowl-stage__hint { grid-column: 1 / -1; grid-row: 4; margin-top: .35rem; font-size: .72rem; }
  .bowl-stage__hint:not([data-copied]) { display: none; }
  .bowl-stage .btn { min-height: 38px; padding: .35rem .8rem; font-size: .82rem; }
}

/* --- 放大的完成态：纯净成品预览 + 保存 / 分享 --------------------------- */
.bowl-finish {
  width: auto; max-width: none; padding: 0; border: 0; background: transparent;
  color: var(--ink); overflow: visible;
}
.bowl-finish::backdrop {
  background: rgba(36, 30, 21, .70);
  backdrop-filter: blur(5px);
}
.bowl-finish__card {
  position: relative; width: min(94vw, 760px); max-height: 94vh; overflow: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(221,214,198,.9); border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 18% 8%, rgba(235,215,159,.28), transparent 33%),
    var(--cream-card);
  box-shadow: var(--shadow-lg);
  animation: bowl-finish-in .24s cubic-bezier(.2,.85,.35,1);
}
@keyframes bowl-finish-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.bowl-finish__close {
  position: absolute; z-index: 3; top: .7rem; right: .7rem;
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255,253,248,.92); color: var(--olive-dark);
  font: 700 1.45rem/1 var(--font-body); cursor: pointer;
}
.bowl-finish__close:hover { background: var(--cream-deep); }
.bowl-finish__card > .eyebrow,
.bowl-finish__card > h3 { padding-right: 3rem; }
.bowl-finish__card > h3 { font-size: clamp(1.45rem, 3vw, 2rem); color: var(--olive-dark); }
.bowl-finish__art {
  width: min(78vw, 70vh, 560px); aspect-ratio: 1; margin: .8rem auto 1rem;
}
.bowl-finish__art > .bowl-viz {
  width: 100%; height: 100%; transform: none !important; grid-row: auto;
}
.bowl-finish__image { width: 100%; height: 100%; object-fit: contain; }
.bowl-finish__art .bowl-band { cursor: default; }
.bowl-finish__art .bowl-band:hover { filter: inherit; z-index: revert-layer !important; }
.bowl-finish__spec {
  max-width: 52ch; margin: 0 auto 1rem; color: var(--ink-soft); text-align: center;
  font-size: .94rem; line-height: 1.5;
}
.bowl-finish__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 0 auto .9rem;
}
.bowl-finish__actions .btn { width: 100%; }
@media (max-width: 520px) {
  .bowl-finish__card { padding: 1.1rem; }
  .bowl-finish__art { width: min(82vw, 390px); }
  .bowl-finish__actions { grid-template-columns: 1fr; }
}

/* 关掉动效时：不飞、不弹，直接出现 */
@media (prefers-reduced-motion: reduce) {
  .bowl-viz.is-hit .bowl-viz__vessel { animation: none; }
}

/* ---------- 11. Gallery -------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.filters button {
  min-height: 42px; padding: .45rem 1.05rem; border-radius: var(--r-pill);
  border: 2px solid var(--line); background: var(--cream-card); color: var(--ink);
  font-family: inherit; font-size: .94rem; font-weight: 700; cursor: pointer;
}
.filters button:hover { border-color: var(--olive-soft); }
.filters button[aria-pressed="true"] { background: var(--olive); border-color: var(--olive); color: #fff; }

.gallery-trail-note {
  display: flex; align-items: center; gap: .5rem; margin: -.6rem 0 2rem;
  color: var(--olive-soft); font-size: .86rem; font-weight: 700;
}
.gallery-trail-note span {
  color: var(--acai); font-size: 1.35rem; animation: gallery-trail-nudge 2.2s ease-in-out infinite;
}
@keyframes gallery-trail-nudge {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px 0; }
}
.gal {
  --snake-cols: 4;
  --snake-col-gap: clamp(1rem, 2.2vw, 1.55rem);
  --snake-row-gap: clamp(2.8rem, 5.5vw, 4.7rem);
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: repeat(var(--snake-cols), minmax(0, 1fr));
  column-gap: var(--snake-col-gap); row-gap: var(--snake-row-gap);
  align-items: stretch;
}
.gal.is-filtering { pointer-events: none; }
.gal figure {
  margin: 0; position: relative; z-index: 1; transform-origin: center;
  transition: opacity .24s ease, scale .28s ease;
}
/* 整条路径由一个 SVG 画（app.js 的 drawTrail），从照片背后穿过。
   原来是每个格子用伪元素画一小段虚线，只跨过列间那点空隙、转弯处还接不上，
   看着是一排断开的短横线，读不出"一条路"。 */
.gal__trail {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
.gal__trail path {
  fill: none; stroke: var(--gold-deep); stroke-width: 3;
  stroke-linecap: round; stroke-dasharray: 9 11; opacity: .85;
}
.gal figure.is-filtering-out { opacity: 0; scale: .9; pointer-events: none; }
.gal figure.is-filtering-in { animation: gallery-pop .42s cubic-bezier(.18,.82,.25,1.12) both; }
.gal button.gal__item {
  position: relative; z-index: 1; display: block; width: 100%; padding: 0; border: 0;
  background: none; cursor: zoom-in;
  transform: translateY(var(--snake-lift, 0px)) rotate(var(--snake-tilt, 0deg));
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.75,.2,1), box-shadow .3s ease;
}
.gal img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.gal button.gal__item:hover {
  transform: translateY(calc(var(--snake-lift, 0px) - 6px)) rotate(0) scale(1.015);
  box-shadow: var(--shadow-lg);
}
.gal button.gal__item:hover img { transform: scale(1.055); }
.gal figcaption {
  position: relative; z-index: 1; font-size: .84rem; color: var(--ink-soft);
  padding: .55rem .25rem 0;
}
.gal [hidden] { display: none; }
@keyframes gallery-pop {
  from { opacity: 0; scale: .9; translate: 0 14px; }
  to { opacity: 1; scale: 1; translate: 0 0; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  background: rgba(30,32,22,.93); padding: clamp(1rem, 4vw, 3rem);
  place-items: center;
}
.lightbox[open], .lightbox.is-open { display: grid; }
.lightbox__panel { width: min(1000px, 92vw); text-align: center; touch-action: pan-y; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox__cap { color: #EEE9DA; text-align: center; margin-top: .9rem; font-size: .95rem; max-width: 60ch; }
.lightbox__count {
  margin: 0 0 .55rem; color: var(--gold); font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .08em;
}
.lightbox__thumbs {
  display: flex; justify-content: center; gap: .42rem; max-width: 100%;
  margin-top: .85rem; overflow-x: auto; padding: .2rem .15rem .45rem;
}
.lightbox__thumbs button {
  flex: 0 0 52px; width: 52px; height: 52px; padding: 0; overflow: hidden;
  border: 2px solid transparent; border-radius: 10px; background: transparent; cursor: pointer; opacity: .55;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.lightbox__thumbs button:hover { opacity: .9; transform: translateY(-2px); }
.lightbox__thumbs button.is-active { opacity: 1; border-color: var(--gold); }
.lightbox__thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.lightbox__swipe { display: none; margin: .35rem 0 0; color: #C9C5B8; font-size: .76rem; }
.lightbox__panel.is-swiping img { transition: transform .18s ease, opacity .18s ease; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.5); background: transparent;
  color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45); background: rgba(0,0,0,.25);
  color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.lightbox__nav--prev { left: max(.5rem, 2vw); }
.lightbox__nav--next { right: max(.5rem, 2vw); }
@media (max-width: 640px) {
  .lightbox { padding: 3.75rem .75rem 1rem; }
  .lightbox img { max-width: 94vw; max-height: 62vh; }
  .lightbox__nav { width: 42px; height: 42px; top: 44%; }
  .lightbox__nav--prev { left: .35rem; }
  .lightbox__nav--next { right: .35rem; }
  .lightbox__thumbs { justify-content: flex-start; }
  .lightbox__swipe { display: block; }
}

/* ---------- 12. Forms ---------------------------------------------------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; font-size: .95rem; }
.field .req { color: #A0522D; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: .75rem .9rem; min-height: 48px;
  border: 2px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); outline: none; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--acai); outline-offset: 1px; }
.field__hint { font-size: .86rem; color: var(--ink-soft); }
.field__err { font-size: .88rem; color: #A03D2A; font-weight: 700; display: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea,
.field[data-invalid="true"] select { border-color: #A03D2A; }
.field[data-invalid="true"] .field__err { display: block; }
.form__row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form__status { font-weight: 700; }
.enquiry-note {
  display: grid; grid-template-columns: 34px 1fr; gap: .7rem; align-items: start;
  padding: .9rem 1rem; border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(255,253,248,.72); color: var(--ink-soft); font-size: .9rem;
}
.enquiry-note > span { font-size: 1.15rem; }
.enquiry-note p { margin: 0; }
.enquiry-note strong { color: var(--olive-dark); }

/* Catering calculator */
.catering-planner {
  background: linear-gradient(150deg, var(--olive-dark), #3A2E46);
  color: #fff; overflow: hidden;
}
.event-planner {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr) minmax(270px, .8fr);
  gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center;
}
.event-planner .eyebrow { color: var(--gold); }
.event-planner h2 { color: #fff; }
.event-planner .lead { color: #E8E5DB; }
.event-planner__note { color: #C8C5B9; font-size: .82rem; }
.event-planner__guest-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.event-planner__guest-head label { font-weight: 800; }
.event-planner__guest-head output {
  color: var(--gold); font-family: var(--font-display); font-size: 2.25rem; line-height: 1;
}
.event-planner input[type="range"] {
  width: 100%; height: 8px; margin: 1rem 0 .25rem; border-radius: var(--r-pill);
  appearance: none; background: linear-gradient(90deg, var(--gold) var(--range-fill, 21%), rgba(255,255,255,.22) var(--range-fill, 21%));
}
.event-planner input[type="range"]::-webkit-slider-thumb {
  width: 26px; height: 26px; border: 4px solid #fff; border-radius: 50%;
  appearance: none; background: var(--acai); box-shadow: 0 3px 8px rgba(0,0,0,.3); cursor: grab;
}
.event-planner input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border: 4px solid #fff; border-radius: 50%;
  background: var(--acai); box-shadow: 0 3px 8px rgba(0,0,0,.3); cursor: grab;
}
.event-planner__ticks { display: flex; justify-content: space-between; color: #BDB9AD; font-size: .73rem; }
.event-planner__formats { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-top: 1.15rem; }
.event-planner__formats button {
  display: grid; grid-template-columns: auto 1fr; gap: .1rem .5rem; text-align: left;
  padding: .7rem; border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); color: #fff; font: inherit; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.event-planner__formats button:hover { transform: translateY(-2px); border-color: var(--gold); }
.event-planner__formats button.is-active { background: var(--gold); color: var(--olive-dark); border-color: var(--gold); }
.event-planner__formats button > span { grid-row: 1 / span 2; font-size: 1.25rem; }
.event-planner__formats small { opacity: .75; font-size: .7rem; }
.event-planner__result {
  padding: 1.35rem; border-radius: var(--r-lg); color: var(--ink);
  background: var(--cream-card); box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.event-planner__result .eyebrow { color: var(--acai); }
.event-planner__big {
  display: block; margin: .15rem 0 .5rem; color: var(--olive-dark);
  font-family: var(--font-display); font-size: clamp(1.65rem, 4vw, 2.35rem); line-height: 1;
}
.event-planner__result > p:not(.eyebrow) { color: var(--ink-soft); font-size: .88rem; }
.event-planner__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 1rem 0;
}
.event-planner__stats span { padding: .65rem; border-radius: var(--r-sm); background: var(--cream-deep); }
.event-planner__stats small, .event-planner__stats strong { display: block; }
.event-planner__stats small { color: var(--ink-soft); font-size: .68rem; }
.event-planner__stats strong { margin-top: .15rem; color: var(--olive-dark); font-size: .92rem; }
.event-planner__result .btn { width: 100%; }
@media (max-width: 980px) {
  .event-planner { grid-template-columns: 1fr 1fr; }
  .event-planner__intro { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .event-planner { grid-template-columns: 1fr; }
  .event-planner__intro { grid-column: auto; }
}

/* ---------- 13. FAQ ------------------------------------------------------ */
/* 原来 11 条问答平铺成一串一模一样的细横条，从头扫到尾没有任何落点。
   现在按主题分成三组，每条做成卡片：有边界、有 hover、展开时高亮。 */
.faq-group + .faq-group { margin-top: clamp(2rem, 4vw, 3rem); }
.faq-group__title {
  font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--olive);
  text-transform: uppercase; letter-spacing: .08em;
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem;
}
/* 标题右侧拉一条细线，把这一组和下一组分开 */
.faq-group__title::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.faq { display: grid; gap: .55rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--cream-card);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.faq details:hover { border-color: var(--olive-soft); box-shadow: var(--shadow-sm); }
.faq details[open] {
  border-color: var(--olive); background: #fff; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: .95rem 1.1rem;
  font-weight: 700; font-size: 1.02rem; line-height: 1.35;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: var(--r-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 3px solid var(--acai); outline-offset: 2px; }
/* 圆形的 +/− 按钮，比一个裸符号更像可以点 */
.faq summary::after {
  content: "+"; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream-deep); color: var(--olive-dark);
  font-family: var(--font-display); font-size: 1.05rem; line-height: 1;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.faq details[open] summary::after {
  content: "–"; background: var(--olive); color: #fff; transform: rotate(180deg);
}
.faq details > div { padding: 0 1.1rem 1.1rem; color: var(--ink-soft); }
.faq details > div > :last-child { margin-bottom: 0; }

/* ---------- 13b. 引文 ------------------------------------------------------ */
/* 给品牌标语、顾客原话这类"值得停一下"的句子用。
   左侧一道金色竖线 + 手写体，和正文明显分开，不用再靠加粗硬撑。 */
.pull-quote {
  margin: 1.6rem 0 0; padding: .2rem 0 .2rem 1.2rem;
  border-left: 4px solid var(--gold);
}
.pull-quote p {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.15; color: var(--olive-dark);
}
/* 深色区块里换成金色 */
.band-olive .pull-quote p, .band-night .pull-quote p, .page-head .pull-quote p {
  color: var(--gold);
}

/* Catering 的四条硬信息。做成卡片而不是一段话 —— 这四个数字是对方决定
   要不要问下去的依据，扫一眼就要看见，不能埋在句子里。 */
.essentials { list-style: none; margin: 0; padding: 0; }
.essentials__item {
  display: grid; gap: .35rem; align-content: start;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.essentials__item .ico[data-icon] {
  width: 26px; height: 26px; color: var(--olive-dark); margin-bottom: .15rem;
}
.essentials__item strong { color: var(--olive-dark); font-size: 1.02rem; line-height: 1.3; }
.essentials__item > span:last-child { color: var(--ink-soft); font-size: .92rem; line-height: 1.45; }

/* Google 评分块。数字很大是有意的 —— 顾客扫一眼页面，先看到的应该是
   「4.6」和「182」，那才是这一页的分量所在。 */
.gscore {
  display: grid; gap: clamp(1rem, 3vw, 1.8rem); align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 2rem);
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (min-width: 620px) { .gscore { grid-template-columns: auto 1fr; } }
.gscore__num {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 4.6rem); line-height: .9;
  color: var(--olive-dark); white-space: nowrap;
}
/* 星号压小、抬高，当上标用，不跟数字抢重量 */
.gscore__num span {
  font-size: .34em; vertical-align: .85em; margin-left: .12em; color: var(--gold-deep);
}
.gscore__lead { margin: 0; color: var(--ink-soft); }
.gscore__lead strong { color: var(--olive-dark); }
.gscore__links { margin: .6rem 0 0; display: flex; flex-wrap: wrap; gap: .1rem .6rem; font-size: .92rem; }

/* 媒体引用 —— 和上面的 .pull-quote 是两个东西，别混用：
   .pull-quote 是手写体的品牌短句（about 页那句 slogan），字号 1.5–2.1rem；
   媒体引用是**一整句话**，套手写体在 2rem 上根本读不下去。
   所以这里用正文字体、中等字号、居中窄栏，并且强制带出处 —— 引用没有出处
   就等于自己写的，那不叫背书。 */
.press-strip { padding-block: clamp(2rem, 5vw, 3.2rem); }
.press-quote { margin: 0 auto; max-width: 44rem; text-align: center; }
.press-quote__eyebrow {
  margin: 0 0 .75rem;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.press-quote blockquote { margin: 0; }
.press-quote blockquote p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  line-height: 1.5; color: var(--olive-dark);
  text-wrap: balance;
}
/* 引号用 CSS 生成，不写进正文 —— 正文里保持纯净的原句，
   复制粘贴出去不会带上装饰引号。 */
.press-quote blockquote p::before { content: '\201C'; }
.press-quote blockquote p::after  { content: '\201D'; }
.press-quote figcaption {
  margin-top: 1.05rem;
  display: flex; flex-wrap: wrap; gap: .1rem .45rem; justify-content: center;
  font-size: .89rem; color: var(--ink-soft);
}
.press-quote figcaption strong { color: var(--olive-dark); }
.press-quote figcaption a { color: inherit; }

/* 卡片版：并排放两条以上时用。居中窄栏是给「全页只有一句」的场景的，
   并排时改成左对齐的卡片，眼睛才有稳定的起读线。 */
.press-quote--card {
  max-width: none; text-align: left;
  padding: clamp(1.1rem, 2.6vw, 1.5rem);
  background: var(--cream-card);
  border: 1px solid var(--line); border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: .85rem;
}
.press-quote--card blockquote { flex: 1; }
.press-quote--card blockquote p { font-size: clamp(1rem, 1.9vw, 1.12rem); }
.press-quote--card figcaption { margin-top: 0; justify-content: flex-start; }

/* ---------- 14. Misc blocks ---------------------------------------------- */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--flip > :first-child { order: 2; } }
.split img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }

/* 首页活动现场：自动、可滑动、无缝循环的照片轮播 */
.event-carousel {
  --event-index: 0;
  position: relative; min-width: 0;
}
.event-carousel__viewport {
  overflow: hidden; border-radius: var(--r-lg);
  background: var(--cream-deep); box-shadow: var(--shadow-lg);
  touch-action: pan-y; cursor: grab;
}
.event-carousel__viewport:active { cursor: grabbing; }
.event-carousel__track {
  display: flex; width: 100%;
  transform: translate3d(calc(var(--event-index) * -100%), 0, 0);
  transition: transform .82s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.event-carousel[data-jumping="true"] .event-carousel__track { transition: none; }
.event-carousel__slide {
  position: relative; flex: 0 0 100%; margin: 0; overflow: hidden;
  background: var(--cream-deep);
}
.split .event-carousel__slide img,
.split .event-carousel__slide img.motion-parallax {
  width: 100%; height: 100%; aspect-ratio: 4 / 3;
  border-radius: 0; box-shadow: none; object-fit: cover;
  transform: scale(1.035); transition: none;
}
.event-carousel__slide.is-active img {
  animation: event-photo-settle 5.3s cubic-bezier(.2,.65,.2,1) both;
}
@keyframes event-photo-settle {
  from { transform: scale(1.075); }
  to { transform: scale(1.025); }
}
.event-carousel__controls {
  position: absolute; z-index: 4; right: clamp(.65rem, 2vw, 1rem); bottom: clamp(.65rem, 2vw, 1rem);
  display: flex; align-items: center; gap: .45rem; min-height: 48px;
  padding: .3rem; border: 1px solid rgba(255,255,255,.24); border-radius: var(--r-pill);
  background: rgba(42,44,31,.78); color: #fff;
  box-shadow: 0 8px 24px rgba(28,30,20,.22);
  backdrop-filter: blur(10px) saturate(130%);
}
.event-carousel__arrow {
  display: grid; place-items: center; width: 40px; height: 40px; padding: 0;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  font: 700 1.05rem/1 var(--font-body); cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.event-carousel__arrow:hover { background: var(--gold); color: var(--olive-dark); transform: scale(1.06); }
.event-carousel__arrow:active { transform: scale(.96); }
.event-carousel__dots { display: flex; align-items: center; gap: .35rem; padding-inline: .2rem; }
.event-carousel__dots button {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer;
  transition: width .28s ease, background .28s ease;
}
.event-carousel__dots button.is-active { width: 20px; border-radius: var(--r-pill); background: var(--gold); }
.event-carousel__count {
  min-width: 3.2em; color: rgba(255,255,255,.82);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-align: center;
}
@media (max-width: 480px) {
  .event-carousel__controls { right: .55rem; bottom: .55rem; min-height: 44px; gap: .28rem; }
  .event-carousel__arrow { width: 36px; height: 36px; }
  .event-carousel__dots { gap: .28rem; }
  .event-carousel__count { display: none; }
}

.map-frame {
  width: 100%; aspect-ratio: 16 / 10; border: 0;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); background: var(--cream-deep);
}

/* 地图门面 —— 点击之前不加载 Google。行为见 app.js §9b，素材见 tools-make-map.py。
   宽高比必须和 .map-frame 一致，否则点击换成 iframe 的瞬间整段会跳。 */
.map-card {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  background: var(--cream-deep);
}
.map-card__img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* 门店在图的正正中心 —— tools-make-map.py 就是按门店坐标居中裁的，
   所以图钉钉死在 50%/50%，任何尺寸下都不会偏。
   往上偏移 30px 是为了让**针尖**落在中心点，而不是图钉的方框中心。 */
.map-card__pin.ico[data-icon] {
  position: absolute; left: 50%; top: 50%;
  width: 42px; height: 42px; margin: -37px 0 0 -21px;
  color: var(--olive-dark);
  /* 地图底纹很碎，图钉直接压上去边缘会被吃掉。
     一圈奶油色的外发光把它从底纹里剥出来，比加描边干净。 */
  filter: drop-shadow(0 0 3px var(--cream-card))
          drop-shadow(0 0 6px var(--cream-card))
          drop-shadow(0 3px 5px rgba(43, 46, 32, .3));
}
/* 整块图都可点，但只画一颗药丸做提示 —— 让人不用瞄准 */
.map-card__btn {
  position: absolute; inset: 0; width: 100%;
  display: grid; place-items: end center; padding: 0 0 2.2rem;
  border: 0; background: transparent; cursor: pointer; font: inherit;
}
.map-card__btn > span {
  padding: .5rem 1.05rem; border-radius: 999px;
  background: var(--cream-card); color: var(--olive-dark);
  border: 1px solid var(--line);
  font-size: .87rem; font-weight: 600;
  box-shadow: 0 4px 14px rgba(43, 46, 32, .18);
  transition: background .18s ease, transform .18s ease;
}
.map-card__btn:hover > span { background: var(--gold); transform: translateY(-1px); }
.map-card__btn:focus-visible > span { outline: 3px solid var(--olive-dark); outline-offset: 2px; }
/* ODbL 的署名要求 —— 这行不能删。压在图上所以要垫一层底色保证对比度。 */
.map-card__credit {
  position: absolute; right: .45rem; bottom: .4rem; margin: 0;
  padding: .12rem .42rem; border-radius: 5px;
  background: rgba(255, 253, 248, .85);
  font-size: .66rem; line-height: 1.4; color: var(--ink-soft);
}
.map-card__credit a { color: inherit; }
.video-frame {
  width: 100%; aspect-ratio: 16 / 9; border: 0;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); background: #000;
}

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.info-list li { display: grid; grid-template-columns: 26px 1fr; gap: .75rem; align-items: start; }
.info-list .ico { font-size: 1.1rem; line-height: 1.45; }

.pill-note {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--f-green); color: #2F4A22; border-radius: var(--r-pill);
  padding: .35rem .9rem; font-size: .88rem; font-weight: 700;
}

.press { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.press__item {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.15rem 1.2rem;
}
.press__item h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.press__item p { font-size: .94rem; color: var(--ink-soft); margin-bottom: .7rem; }

.todo {
  border: 2px dashed #C0603F; background: #FCF3EE; color: #7A3A26;
  border-radius: var(--r-md); padding: 1rem 1.15rem; font-size: .95rem;
}
.todo strong { color: #8F3B22; }
.todo > :last-child { margin-bottom: 0; }

/* ---------- 15. Order bar (mobile) --------------------------------------- */
.orderbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: .5rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(247,243,234,.97); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 18px rgba(43,46,32,.10);
}
.orderbar .btn { flex: 1; font-size: .93rem; padding-inline: .6rem; }
@media (max-width: 860px) { .orderbar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- 16. Footer --------------------------------------------------- */
.site-footer { background: var(--olive-dark); color: #E7E4D4; padding-block: clamp(2.5rem, 5vw, 3.75rem) 1.5rem; }
.site-footer h2, .site-footer h3 { color: var(--gold); font-size: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
/* 同样排除 .btn：按钮的文字色是按对比度定好的，不能被页脚的链接色覆盖 */
.site-footer a:not(.btn) { color: #E7E4D4; text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--gold); text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
/* 标志是深绿字，直接放在墨绿页脚上会看不见 —— 垫一块奶油色底 */
/* 完整锁定单独使用（404 页）。page-head 是深色底，所以要么反白、要么垫浅底。
   这里选反白：404 只有一个品牌元素，垫个奶油方块反而像贴了张贴纸。
   brightness(0) invert(1) 只改颜色不动 alpha，排线仍然是排线。 */
.brand-lockup {
  display: block; margin: 0 auto 1.1rem; height: clamp(112px, 16vw, 168px); width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(20, 22, 12, .5));
}

/* 页脚有竖向空间，所以这里用**完整的**竖式锁定，图形和字标都在。
   奶油底卡片是必须的：logo 是深绿的，直接压在深色页脚上几乎看不见。 */
.footer-brand img {
  height: 118px; width: auto; margin-bottom: .9rem;
  background: var(--cream); padding: .7rem .9rem; border-radius: var(--r-md);
}
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #E7E4D4;
}
.social a:hover { background: var(--gold); color: var(--olive-dark); }
.social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .87rem; color: #BDBBA9;
}

/* ---------- 17. Utils ---------------------------------------------------- */
.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;
}
[hidden] { display: none !important; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
/* 一排缩略图：统一裁成同样比例，避免高高低低 */
.img-tile { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-md); width: 100%; }

/* ---------- 18. 全站动效与互动 ------------------------------------------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 120; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--acai));
  transform: scaleX(0); transform-origin: left center;
  pointer-events: none; will-change: transform;
}

/* Reveal and pointer tilt share one transform so a card can do both without
   one effect cancelling the other. JavaScript only updates these variables. */
.motion-reveal,
.motion-tilt {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --motion-lift: 0px;
  transform:
    perspective(900px)
    translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--motion-lift)), 0)
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    scale(var(--reveal-scale));
}
.motion-ready .motion-reveal {
  --reveal-y: 16px;
  --reveal-scale: .992;
  opacity: 0;
  transition:
    opacity .42s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform .5s cubic-bezier(.2,.75,.18,1) var(--reveal-delay, 0ms),
    box-shadow .22s ease;
  will-change: transform, opacity;
}
.motion-ready .motion-reveal.motion-from-left { --reveal-x: -30px; }
.motion-ready .motion-reveal.motion-from-right { --reveal-x: 30px; }
.motion-ready .motion-reveal.is-visible {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  will-change: auto;
}
@media (max-width: 700px) {
  .motion-ready .motion-reveal.motion-from-left,
  .motion-ready .motion-reveal.motion-from-right { --reveal-x: 0px; }
}

.motion-tilt {
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .22s ease;
  will-change: transform;
}
.motion-tilt:hover {
  --motion-lift: -5px;
  box-shadow: var(--shadow-md);
}
.motion-tilt.card--link:hover {
  transform:
    perspective(900px)
    translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--motion-lift)), 0)
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    scale(var(--reveal-scale));
}
.motion-tilt img { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.motion-tilt:hover img { transform: scale(1.035); }

.motion-parallax {
  /* 不要 scale。那 3.5% 的余量是给"图片装在固定裁切框里"用的 —— 平移时
     用它盖住框边露出来的缝。但站内 .split 里的图全是裸 <img>，没有裁切容器
     （.split > picture 那条规则一个元素都匹配不上），图片自己就是框，
     平移时背后没有东西会露出来。加了 scale 只会让图比所在栏宽 3.5%、
     溢出去和文字栏对不齐（catering 头部最明显：栏宽 516，图 534）。 */
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform .12s linear;
  will-change: transform;
}
/* 注意：站内 .split 里目前没有 <picture>，这条规则实际匹配不到元素。
   要用固定裁切框（比如做真正的视差 overscan）时，把图包进 <picture> 再启用。 */
.split > picture { overflow: hidden; border-radius: var(--r-lg); }

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: -45% auto -45% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg) translateX(-180%);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn:hover::before { transform: skewX(-18deg) translateX(470%); }

.item {
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.item:hover {
  transform: translateX(5px);
  background: rgba(255,253,248,.72);
  box-shadow: -4px 0 0 var(--gold);
}
.faq details { transition: background-color .2s ease, padding .2s ease; }
.faq details:hover, .faq details[open] { background: rgba(255,253,248,.7); }
.faq summary::after { transition: transform .25s ease, color .2s ease; }
.faq details[open] summary::after { transform: rotate(180deg); color: var(--acai); }

@keyframes ola-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(67,160,71,.18); }
  50% { box-shadow: 0 0 0 7px rgba(67,160,71,0); }
}
@keyframes ola-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
.motion-ready .status[data-state="open"] .status__dot {
  animation: ola-pulse 2.2s ease-in-out infinite;
}
.motion-ready .leafy::before { animation: ola-drift 7s ease-in-out infinite; }
.motion-ready .leafy::after { animation: ola-drift 8.5s ease-in-out -2.5s infinite reverse; }

@media print {
  .site-header, .orderbar, .menu-nav, .site-footer, .filters, .btn, .scroll-progress { display: none !important; }
  body { background: #fff; }
  .item { break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  .signature-bowl-card__art img, .ingredient-marquee__track,
  .gal figure.is-filtering-in, .gallery-trail-note span,
  .item--visual .item__media img { animation: none !important; }
  .motion-ready .signature-bowl-card { opacity: 1; translate: none; }
  .gal figure { transition: none; }
  .event-carousel__track { transition: none; }
  .event-carousel__slide.is-active img { animation: none !important; transform: none; }
}

/* >>> 图标：由 tools-make-icons.py 生成，不要手改 <<< */
/* 用法：<span class="ico" data-icon="bowl" aria-hidden="true"></span>
   元素本身是一块 currentColor 的色块，mask 把 SVG 的 alpha 抠成形状，
   所以图标恒等于当前文字色 —— 深色底、浅色底、hover 全自动跟随。 */
.ico[data-icon],
.proof__icon[data-icon]::before,
.feature__icon[data-icon]::before {
  background-color: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
          mask: var(--ico) center / contain no-repeat;
}
/* 独立使用（列表项前面的小图标）：跟着行高走，不把行撑高。
   父级用 align-items:baseline 时，空的 inline-block 基线在底边，
   所以要用 vertical-align 往回拉，让图标和第一行文字对齐。 */
.ico[data-icon] {
  display: inline-block; flex: none;
  width: 1.15em; height: 1.15em; vertical-align: -.2em;
}
/* 金色圆座里的图标 —— 关键：**不能**直接给 .proof__icon / .feature__icon
   设宽高，它们本身就是那个圆座，改了圆就没了。图标画在 ::before 上，
   圆座已经是 grid + place-items:center，::before 自动居中。 */
.proof__icon[data-icon]::before,
.feature__icon[data-icon]::before { content: ''; display: block; }
.proof__icon[data-icon]::before { width: 19px; height: 19px; }
.feature__icon[data-icon]::before { width: 25px; height: 25px; }
@media (max-width: 700px) {
  .proof__icon[data-icon]::before { width: 17px; height: 17px; }
}
/* 集点区块是深底，图标靠 currentColor 自动变浅色，不用出第二套素材 */
.loyalty__facts .ico[data-icon] { width: 1.15em; height: 1.15em; }
.enquiry-note .ico[data-icon] { width: 1.35em; height: 1.35em; vertical-align: -.28em; }

[data-icon="bowl"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M2.8 11.6h18.4'/><path d='M4.6 11.6a7.4 7.4 0 0 0 14.8 0'/><path d='M7 11.6a2.6 2.6 0 0 1 5.2 0'/><path d='M12.4 11.6a2.2 2.2 0 0 1 4.4 0'/><circle cx='14.6' cy='6.4' r='1.5'/><path d='M14.6 4.9V3.4'/></svg>"); }  /* 菜单 / 现打现做 / 集点换碗 */
[data-icon="build"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.6h4.2M13.4 8.6H20M4 15.4h6.6M15.8 15.4H20'/><circle cx='10.8' cy='8.6' r='2.5'/><circle cx='13.2' cy='15.4' r='2.5'/></svg>"); }  /* 自己配碗 */
[data-icon="pin"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21.2c4.6-5.2 6.9-8.9 6.9-11.3a6.9 6.9 0 1 0-13.8 0c0 2.4 2.3 6.1 6.9 11.3z'/><circle cx='12' cy='9.8' r='2.5'/></svg>"); }  /* 地址 / 找到我们 */
[data-icon="tent"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5.4 3 19.8M12 5.4l9 14.4'/><path d='M2.2 19.8h19.6'/><path d='M12 5.4 9.9 2.9M12 5.4l2.1-2.5'/><path d='M12 19.8c-1.5-2.9-2.1-5-2.1-6.6 0-1.2.9-2 2.1-2s2.1.8 2.1 2c0 1.6-.6 3.7-2.1 6.6z'/></svg>"); }  /* 现场 açaí bar / 活动餐饮 */
[data-icon="berry"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='8.9' cy='15' r='3.8'/><circle cx='15.7' cy='13.8' r='3.1'/><path d='M9 11.2C9.2 8.2 10.8 6.2 13.6 5.3'/><path d='M13.6 5.3c1-1.5 2.6-2.2 4.6-2-.2 2-1 3.5-2.5 4.5-1.2-.5-1.9-1.4-2.1-2.5z'/></svg>"); }  /* 真果泥 / 巴西莓 */
[data-icon="knife"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M20.8 3.2c-5.9.8-10.4 3.7-12.9 8.3l4.6 4.6c4.6-2.5 7.5-7 8.3-12.9z'/><path d='M9.4 12.9 4.5 17.8a2 2 0 0 0 0 2.8 2 2 0 0 0 2.8 0l4.9-4.9'/></svg>"); }  /* 现切 */
[data-icon="coin"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.3'/><path d='M12 7.3v9.4'/><path d='M14.5 9.4c-.6-.8-1.5-1.2-2.5-1.2-1.6 0-2.7.9-2.7 2.1s1.1 1.9 2.7 2.1 2.7.9 2.7 2.1-1.1 2.1-2.7 2.1c-1 0-1.9-.4-2.5-1.2'/></svg>"); }  /* 价格实在 */
[data-icon="house"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M3.4 10.7 12 3.7l8.6 7'/><path d='M5.5 9.1v10.8h13v-10.8'/><path d='M9.8 19.9v-6.1h4.4v6.1'/></svg>"); }  /* 街坊小店 */
[data-icon="cup"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M5.6 7.2h12.8'/><path d='M6.7 7.2h10.6l-1 12.1a1.7 1.7 0 0 1-1.7 1.5H9.4a1.7 1.7 0 0 1-1.7-1.5z'/><path d='M14.3 3.1 12.9 7.2'/><path d='M8.2 12.2h7.6'/></svg>"); }  /* 预打包杯装 */
[data-icon="building"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M3 20.6h18'/><path d='M4.8 20.6V5.3a1.3 1.3 0 0 1 1.3-1.3h8a1.3 1.3 0 0 1 1.3 1.3v15.3'/><path d='M15.4 9.6h2.7a1.3 1.3 0 0 1 1.3 1.3v9.7'/><path d='M8 7.8h1.4M11.6 7.8H13M8 11.6h1.4M11.6 11.6H13M8 15.4h1.4M11.6 15.4H13'/></svg>"); }  /* 企业家庭日 */
[data-icon="grad"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M2.6 9.3 12 4.7l9.4 4.6-9.4 4.6z'/><path d='M6.7 11.3v5.1c0 1.6 2.4 2.8 5.3 2.8s5.3-1.2 5.3-2.8v-5.1'/><path d='M21.4 9.3v5.2'/></svg>"); }  /* 学校活动 */
[data-icon="run"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='14.7' cy='4.6' r='2.1'/><path d='M8.6 20.6 11.4 16l-2.3-3.1 1.4-4.5 3.6-1.5 2.6 2.4 2.9.9'/><path d='M11.4 16l3.8 1.3.9 3.6'/><path d='M9.6 10.4 5.8 11.9'/></svg>"); }  /* 跑步 / 体育活动 */
[data-icon="cake"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M4.4 20.6h15.2'/><path d='M5.6 20.6v-6.2a1.7 1.7 0 0 1 1.7-1.7h9.4a1.7 1.7 0 0 1 1.7 1.7v6.2'/><path d='M5.6 16.6c1.4 0 1.4 1.3 2.8 1.3s1.4-1.3 2.8-1.3 1.4 1.3 2.8 1.3 1.4-1.3 2.8-1.3'/><path d='M12 12.7V9.6'/><circle cx='12' cy='7.9' r='1.4'/></svg>"); }  /* 生日会 / 派对 */
[data-icon="chat"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M20.4 12.3c0 3.9-3.8 7.1-8.4 7.1-1.1 0-2.1-.2-3.1-.5l-5 1.8 1.5-3.8c-1.1-1.2-1.8-2.8-1.8-4.6 0-3.9 3.8-7.1 8.4-7.1s8.4 3.2 8.4 7.1z'/></svg>"); }  /* 留言 / 社交 */
[data-icon="price"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M11.4 3.3H19a1.7 1.7 0 0 1 1.7 1.7v7.6a1.7 1.7 0 0 1-.5 1.2l-6.5 6.5a1.7 1.7 0 0 1-2.4 0l-7.6-7.6a1.7 1.7 0 0 1 0-2.4l6.5-6.5a1.7 1.7 0 0 1 1.2-.5z'/><circle cx='16.1' cy='7.9' r='1.5'/></svg>"); }  /* $6.50 起 */
[data-icon="clock"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.3'/><path d='M12 6.9V12l3.6 2.2'/></svg>"); }  /* 营业时间 */
[data-icon="confetti"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M3.3 20.7 8.9 9.3l5.8 5.8z'/><path d='M14.6 8.4 16.3 6.7M17.3 12.1l2.3-.6M12.4 5.2l-.6-2.3M18.2 8.2l2.1-2.1'/></svg>"); }  /* 各类活动 */
[data-icon="note"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='2.7' y='6.4' width='18.6' height='11.2' rx='1.8'/><circle cx='12' cy='12' r='2.5'/><path d='M6 12h.01M18 12h.01'/></svg>"); }  /* 每消费 $10 盖一章 */
[data-icon="calendar"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='3.4' y='5.5' width='17.2' height='15.1' rx='2'/><path d='M3.4 10.1h17.2M8.4 3.4v4.2M15.6 3.4v4.2'/></svg>"); }  /* 有效期 12 个月 */
[data-icon="mobile"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='6.4' y='2.7' width='11.2' height='18.6' rx='2.4'/><path d='M10.6 5.7h2.8'/><circle cx='12' cy='18' r='1' fill='%23000'/></svg>"); }  /* Apple Wallet */
[data-icon="train"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='3.4' width='14' height='13.2' rx='3'/><path d='M5 10.6h14'/><circle cx='8.8' cy='13.6' r='1.1' fill='%23000'/><circle cx='15.2' cy='13.6' r='1.1' fill='%23000'/><path d='M8.2 16.6 5.8 20.6M15.8 16.6l2.4 4M8.6 20.6h6.8'/></svg>"); }  /* Kovan 地铁站 */
[data-icon="car"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M2.9 15.3l1.6-5a2 2 0 0 1 1.9-1.4h11.2a2 2 0 0 1 1.9 1.4l1.6 5v3.3a1 1 0 0 1-1 1h-1.5a1 1 0 0 1-1-1v-1H6.4v1a1 1 0 0 1-1 1H3.9a1 1 0 0 1-1-1z'/><path d='M4.6 12.4h14.8'/><circle cx='7' cy='15.3' r='1.2' fill='%23000'/><circle cx='17' cy='15.3' r='1.2' fill='%23000'/></svg>"); }  /* 开车 / 停车 */
[data-icon="flag"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M5.6 21.2V3.4'/><path d='M5.6 4.7h11.9l-2.4 4 2.4 4H5.6z'/></svg>"); }  /* 公共假日 */
[data-icon="card"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='2.7' y='5.4' width='18.6' height='13.2' rx='2.2'/><path d='M2.7 9.9h18.6'/><path d='M6.3 14.6h3.6'/></svg>"); }  /* 支付方式 */
[data-icon="scooter"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='5.8' cy='16.8' r='3.2'/><circle cx='18.2' cy='16.8' r='3.2'/><path d='M9 16.8h6'/><path d='M15.2 16.8 12.4 7.4H9.6'/><path d='M12.4 7.4h4l1.8 9.4'/><path d='M11.2 4.6h3.4'/><path d='M12.9 4.6v2.8'/></svg>"); }  /* 外送 */
[data-icon="phone"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M20.6 16.9v2.8a1.9 1.9 0 0 1-2.1 1.9 18.6 18.6 0 0 1-8.1-2.9 18.3 18.3 0 0 1-5.6-5.6A18.6 18.6 0 0 1 1.9 4.9 1.9 1.9 0 0 1 3.8 2.8h2.8a1.9 1.9 0 0 1 1.9 1.6c.12.9.34 1.8.65 2.6a1.9 1.9 0 0 1-.43 2L7.5 10.2a15 15 0 0 0 5.6 5.6l1.24-1.24a1.9 1.9 0 0 1 2-.43c.85.31 1.74.53 2.64.65a1.9 1.9 0 0 1 1.62 1.92z'/></svg>"); }  /* 电话 */
[data-icon="mail"] { --ico: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='2.7' y='5' width='18.6' height='14' rx='2'/><path d='M3.6 6.7 12 13l8.4-6.3'/></svg>"); }  /* 邮箱 */
/* <<< 图标生成区结束 >>> */
