/* =========================================================================
   Jin Mai Bakery 金麦面包 — concept landing (cold-pitch v2)
   Warm artisanal system · flour / wheat / kraft
   ========================================================================= */

:root{
  /* paper & ink — warm, low chroma */
  --paper:      oklch(0.973 0.013 83);   /* flour cream base            */
  --paper-2:    oklch(0.946 0.020 80);   /* slightly deeper alt section */
  --kraft:      oklch(0.862 0.038 73);   /* kraft band                  */
  --ink:        oklch(0.255 0.024 58);   /* warm near-black brown       */
  --ink-soft:   oklch(0.430 0.030 56);   /* secondary text              */
  --ink-faint:  oklch(0.255 0.024 58 / 0.16);

  /* accents — gold wheat + crust, one terracotta */
  --gold:       oklch(0.745 0.118 74);   /* wheat gold (金麦)           */
  --gold-deep:  oklch(0.620 0.110 66);   /* deeper gold for text/edges  */
  --crust:      oklch(0.470 0.078 52);   /* crust brown                 */
  --terra:      oklch(0.560 0.130 38);   /* terracotta — CTA only       */
  --terra-deep: oklch(0.470 0.120 36);

  /* type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sc:    "Noto Serif SC", var(--serif);
  --tc:    "Noto Serif TC", var(--serif);

  /* metrics */
  --col: 540px;          /* content column cap */
  --pad: clamp(20px, 6vw, 40px);
  --hair: 1px;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain overlay */
body::before{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(oklch(0.47 0.078 52 / 0.05) 0.6px, transparent 0.7px);
  background-size: 4px 4px;
}

/* ---- type primitives -------------------------------------------------- */
.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0;
}
.label{
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
h1,h2,h3{ font-weight: 400; margin: 0; line-height: 1.04; letter-spacing: -0.01em; }
.cjk{ font-family: var(--sc); font-weight: 500; }
.cjk-tc{ font-family: var(--tc); font-weight: 500; }

p{ margin: 0 0 1em; text-wrap: pretty; }
a{ color: inherit; }

/* ---- layout ----------------------------------------------------------- */
.wrap{
  width: 100%;
  max-width: var(--col);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 2;
}
section{ position: relative; z-index: 2; }

/* =========================================================================
   FIXED TOP BAR
   ========================================================================= */
.topbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  background: oklch(0.973 0.013 83 / 0.72);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: var(--hair) solid transparent;
  transform: translateY(-110%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s;
}
.topbar.show{ transform: translateY(0); border-bottom-color: var(--ink-faint); }
.topbar__brand{ display: flex; align-items: baseline; gap: 8px; }
.topbar__brand .mk{ font-family: var(--sc); font-weight: 600; font-size: 18px; color: var(--ink); }
.topbar__brand .en{ font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.topbar__call{
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; color: var(--terra-deep);
  border: var(--hair) solid var(--terra); border-radius: 999px;
  padding: 0 16px; min-height: 44px; white-space: nowrap;
  display: inline-flex; align-items: center;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 90px 40px;
  overflow: hidden;
}
.hero__eyebrow{ display:flex; align-items:center; gap:10px; margin-bottom: 26px; }
.hero__eyebrow .dot{ width:5px; height:5px; border-radius:50%; background: var(--gold); }
.hero__mark{
  font-family: var(--sc); font-weight: 600;
  font-size: clamp(96px, 38vw, 200px);
  line-height: 0.86; color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
}
.hero__mark .g1{ color: var(--gold-deep); }
.hero__lede{
  font-family: var(--serif);
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.22; letter-spacing: -0.015em;
  margin: 26px 0 0; max-width: 15ch;
}
.hero__lede em{ font-style: italic; color: var(--crust); }
.hero__sub{
  margin: 28px 0 0; max-width: 34ch;
  color: var(--ink-soft); font-size: 17px;
}
.hero__cue{
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero__cue .line{ display:block; width: 34px; height: var(--hair); background: var(--ink-soft); transform-origin: left; animation: cueline 2.6s ease-in-out infinite; }
@keyframes cueline{ 0%,100%{ transform: scaleX(.4); opacity:.5; } 50%{ transform: scaleX(1); opacity:1; } }

/* a single static wheat stalk floats in the hero corner */
.hero__stalk{
  position: absolute; top: 8%; right: -4%;
  width: clamp(120px, 34vw, 230px);
  opacity: .9; z-index: 1; pointer-events: none;
  animation: sway 7s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes sway{ 0%,100%{ transform: rotate(-2.2deg); } 50%{ transform: rotate(2.2deg); } }

/* =========================================================================
   ALMANAC — sticky scroll ribbon
   ========================================================================= */
.almanac{ position: relative; height: 360vh; background: var(--ink); color: var(--paper); }
.almanac__sticky{
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
}
.almanac__head{
  padding: clamp(24px,7vh,54px) var(--pad) 0;
  text-align: center; z-index: 3;
}
.almanac__head .eyebrow{ color: var(--gold); }
.almanac__head h2{
  font-size: clamp(28px, 8vw, 46px); margin-top: 10px;
  color: var(--paper);
}
.almanac__head h2 em{ font-style: italic; color: var(--gold); }

.almanac__stagewrap{ position: relative; flex: 1; min-height: 0; }
.stage{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 0 var(--pad);
  opacity: 0; will-change: opacity, transform;
}
.stage svg{ width: min(78vw, 360px); height: auto; overflow: visible; }
.stage__cap{ text-align: center; }
.stage__cap .zh{ font-family: var(--sc); font-weight: 500; font-size: 30px; color: var(--paper); letter-spacing: .08em; }
.stage__cap .en{ display:block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* progress ribbon */
.ribbon{
  flex: 0 0 auto;
  padding: 0 var(--pad) clamp(26px,5vh,46px);
  z-index: 3;
}
.ribbon__track{ position: relative; height: 2px; background: oklch(0.973 0.013 83 / 0.18); border-radius: 2px; }
.ribbon__fill{ position:absolute; left:0; top:0; height:100%; width:0; background: var(--gold); border-radius:2px; transition: width .12s linear; }
.ribbon__nodes{ display: grid; grid-template-columns: repeat(5,1fr); margin-top: 16px; }
.rnode{ text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rnode .zh{ font-family: var(--sc); font-size: 15px; color: oklch(0.973 0.013 83 / 0.45); transition: color .25s; }
.rnode .en{ font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: oklch(0.973 0.013 83 / 0.3); transition: color .25s; }
.rnode.on .zh{ color: var(--gold); }
.rnode.on .en{ color: var(--paper); }

/* idle motion hooks (added by JS to active stage) */
.stage.live .sway-el{ animation: gsway 5.5s ease-in-out infinite; transform-origin: bottom center; }
.stage.live .drift{ animation: drift 4s ease-in-out infinite; }
.stage.live .steam{ animation: steam 3.4s ease-in-out infinite; }
.stage.live .steam.d2{ animation-delay: .7s; }
.stage.live .steam.d3{ animation-delay: 1.4s; }
@keyframes gsway{ 0%,100%{ transform: rotate(-1.6deg);} 50%{ transform: rotate(1.6deg);} }
@keyframes drift{ 0%,100%{ transform: translateY(0); opacity:.55;} 50%{ transform: translateY(-5px); opacity:1;} }
@keyframes steam{
  0%{ opacity:0; transform: translateY(4px) scaleX(1);}
  30%{ opacity:.7;}
  100%{ opacity:0; transform: translateY(-26px) scaleX(1.25);}
}

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
.section{ padding-block: clamp(70px, 13vh, 130px); }
.section--alt{ background: var(--paper-2); }
.section__kicker{ display:flex; align-items:center; gap:12px; margin-bottom: 28px; }
.section__kicker .num{ font-family: var(--mono); font-size: 11px; color: var(--gold-deep); letter-spacing:.1em; }
.section__kicker .rule{ flex:1; height: var(--hair); background: var(--ink-faint); }
.section h2{ font-size: clamp(32px, 9vw, 54px); }
.section h2 em{ font-style: italic; }

/* reveal */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity: 1; transform: none; }

/* =========================================================================
   THE WHEAT — editorial
   ========================================================================= */
.wheat__title{ margin-bottom: 30px; }
.wheat__title .zh{ display:block; font-family: var(--sc); font-size: 18px; color: var(--gold-deep); letter-spacing:.1em; margin-bottom: 10px; }
.wheat__body{ font-size: 19px; color: var(--ink); }
.wheat__body p:first-of-type::first-letter{
  font-family: var(--sc); font-weight: 600;
  float: left; font-size: 64px; line-height: .82;
  padding: 6px 12px 0 0; color: var(--gold-deep);
}
.wheat__pull{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 6.5vw, 34px); line-height: 1.24;
  color: var(--crust); margin: 40px 0; padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* generic placeholder slot (OWNER TO SUPPLY) */
.slot{
  position: relative; width: 100%;
  border: 1.5px dashed oklch(0.470 0.078 52 / 0.5);
  border-radius: 3px;
  background:
    repeating-linear-gradient(45deg,
      oklch(0.470 0.078 52 / 0.05) 0 8px,
      transparent 8px 16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; color: var(--crust);
  padding: 24px;
}
.slot .tag{ font-family: var(--mono); font-size: 10px; letter-spacing:.16em; text-transform: uppercase; color: var(--gold-deep); }
.slot .desc{ font-family: var(--mono); font-size: 12px; color: var(--ink-soft); font-style: italic; }
.wheat__slot{ aspect-ratio: 4 / 3; margin-top: 36px; }

/* =========================================================================
   THE BUNS — atlas grid
   ========================================================================= */
.buns__intro{ color: var(--ink-soft); max-width: 38ch; margin-bottom: 36px; }
.atlas{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bun{
  position: relative; aspect-ratio: 3 / 3.4;
  border: 1.5px dashed oklch(0.470 0.078 52 / 0.45);
  border-radius: 4px;
  background:
    repeating-linear-gradient(45deg,
      oklch(0.470 0.078 52 / 0.045) 0 7px,
      transparent 7px 14px);
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .3s, background .3s, transform .3s;
}
.bun:hover{ border-color: var(--gold); transform: translateY(-3px); }
.bun__idx{ font-family: var(--mono); font-size: 10px; color: var(--gold-deep); letter-spacing:.1em; }
.bun__name{ }
.bun__name .zh{ display:block; font-family: var(--tc); font-weight: 500; font-size: 26px; color: var(--ink); line-height: 1.05; }
.bun__name .en{ display:block; font-family: var(--mono); font-size: 10.5px; letter-spacing:.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 7px; }
.bun__supply{ font-family: var(--mono); font-size: 9.5px; letter-spacing:.1em; text-transform: uppercase; color: var(--crust); font-style: italic; opacity:.8; }

/* =========================================================================
   THE RHYTHM
   ========================================================================= */
.rhythm{ background: var(--kraft); color: var(--ink); }
.rhythm .section__kicker .num{ color: var(--crust); }
.rhythm .section__kicker .rule{ background: oklch(0.255 0.024 58 / 0.2); }
.rhythm h2 em{ color: var(--crust); }
.cycle{ margin-top: 44px; display: flex; flex-direction: column; }
.beat{
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 22px 0; border-top: var(--hair) solid oklch(0.255 0.024 58 / 0.18);
}
.beat:last-child{ border-bottom: var(--hair) solid oklch(0.255 0.024 58 / 0.18); }
.beat__mark{ font-family: var(--sc); font-size: 30px; font-weight: 500; color: var(--crust); line-height: 1; min-width: 1.4em; }
.beat__t{ font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); }
.beat__d{ font-size: 16px; color: var(--ink-soft); margin-top: 4px; }
.rhythm__note{ margin-top: 34px; font-family: var(--mono); font-size: 11px; letter-spacing:.06em; color: var(--crust); font-style: italic; }

/* =========================================================================
   VISIT
   ========================================================================= */
.visit{ background: var(--ink); color: var(--paper); }
.visit .section__kicker .num{ color: var(--gold); }
.visit .section__kicker .rule{ background: oklch(0.973 0.013 83 / 0.2); }
.visit h2{ color: var(--paper); }
.visit h2 em{ color: var(--gold); }
.rating{ display:flex; align-items:center; gap:12px; margin: 26px 0 38px; }
.rating .stars{ color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.rating .val{ font-family: var(--serif); font-size: 22px; }
.rating .src{ font-family: var(--mono); font-size: 11px; letter-spacing:.08em; color: oklch(0.973 0.013 83 / 0.55); text-transform: uppercase; }

.vcard{ border: var(--hair) solid oklch(0.973 0.013 83 / 0.2); border-radius: 4px; padding: 24px; margin-bottom: 14px; }
.vcard .label{ color: var(--gold); margin-bottom: 10px; display:block; }
.vcard .big{ font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--paper); }
.vcard a.big{ text-decoration: none; }
.vcard .muted{ font-family: var(--mono); font-size: 11px; color: oklch(0.973 0.013 83 / 0.5); font-style: italic; margin-top: 8px; }

.cta{
  display:flex; flex-direction: column; gap: 12px; margin-top: 30px;
}
.btn{
  display:flex; align-items:center; justify-content:center; gap: 10px;
  padding: 18px 22px; border-radius: 999px; text-decoration: none;
  font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s;
}
.btn--primary{ background: var(--terra); color: var(--paper); }
.btn--primary:hover{ background: var(--terra-deep); transform: translateY(-2px); }
.btn--ghost{ border: var(--hair) solid oklch(0.973 0.013 83 / 0.35); color: var(--paper); }
.btn--ghost:hover{ border-color: var(--gold); color: var(--gold); }
.btn .ph{ font-family: var(--serif); font-size: 16px; letter-spacing: 0; text-transform: none; }

/* =========================================================================
   FOOTER — the implicit X9 ask
   ========================================================================= */
.foot{ background: var(--paper); color: var(--ink); padding-block: clamp(60px,11vh,110px); }
.foot__mark{ font-family: var(--sc); font-weight: 600; font-size: clamp(60px,22vw,120px); color: var(--ink); line-height: .82; }
.foot__mark .g{ color: var(--gold-deep); }
.foot__line{ font-family: var(--serif); font-style: italic; font-size: clamp(22px,6vw,30px); color: var(--crust); margin: 22px 0 36px; max-width: 22ch; }
.foot__concept{
  border-top: var(--hair) solid var(--ink-faint);
  padding-top: 26px; margin-top: 8px;
  font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--ink-soft);
}
.foot__concept strong{ color: var(--ink); font-weight: 600; }
.foot__x9{
  margin-top: 34px; display:flex; align-items:baseline; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform: uppercase; color: var(--ink-soft);
}
.foot__x9 .by{ color: var(--ink); font-weight: 600; }
.foot__x9 .pitch{ color: var(--terra-deep); }

/* =========================================================================
   REDUCED MOTION — almanac becomes a static row
   ========================================================================= */
body.reduced .almanac{ height: auto; }
body.reduced .almanac__sticky{ position: static; height: auto; }
body.reduced .almanac__stagewrap{
  display: flex; gap: 18px; overflow-x: auto; padding: 40px var(--pad);
  scroll-snap-type: x mandatory; min-height: 0;
}
body.reduced .stage{
  position: relative; inset: auto; opacity: 1 !important; transform: none !important;
  flex: 0 0 80%; scroll-snap-align: center;
}
body.reduced .stage svg{ width: 100%; max-width: 280px; }
body.reduced .ribbon__fill{ width: 100% !important; }
body.reduced .rnode .zh{ color: var(--gold); }
body.reduced .rnode .en{ color: var(--paper); }
body.reduced .hero__cue .line,
body.reduced .hero__stalk{ animation: none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
  .hero__cue .line, .hero__stalk{ animation: none; }
}

/* =========================================================================
   TABLET (≥680px) — gentle widening, still calm
   ========================================================================= */
@media (min-width: 680px){
  :root{ --col: 640px; --pad: 44px; }
  .hero__stalk{ right: 3%; width: clamp(180px, 24vw, 240px); }
  .atlas{ gap: 16px; }
}

/* =========================================================================
   DESKTOP (≥1024px) — broadsheet composition, centered 1180 + side gutters
   ========================================================================= */
@media (min-width: 1024px){
  :root{ --col: 1180px; --pad: 64px; }
  body{ font-size: 19px; }

  /* prose never runs edge-to-edge */
  .hero__sub{ max-width: 40ch; }
  .buns__intro{ max-width: 60ch; }
  .wheat__body{ max-width: 68ch; }
  .foot__concept{ max-width: 70ch; }
  .foot__line{ max-width: 18ch; }

  /* top bar + dark-section inner content align to the 1180 container */
  .topbar{ padding-inline: max(64px, calc(50vw - 590px)); }
  .almanac__head, .ribbon{ max-width: 1180px; margin-inline: auto; }

  /* ---- HERO: asymmetric — text left, wheat anchored to container right ---- */
  .hero{ padding-block: 0; }
  .hero .wrap{ max-width: var(--col); }
  .hero__mark{ font-size: clamp(170px, 15vw, 240px); }
  .hero__lede{ font-size: clamp(34px, 3.2vw, 46px); max-width: 17ch; margin-top: 30px; }
  .hero__sub{ font-size: 18px; margin-top: 30px; }
  .hero__cue{ margin-top: 48px; }
  .hero__stalk{
    width: 250px; top: 50%; right: max(24px, calc(50vw - 600px));
    animation-name: swayD; transform-origin: center bottom;
  }
  @keyframes swayD{
    0%,100%{ transform: translateY(-52%) rotate(-2.2deg); }
    50%    { transform: translateY(-48%) rotate(2.2deg); }
  }

  /* ---- THE WHEAT: two-column editorial (text | portrait slot) ---- */
  .section--wheat .wrap{
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    column-gap: 72px; align-items: start;
  }
  .section--wheat .section__kicker{ grid-column: 1 / -1; }
  .section--wheat .wheat__title{ grid-column: 1 / -1; }
  .section--wheat .wheat__body{ grid-column: 1; grid-row: 3; margin: 0; }
  .section--wheat .wheat__slot{
    grid-column: 2; grid-row: 3; margin-top: 6px;
    aspect-ratio: 3 / 4; position: sticky; top: 96px;
  }

  /* ---- THE BUNS: three-column atlas ---- */
  .atlas{ grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .bun{ aspect-ratio: 3 / 3.7; padding: 20px; }
  .bun__name .zh{ font-size: 30px; }

  /* ---- THE RHYTHM: tidy 2×2 ---- */
  .cycle{
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 64px; margin-top: 52px;
    border-bottom: var(--hair) solid oklch(0.255 0.024 58 / 0.18);
  }
  .beat{ padding: 26px 0; }
  .beat:last-child{ border-bottom: none; }

  /* ---- VISIT: three cards in a row, CTA buttons side by side ---- */
  .vgrid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .vcard{ margin-bottom: 0; display: flex; flex-direction: column; }
  .cta{ flex-direction: row; max-width: 620px; }
  .cta .btn{ flex: 1; }

  /* ---- FOOTER: keep mark + line left, concept block beside on wide ---- */
  .foot__mark{ font-size: clamp(120px, 11vw, 168px); }
}

/* =========================================================================
   WIDE DESKTOP (≥1536px) — hold the measure, widen gutters only
   ========================================================================= */
@media (min-width: 1536px){
  .hero__stalk{ width: 280px; }
}

/* reduced-motion desktop: wheat slot must not stick awkwardly */
body.reduced .section--wheat .wheat__slot{ position: relative; top: auto; }
@media (prefers-reduced-motion: reduce){
  .hero__stalk{ animation: none !important; }
}

/* ===== image-fill pass (2026-05-29): filled placeholder slots with on-brand photos ===== */
.bun{ overflow:hidden; border-style:solid; border-color: oklch(0.470 0.078 52 / 0.18); }
.bun__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:inherit; z-index:0; }
.bun::after{ content:""; position:absolute; inset:0; z-index:1; border-radius:inherit;
  background:linear-gradient(to top, rgba(28,18,8,.82) 0%, rgba(28,18,8,.18) 48%, rgba(28,18,8,.30) 100%); }
.bun > :not(.bun__img){ position:relative; z-index:2; }
.bun__idx{ color:#f4e9d6 !important; }
.bun__name .zh{ color:#fff !important; }
.bun__name .en{ color:rgba(255,255,255,.88) !important; }
.bun__supply{ display:none !important; }
.wheat__slot{ overflow:hidden; border-style:solid; border-color: oklch(0.470 0.078 52 / 0.18); }
.wheat__slot .slot__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:inherit; z-index:0; }
.wheat__slot .tag, .wheat__slot .desc{ display:none !important; }
