:root {
  --bg: #f3f0e8;
  --bg-deep: #0f1f18;
  --fg: #14241c;
  --muted: #5a6b62;
  --accent: #1a3d2e;
  --accent-soft: rgba(26, 61, 46, 0.08);
  --gold: #c4a46c;
  --line: rgba(20, 36, 28, 0.1);
  --surface: rgba(255, 255, 255, 0.72);
  --font-display: "Noto Serif SC", "Source Han Serif SC", serif;
  --font-body: "Noto Sans SC", system-ui, sans-serif;
  /* Type scale — 4 readable steps + display
     Serif reserved for: hero brand, h2, upgrade h3, series slogan/tagline */
  --fs-label: 0.6875rem;   /* 11 — eyebrow / kicker / badge */
  --fs-small: 0.8125rem;   /* 13 — meta, dock, secondary */
  --fs-body: 0.9375rem;    /* 15 — body / lede */
  --fs-card: 1.0625rem;    /* 17 — card titles (sans) */
  --fs-title: 1.2rem;      /* ~19 — serif subheads */
  --fs-h2: clamp(1.5rem, 5.2vw, 2rem);
  --fs-display: clamp(2.55rem, 10.5vw, 3.75rem);
  --fs-display-zh: clamp(1.95rem, 8.5vw, 3rem);
  --lh-tight: 1.2;
  --lh-body: 1.55;
  --lh-loose: 1.65;
  --nav-h: 52px;
  --dock-h: 72px;
  --wrap: 40rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--fg);
  background:
    radial-gradient(120% 80% at 10% -10%, #dfe8df 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 0%, #e8dcc8 0%, transparent 45%),
    var(--bg);
  line-height: var(--lh-body);
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

/* Top nav — logo only; section jumps live in dock */
.topnav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: flex-start;
  height: var(--nav-h);
  padding: 0 1rem;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.topnav.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, #fff); }
.topnav-brand img { height: 22px; width: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-content: center;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
  color: #f4f1ea;
  background:
    linear-gradient(165deg, #163328 0%, #0f1f18 48%, #1a2a22 100%);
}
.hero-glow {
  /* Oversized full-bleed layer so the radial never hard-clips mid-viewport */
  position: absolute; inset: -45%;
  background: radial-gradient(circle at 72% 28%, rgba(196, 164, 108, .28), transparent 52%);
  animation: drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-8%, 10%) scale(1.08); }
}
.hero-inner { position: relative; width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 .7rem;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.3;
}
.section .eyebrow { color: color-mix(in srgb, var(--accent) 75%, var(--gold)); }
.hero-title { margin: 0; display: grid; gap: .1rem; }
.hero-brand {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 400; letter-spacing: .02em; line-height: 1;
  animation: rise .8s ease both;
  white-space: nowrap;
}
.hero-brand-zh {
  font-size: var(--fs-display-zh);
  font-weight: 500;
  letter-spacing: .07em;
  animation-delay: .08s;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-sub {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: var(--lh-tight);
  color: rgba(244, 241, 234, .72);
  animation: rise .8s .18s ease both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.5rem;
  animation: rise .8s .28s ease both;
}
.hero-scroll {
  position: absolute; left: 1rem; bottom: 1.25rem;
  font-size: var(--fs-label); letter-spacing: .08em;
  color: rgba(244, 241, 234, .45);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 1.2rem;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--gold); color: #1a1510; }
.btn-primary:hover { background: #d4b67a; }
.btn-ghost { background: transparent; color: #f4f1ea; border-color: rgba(244,241,234,.35); }
.btn-ghost:hover { border-color: #f4f1ea; }
.section-cta .btn-primary { background: var(--accent); color: #f4f1ea; }

/* Sections */
.section { padding: 3.25rem 0; }
.section-tint {
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent 30%),
              color-mix(in srgb, var(--accent-soft) 70%, transparent);
}
.h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: .01em;
}
.lede {
  margin: .7rem 0 0;
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: var(--muted);
  max-width: 34rem;
}
.lede strong { color: var(--fg); font-weight: 600; }

/* Brand narrative */
.section-brand {
  background:
    linear-gradient(165deg, rgba(15, 31, 24, .97) 0%, #163328 55%, #1a2a22 100%);
  color: #f4f1ea;
  padding: 3.75rem 0;
}
.section-brand .eyebrow { color: var(--gold); }
.section-brand .h2 {
  color: #f4f1ea;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  max-width: 22em;
}
.section-brand .lede {
  color: rgba(244, 241, 234, .72);
  max-width: 36rem;
  margin-top: .85rem;
}
@media (min-width: 720px) {
  .h2-break { display: none; }
}
.brand-quote {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.2rem 1.25rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .04);
  border-radius: 0 1rem 1rem 0;
}
.brand-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  line-height: 1.35;
  color: #f4f1ea;
}
.brand-quote cite {
  display: block;
  margin-top: .65rem;
  font-style: normal;
  font-size: var(--fs-small);
  color: rgba(244, 241, 234, .55);
}
.brand-marks {
  list-style: none; margin: 1.85rem 0 0; padding: .4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem;
  overflow: visible;
}
.brand-marks li {
  flex: 1 1 0;
  display: flex; align-items: center; justify-content: center;
  padding: .15rem;
  overflow: visible;
  border: 0;
}
.brand-marks li + li { border: 0; }
.brand-mark-logo {
  display: block;
  height: 4.25rem; width: auto; max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.brand-mark-logo--seal {
  height: 5.5rem;
}
.brand-mark-logo--word {
  height: 3.4rem;
}
.brand-mark-logo--word.brand-mark-logo--dq {
  height: 5rem;
}
.brand-mark-logo--bottle {
  height: 5.75rem;
}
.brand-promise {
  margin-top: 1.85rem;
  padding: 1.4rem 1.25rem;
  border-radius: 1.1rem;
  background: rgba(196, 164, 108, .12);
  border: 1px solid rgba(196, 164, 108, .28);
}
.brand-promise-title {
  margin: 0 0 1rem;
  font-size: var(--fs-label); letter-spacing: .08em;
  color: var(--gold); font-weight: 600;
}
.brand-promise ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .95rem;
}
.brand-promise li { display: grid; gap: .22rem; }
.brand-promise strong {
  font-family: var(--font-body);
  font-size: var(--fs-card);
  font-weight: 600;
  color: #f4f1ea;
}
.brand-promise span {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: rgba(244, 241, 234, .62);
}

.upgrade { margin-top: 2.6rem; }
.upgrade-kicker {
  margin: 0 0 1rem;
  font-size: var(--fs-label); letter-spacing: .08em;
  color: var(--gold); font-weight: 600;
}
.upgrade-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  counter-reset: none;
}
.upgrade-list li {
  padding: 1.2rem 1.15rem;
  border-top: 1px dashed rgba(244, 241, 234, .22);
}
.upgrade-list li:first-child { border-top: 1px solid rgba(244, 241, 234, .28); }
.upgrade-n {
  display: block;
  font-size: var(--fs-label); letter-spacing: .08em;
  color: var(--gold); font-weight: 600; margin-bottom: .35rem;
}
.upgrade-list h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: var(--fs-title); font-weight: 500; color: #f4f1ea;
  line-height: var(--lh-tight);
}
.upgrade-from {
  margin: 0 0 .65rem;
  font-size: var(--fs-body); color: rgba(244, 241, 234, .78); font-weight: 500;
}
.upgrade-list p {
  margin: 0 0 .5rem;
  font-size: var(--fs-body); color: rgba(244, 241, 234, .68); line-height: var(--lh-loose);
}
.upgrade-list p:last-child { margin-bottom: 0; }
.upgrade-believe {
  color: rgba(244, 241, 234, .9) !important;
  font-weight: 600;
}
.award-badge {
  display: inline-flex; align-items: center; gap: .28rem;
  padding: .22rem .5rem .22rem .4rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 164, 108, .45);
  background: linear-gradient(135deg, rgba(196, 164, 108, .22), rgba(196, 164, 108, .08));
  color: #f0e2c4;
  font-size: var(--fs-label);
  letter-spacing: .04em;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.award-badge--light {
  color: #6b5428;
  border-color: rgba(196, 164, 108, .55);
  background: linear-gradient(135deg, rgba(196, 164, 108, .28), rgba(196, 164, 108, .1));
}
.award-badge-icon {
  width: .95rem; height: .95rem; flex: 0 0 auto;
  color: var(--gold);
}
.award-badge--light .award-badge-icon { color: #8a7346; }
/* Channels */
.tabs {
  display: flex; gap: .4rem; margin: 1.35rem 0 .9rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab {
  flex: 0 0 auto;
  border: 1px solid var(--line); background: transparent;
  color: var(--muted); border-radius: 999px;
  padding: .42rem .85rem;
  font-family: var(--font-body);
  font-size: var(--fs-small); font-weight: 500;
  cursor: pointer;
}
.tab.is-active { background: var(--accent); color: #f4f1ea; border-color: var(--accent); }

.chip-cloud { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.chan-chip {
  display: inline-flex; align-items: baseline; gap: .35rem;
  padding: .48rem .72rem;
  background: #fff; border: 1px solid var(--line); border-radius: .75rem;
  font-size: var(--fs-small); animation: chip-in .35s ease both;
}
.chan-chip small { color: var(--muted); font-size: var(--fs-label); }
.chan-chip--system { border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); }
@keyframes chip-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.section-foot { margin: 1.25rem 0 0; font-size: var(--fs-small); color: var(--muted); }
.text-link { font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.sep { margin: 0 .4rem; opacity: .4; }

/* Products */
.product-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.product {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem;
  padding: 1rem; border-radius: 1.1rem;
  background: #fff; border: 1px solid var(--line);
}
.product-visual {
  aspect-ratio: 1; border-radius: .85rem;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.25rem; color: #f4f1ea;
}
.product-visual--ljt { background: linear-gradient(145deg, #2a5a42, #163328); }
.product-visual--dq { background: linear-gradient(145deg, #3d2a55, #1a1228); }
.product-visual--mh { background: linear-gradient(145deg, #6b3a2a, #2a1610); }
.product-visual--mh2 { background: linear-gradient(145deg, #2a4a55, #102028); }
.product-line { margin: 0; font-size: var(--fs-label); letter-spacing: .06em; color: var(--muted); }
.product-body h3 { margin: .15rem 0 .25rem; font-family: var(--font-body); font-size: var(--fs-card); font-weight: 600; }
.product-meta { margin: 0 0 .45rem; font-size: var(--fs-small); color: var(--gold); font-weight: 600; }
.product-body p { margin: 0; font-size: var(--fs-small); color: var(--muted); }
.product-scene { margin-top: .55rem !important; font-size: var(--fs-small) !important; color: var(--fg) !important; }

/* Display / Gallery — magazine masonry, natural aspect, no crop */
.gallery-tabs {
  display: flex; flex-wrap: nowrap; gap: .4rem;
  margin: 1.1rem 0 .85rem; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tabs .tab { flex: 0 0 auto; }
.gallery-track {
  column-count: 2;
  column-gap: .7rem;
  padding: .1rem 0 .5rem;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 .7rem;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  border-radius: .55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -webkit-user-select: none; user-select: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.gallery-item:active {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 6px 18px rgba(15, 31, 24, .08);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
/* whitebg JPGs: same full-bleed as other gallery items (no cream mat / frame) */
.gallery-item.is-whitebg {
  background: #fff;
  padding: 0;
}

.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(10, 16, 14, .92);
  display: grid; place-items: center;
  padding: 3rem 1rem 2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(100%, 920px); max-height: min(82vh, 920px);
  width: auto; height: auto; object-fit: contain;
  border-radius: .5rem;
}
.lightbox-close, .lightbox-nav {
  position: absolute; border: 0; background: rgba(255,255,255,.12);
  color: #fff; cursor: pointer; border-radius: 999px;
  font-size: 1.5rem; line-height: 1;
}
.lightbox-close {
  top: calc(12px + env(safe-area-inset-top, 0px)); right: 12px;
  width: 2.5rem; height: 2.5rem;
}
.lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* CTA */
.section-cta {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(196,164,108,.18), transparent),
    linear-gradient(180deg, transparent, rgba(26,61,46,.06));
}
.steps { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .85rem; }
.steps li {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start;
  padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 1rem;
}
.steps span {
  display: block;
  font-family: var(--font-body); font-size: var(--fs-title); font-weight: 600;
  color: var(--gold); line-height: 1; letter-spacing: .04em;
}
.steps strong {
  display: block; margin-bottom: .2rem;
  font-family: var(--font-body); font-size: var(--fs-card); font-weight: 600;
  line-height: 1;
}
.steps p { margin: 0; color: var(--muted); font-size: var(--fs-small); line-height: var(--lh-body); }

.entry-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: .85rem;
}
.entry-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
}
.entry-card--primary {
  border-color: rgba(184, 148, 74, .45);
  box-shadow: 0 8px 28px rgba(15, 31, 24, .06);
}
.qr-frame {
  width: 180px; height: 180px; margin-inline: auto;
  box-sizing: border-box;
  padding: 14px;
  border-radius: .75rem;
  overflow: hidden;
  background: #fff; border: 1px solid var(--line);
}
.qr-frame img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.qr-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  text-align: center; padding: 1rem; color: var(--muted); font-size: var(--fs-small);
  line-height: 1.45; background: #f7f4ee;
}
.qr-placeholder strong { color: var(--fg); font-size: var(--fs-body); }
.entry-kicker {
  margin: 0 0 .25rem;
  font-size: var(--fs-label); font-weight: 600; letter-spacing: .06em;
  color: var(--gold);
}
.qr-title {
  margin: 0 0 .4rem;
  font-family: var(--font-body);
  font-size: var(--fs-card); font-weight: 600;
}
.entry-copy p { margin: 0; color: var(--muted); font-size: var(--fs-small); }

.site-footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: var(--fs-small);
}
.site-footer p { margin: 0 0 .35rem; }
.footer-links { display: flex; gap: 1rem; margin-top: .75rem !important; }
.footer-links a { color: var(--accent); font-weight: 500; text-decoration: none; }

/* Dock — horizontal pill bar (content-sized, never stack chars) */
.dock {
  position: fixed; left: 50%; bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: .2rem;
  width: max-content;
  max-width: calc(100vw - 1rem);
  padding: .35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: rgba(15, 31, 24, .92);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 31, 24, .25);
}
.dock::-webkit-scrollbar { display: none; }
.dock a {
  flex: 0 0 auto;
  color: rgba(244,241,234,.75); text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-small); font-weight: 500;
  line-height: 1;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  padding: .55rem .7rem;
  border-radius: 999px;
}
.dock a:active { color: #f4f1ea; }
.dock-cta {
  background: var(--gold); color: #1a1510 !important; font-weight: 600;
}

/* Channels subpage */
.page-head { padding: 1.5rem 0 0.5rem; }
.page-head h1 {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2); font-weight: 400;
  line-height: var(--lh-tight);
}
.back-link { font-size: var(--fs-small); font-weight: 600; text-decoration: none; }
.channel-group { margin: 1.5rem 0 0; }
.channel-group:first-child { margin-top: .75rem; }
.group-title {
  margin: 0 0 .55rem;
  font-size: var(--fs-label); letter-spacing: .06em; color: var(--muted);
  font-weight: 600;
}
.channel-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.channel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: baseline;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-body);
}
.channel-name {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--fg); min-width: 0;
}
.channel-cover {
  font-size: var(--fs-small); color: var(--muted); text-align: right;
  white-space: nowrap;
}
.channel-cover:empty { display: none; }
.badge-sys {
  display: inline-block;
  padding: .1rem .4rem; border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 25%, #fff);
  color: #5a4520; font-size: var(--fs-label); font-weight: 600;
}
.type-tag {
  display: inline-block;
  padding: .08rem .35rem; border-radius: .4rem;
  background: var(--accent-soft);
  color: var(--muted); font-size: var(--fs-label); font-weight: 500;
}

/* Series entry cards on home */
.series-entries {
  display: grid; gap: .85rem; margin-top: 1.5rem;
}
.series-entry {
  display: grid; grid-template-columns: 8rem 1fr; gap: .9rem; align-items: start;
  padding: 1rem; border-radius: 1.1rem;
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: border-color .15s, transform .15s;
}
.series-entry:active { transform: scale(.99); }
.series-entry:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.series-entry > img {
  width: 8rem; height: 8rem; object-fit: contain;
  border-radius: .75rem; background: #f7f4ee;
}
.series-entry-body { min-width: 0; }
.series-entry-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .55rem;
  margin-bottom: .2rem;
}
.series-entry h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-card); font-weight: 600;
  line-height: var(--lh-tight);
}
.series-entry-slogan {
  margin: .2rem 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-small); font-weight: 400;
  color: var(--fg); line-height: 1.4;
  opacity: .9;
}
.series-entry-meta {
  margin: .3rem 0 0;
  font-size: var(--fs-small); color: var(--gold); font-weight: 600;
  letter-spacing: .02em;
}
.series-entry-pitch {
  margin: .3rem 0 0;
  font-size: var(--fs-small); color: var(--muted); line-height: 1.4;
}

.product-list { margin-top: 1.25rem; }
.section-foot + .product-list { margin-top: 1rem; }

/* Series detail pages */
.series-page { padding-bottom: 2rem; }
.crumb { margin: 1rem 0 0; font-size: var(--fs-small); color: var(--muted); }
.crumb a { color: var(--accent); text-decoration: none; font-weight: 500; }

.series-hero {
  margin-top: 1rem; display: grid; gap: 1.1rem;
  padding: 1.1rem; border-radius: 1.2rem;
  background: #fff; border: 1px solid var(--line);
}
.series-hero--compact { gap: .35rem; }
.series-tagline {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-title); color: var(--accent);
  line-height: var(--lh-tight);
}
.series-meta {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: grid; gap: .45rem;
}
.series-meta li {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: .5rem;
  font-size: var(--fs-small); color: var(--muted);
}
.series-meta strong { color: var(--fg); font-weight: 600; }

.sku-strip { display: grid; gap: .55rem; margin: .75rem 0 1.25rem; }
.sku-chip {
  display: grid; grid-template-columns: 4.25rem 1fr; gap: .75rem; align-items: center;
  padding: .7rem .85rem; border-radius: .95rem;
  background: #fff; border: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.sku-chip img {
  width: 4.25rem; height: 4.25rem; object-fit: contain;
  border-radius: .65rem; background: #f7f4ee;
}
.sku-chip h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-card); font-weight: 600;
}
.sku-chip .sku-code { margin: 0; font-size: var(--fs-label); color: var(--gold); letter-spacing: .04em; font-weight: 600; }
.sku-chip .sku-pitch {
  margin: .2rem 0 0;
  font-size: var(--fs-small); line-height: 1.45; color: var(--muted);
}

.detail-long {
  margin: 1.25rem 0 0;
  display: grid;
  gap: .75rem;
  padding: .15rem 0;
}
.detail-long img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 31, 24, .05);
  object-fit: contain;
}

.series-note { margin: 1.5rem 0 0; font-size: var(--fs-small); color: var(--muted); }
.series-note .btn { margin-top: .75rem; }

@media (min-width: 720px) {
  .brand-marks { gap: 1rem; }
  .brand-mark-logo--seal { height: 6.25rem; }
  .brand-mark-logo--word { height: 3.8rem; }
  .brand-mark-logo--word.brand-mark-logo--dq { height: 5.75rem; }
  .brand-mark-logo--bottle { height: 6.5rem; }
  .brand-promise ul { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .upgrade-list { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .upgrade-list li {
    border-top: 1px solid rgba(244, 241, 234, .28);
    border-left: 1px dashed rgba(244, 241, 234, .18);
    padding: 1.25rem 1rem;
  }
  .upgrade-list li:first-child { border-left: none; }
  .product { grid-template-columns: 7rem 1fr; }
  .entry-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; max-width: 44rem; }
  .entry-card { grid-template-columns: 1fr; text-align: left; }
  .qr-frame { margin-inline: 0; width: 176px; height: 176px; padding: 12px; }
  .gallery-track { column-count: 3; column-gap: .85rem; }
  .gallery-item { margin-bottom: .85rem; border-radius: .65rem; }
  .series-entries { grid-template-columns: repeat(3, 1fr); }
  .series-entry { grid-template-columns: 1fr; padding: 1rem; }
  .series-entry > img { width: 100%; height: 14rem; }
  .series-hero:not(.series-hero--compact) { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .sku-card { grid-template-columns: 9rem 1fr; }
  .sku-strip { grid-template-columns: repeat(2, 1fr); }
  .detail-long { gap: .9rem; }
  .dock { gap: .35rem; }
  .dock a { padding: .55rem .9rem; }
}

/* WeChat link preview: first meaningful <img> becomes cover; keep in DOM, offscreen */
#wx-cover {
  position: absolute;
  width: 300px;
  height: 300px;
  left: -10000px;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
