
:root {
  --bg: #071614;
  --forest: #0c2a24;
  --forest-mid: #12352d;
  --paper: #e8eeea;
  --ink: #e7eee9;
  --ink-dark: #14241f;
  --muted: #8a9a93;
  --gold: #c9a227;
  --gold-bright: #e4c45a;
  --border: rgba(231, 238, 233, 0.12);
  --shadow: 0 24px 60px rgba(7, 22, 20, 0.45);
  --font-display: "Cormorant Garamond", Georgia, "Songti SC", "Noto Serif SC", serif;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, ui-monospace, monospace;
  --pad: clamp(20px, 4vw, 52px);
  --max: 1280px;
  --header: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
/* 链接默认继承文字颜色。
   ⚠️ 这里故意写成 `html a`（特异性 0,0,2）而不是裸 `a`（0,0,1）：
   第三方在线客服脚本（ttkefu）会在页面末尾注入一条无作用域的 `a { color:#000 }`，
   同为 0,0,1 但排在后面，会把全站链接刷成黑色 —— 本站在深色主题下表现为
   「新闻标题/产品卡片/企业卡片/logo 文字全变黑、几乎看不见」。
   `html a` 只比它高一级，能压过第三方裸 `a`，但仍然让位于本站所有 `.class`
   组件规则（`.btn` 是 0,1,0、`.news-list a` 是 0,1,1），所以按钮/胶囊的配色不受影响。
   注意：不要再往上抬特异性（如 `a:link` / `:root a` 都是 0,1,1），那会压过 `.btn`
   把金色按钮上的深色文字刷成浅色。 */
html a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--bg); padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header);
  display: flex; align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-solid {
  background: rgba(7, 22, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  width: min(1440px, calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.brand img, .brand svg { width: 36px; height: 36px; }
.brand-name {
  display: flex; flex-direction: column; gap: 8px; line-height: 1.1;
}
.brand-name strong { font-size: 15px; font-weight: 500; letter-spacing: 0; text-align: justify; text-align-last: justify; color: var(--gold); white-space: nowrap; }
.brand-name span { font-size: 9px; letter-spacing: 0.18em; margin-right: -0.18em; color: var(--muted); text-transform: uppercase; font-family: var(--font-mono); white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a, .nav-drop > span {
  display: inline-flex; align-items: center; height: 40px; padding: 0 12px;
  font-size: 14px; color: var(--ink); opacity: 0.86;
  transition: color 0.2s, opacity 0.2s;
}
.nav a:hover, .nav a.is-active, .nav-drop:hover > span, .nav-drop > span.is-active { color: var(--gold); opacity: 1; }
.nav-drop { position: relative; }
.nav-drop > span { cursor: default; }
.nav-drop ul {
  position: absolute; top: 100%; left: 0; min-width: 160px;
  background: var(--forest); border: 1px solid var(--border);
  padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: 0.2s var(--ease);
}
.nav-drop:hover ul, .nav-drop:focus-within ul { opacity: 1; pointer-events: auto; transform: none; }
.nav-drop ul a { display: block; height: auto; padding: 8px 16px; white-space: nowrap; }

.nav-tools { display: flex; align-items: center; gap: 8px; margin-left: 12px; flex-shrink: 0; }
.card-entry {
  height: 32px; padding: 0 12px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 13px; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 6px;
}
.card-entry:hover, .card-entry:focus-visible { background: var(--gold); color: var(--bg); }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  color: var(--ink); border-radius: var(--radius);
}
.icon-btn:hover, .icon-btn:focus-visible { color: var(--gold); outline: 1px solid var(--gold); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border: 1px solid var(--gold);
  color: var(--bg); background: var(--gold); letter-spacing: 0.06em;
  font-size: 14px; white-space: nowrap; border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}
.btn:hover { background: var(--gold-bright); }
.btn:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: rgba(231, 238, 233, 0.28);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero-slide.is-on { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
}
.hero-slide.is-on img {
  animation: ken 14s ease-out forwards;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,22,20,0.35) 0%, rgba(7,22,20,0.15) 36%, rgba(7,22,20,0.78) 100%),
    radial-gradient(ellipse 80% 70% at 30% 80%, transparent 30%, rgba(7,22,20,0.55) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) 88px;
  width: min(1440px, 100%);
  margin-inline: auto;
}
.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 14ch;
}
.hero-copy p {
  margin-top: 16px; max-width: 36ch;
  color: var(--paper); font-weight: 300; font-size: 16px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.hero-nav {
  position: absolute; right: var(--pad); bottom: 88px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-nav button {
  width: 10px; height: 10px; border-radius: 5px;
  border: 1px solid var(--ink); opacity: 0.45;
  transition: height 0.45s var(--ease), background 0.3s, border-color 0.3s, opacity 0.3s;
}
.hero-nav button.is-on {
  height: 28px; background: var(--gold); border-color: var(--gold); opacity: 1;
}

/* Origin */
.origin-journey {
  position: relative;
  height: 520dvh;
}
.origin-stage {
  position: sticky; top: 0;
  height: 100dvh;
  overflow: visible;
}
.origin-journey.is-static {
  height: auto !important;
}
.origin-journey.is-static .origin-stage {
  position: relative;
  height: auto;
  min-height: 100dvh;
}
.origin-meter {
  position: absolute; right: var(--pad); top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.origin-index {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--gold); display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.2;
}
.origin-index b { font-weight: 500; }
.origin-index em { font-style: normal; color: var(--muted); font-size: 10px; }
.origin-filament {
  width: 1px; height: 88px; background: rgba(201,162,39,0.22);
  display: block; position: relative; overflow: hidden;
}
.origin-filament i {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0.14); transform-origin: top center;
}
.origin-dots {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.origin-dots button, .origin-dots i {
  width: 1px; height: 10px; padding: 0; border: 0;
  background: rgba(201,162,39,0.28);
  transition: height 0.35s var(--ease), background 0.3s, width 0.3s;
}
.origin-dots button.is-done, .origin-dots i.is-done { background: rgba(201,162,39,0.7); }
.origin-dots button.is-on, .origin-dots i.is-on {
  width: 3px; height: 16px; background: var(--gold);
}
.origin-more {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold); font-size: 13px; letter-spacing: 0.06em;
}
.origin-chapters { position: relative; }
.origin-rail {
  position: sticky; top: calc(var(--header) + 18px);
  z-index: 6;
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  width: max-content;
  margin-left: var(--pad);
  pointer-events: none;
}
.origin-rail .origin-index { flex-direction: row; gap: 8px; }
.origin-rail .origin-filament { width: 36px; height: 1px; }
.origin-rail .origin-filament i { transform-origin: left center; }
.origin-rail .origin-dots { flex-direction: row; gap: 5px; }
.origin-rail .origin-dots i { width: 8px; height: 1px; }
.origin-rail .origin-dots i.is-on { width: 14px; height: 2px; }
.origin-chapter { min-height: 100dvh; }
.origin {
  position: relative;
  min-height: 100dvh;
  background: var(--bg);
}
.origin-stage.origin { position: sticky; top: 0; }
.origin-chapter { overflow: hidden; }
.origin-slides { position: absolute; inset: 0; overflow: hidden; }
.origin-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.origin-slide.is-on { opacity: 1; }
.origin-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); }
.origin-slide.is-on img { animation: ken 16s ease-out forwards; }
.origin-chapter:not(.is-on) .origin-slide img { animation: none; }
.origin-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,22,20,0.82) 0%, rgba(7,22,20,0.35) 46%, rgba(7,22,20,0.15) 100%);
}
.origin-copy {
  position: relative; z-index: 2;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header) + 24px) var(--pad) 96px;
  width: min(1440px, 100%);
  margin-inline: auto;
}
.origin-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--gold);
  letter-spacing: 0.08em;
}
.origin-region {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.origin-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-top: 10px;
}
.origin-claim {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  max-width: 18em;
}
.origin-body {
  margin-top: 16px;
  max-width: 42ch;
  color: var(--paper);
  font-weight: 300;
}
.origin-coord {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.origin-controls {
  position: absolute; right: 88px; bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.origin-controls button {
  width: 40px; height: 40px; border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold); display: grid; place-items: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.origin-controls button:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }

/* Statement */
.statement {
  padding: 120px var(--pad);
  text-align: left;
  background: var(--forest);
}
.statement-inner { width: min(920px, 100%); margin-inline: auto; }
.statement h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.statement p { margin-top: 24px; color: var(--muted); max-width: 58ch; font-weight: 300; }

/* Products home */
.home-products { padding: 0 0 96px; background: var(--bg); }
.section-head {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto 28px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
}
.section-head a { color: var(--gold); font-size: 14px; }
.product-bento {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 12px;
}
.product-bento, .case-grid { perspective: 1100px; }
.product-tile {
  position: relative; overflow: hidden; background: var(--forest-mid);
  display: flex; flex-direction: column; justify-content: flex-end;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-tile::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(232,238,234,0.16), transparent 46%);
  opacity: 0; transition: opacity 0.3s;
}
.product-tile.is-tilt::before { opacity: 1; }
.product-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-tile:hover img { transform: scale(1.04); }
.product-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,22,20,0.88) 100%);
}
.product-tile figcaption {
  position: relative; z-index: 3; padding: 22px;
}
.product-tile small { color: var(--gold); font-size: 12px; letter-spacing: 0.08em; }
.product-tile strong { display: block; font-size: 20px; font-weight: 500; margin-top: 4px; }
.product-tile .price { color: var(--paper); font-size: 14px; }
.product-tile:first-child { grid-row: 1 / 3; }
.home-sku-note {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 62ch;
}

/* Science split */
.science {
  display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 78dvh;
}
.science-visual { position: relative; min-height: 420px; }
.science-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.science-copy {
  background: var(--forest);
  padding: 72px var(--pad);
  display: flex; flex-direction: column; justify-content: center;
}
.science-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 600;
}
.science-copy p { margin-top: 18px; color: var(--muted); max-width: 46ch; }
.science-copy .btn { margin-top: 28px; align-self: flex-start; }

/* News */
.home-news { padding: 96px 0; background: var(--bg); }
.news-row {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
}
.news-lead { display: grid; gap: 14px; }
.news-lead img { width: 100%; height: 340px; object-fit: cover; }
.news-lead time, .news-list time { font-family: var(--font-mono); font-size: 12px; color: var(--gold); }
.news-lead h3 { font-size: 24px; font-weight: 500; line-height: 1.35; }
.news-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.news-list a {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  align-items: center;
}
.news-list img { width: 92px; height: 64px; object-fit: cover; }
.news-list h3 { font-size: 16px; font-weight: 500; line-height: 1.45; }

/* Buy strip */
.buy-strip {
  margin: 0 var(--pad) 96px;
  background: url("../img/hero-karst.jpg") center/cover;
  min-height: 280px; position: relative;
  display: flex; align-items: center;
}
.buy-strip::before {
  content: ""; position: absolute; inset: 0; background: rgba(7,22,20,0.72);
}
.buy-strip .wrap { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.buy-strip h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 40px); }
.buy-strip p { color: var(--paper); margin-top: 8px; }

/* Footer */
.site-footer {
  background: #061210;
  border-top: 1px solid var(--border);
  padding: 56px var(--pad) 28px;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.site-footer h3 { font-size: 13px; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.site-footer a, .site-footer p, .site-footer li { color: var(--muted); font-size: 14px; line-height: 1.9; }
.site-footer a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--gold); }
.footer-brand img, .footer-brand svg { width: 32px; height: 32px; }
.footer-base {
  width: min(var(--max), 100%);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 12px;
}
.note { color: var(--gold); }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 42dvh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header) + 32px) var(--pad) 48px;
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: ken 18s ease-out forwards;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,22,20,0.25), rgba(7,22,20,0.82));
}
.page-hero-copy { position: relative; z-index: 1; width: min(var(--max), 100%); margin-inline: auto; }
.page-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.page-hero-copy p { margin-top: 10px; color: var(--paper); max-width: 42ch; }

.page-body { padding: 64px 0 96px; }
.prose { max-width: 68ch; color: var(--paper); font-weight: 300; }
.prose h2 { font-family: var(--font-serif); font-size: 28px; margin: 32px 0 12px; font-weight: 600; color: var(--ink); }
.prose p + p { margin-top: 14px; }

.timeline { display: grid; gap: 0; max-width: 720px; }
.timeline li {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.timeline b { color: var(--gold); font-weight: 500; }

#honors, #history, #team { scroll-margin-top: calc(var(--header) + 20px); }
.honor-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  margin-top: 28px;
}
.honor-tile {
  position: relative; overflow: hidden; display: block; width: 100%; height: 100%;
  text-align: left; color: var(--ink); background: var(--forest);
  cursor: zoom-in;
}
.honor-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.honor-tile:hover img { transform: scale(1.04); }
.honor-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7,22,20,0.9) 100%);
}
.honor-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px;
}
.honor-tile span { color: var(--gold); font-family: var(--font-mono); font-size: 11px; }
.honor-tile strong { display: block; margin-top: 4px; font-size: 16px; font-weight: 500; }
.honor-tile small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7, 22, 20, 0.92);
  display: grid; place-items: center;
  padding: 48px 24px 32px;
}
.lightbox img { max-width: min(920px, 92vw); max-height: 82dvh; object-fit: contain; box-shadow: var(--shadow); }
.lightbox p { margin-top: 12px; color: var(--paper); text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  height: 40px; padding: 0 16px;
  border: 1px solid var(--gold); color: var(--gold);
}

/* Products listing */
.filter {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; align-items: center;
}
.filter-label {
  height: 36px; display: inline-flex; align-items: center;
  color: var(--muted); font-size: 12px; letter-spacing: 0.08em; margin-right: 4px;
}
.filter button {
  height: 36px; padding: 0 14px; border: 1px solid var(--border); color: var(--muted);
}
.filter button.is-on, .filter button:hover { border-color: var(--gold); color: var(--gold); }
.honesty-filter { margin-top: -12px; margin-bottom: 36px; }
.sku-band { margin-bottom: 56px; }
.sku-band header { margin-bottom: 20px; max-width: 62ch; }
.sku-band header h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 600; }
.sku-band header p { color: var(--muted); margin-top: 6px; font-size: 14px; }
.sku-band.is-demo header h2 { font-weight: 500; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.product-card {
  background: var(--forest); overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--gold); }
.product-card.is-demo { border-color: var(--border); }
.product-card.is-demo:hover { border-color: var(--gold); }
.demo-banner {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card .thumb { position: relative; height: 240px; background: #0a1c18; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .chip, .product-card .sku-flag {
  position: absolute; left: 10px; bottom: 10px;
  height: 22px; padding: 0 8px; font-size: 11px;
  display: inline-flex; align-items: center;
  background: rgba(7,22,20,.72); color: var(--gold); letter-spacing: 0.04em;
}
.product-card .sku-flag { left: auto; right: 10px; bottom: 10px; color: var(--paper); border: 1px solid rgba(231,238,233,.25); }
.product-card .meta { padding: 16px 16px 20px; }
.product-card small { color: var(--gold); font-size: 12px; }
.product-card h3 { font-size: 18px; font-weight: 500; margin: 4px 0; }
.product-card .row { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }

.product-detail {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: start;
}
.product-detail img { width: 100%; min-height: 420px; object-fit: cover; background: #0a1c18; }
.product-detail h1 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
.product-detail .price { font-size: 28px; color: var(--gold); margin: 12px 0 18px; }
.points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 20px 0 28px; }
.points li { color: var(--paper); font-size: 14px; padding-left: 14px; position: relative; }
.points li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; background: var(--gold); }

/* News / cases */
.article-list { display: grid; gap: 0; }
.article-item {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.article-item img { width: 100%; height: 180px; object-fit: cover; }
.article-item h2 { font-size: 22px; font-weight: 500; margin: 6px 0 8px; }
.article-item p { color: var(--muted); }

.article { max-width: 760px; margin: 0 auto; }
.article img.cover { width: 100%; height: 380px; object-fit: cover; margin-bottom: 28px; }
.article h1 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); line-height: 1.2; }
.article .meta { color: var(--gold); font-family: var(--font-mono); font-size: 12px; margin: 12px 0 24px; }
.article .body p { margin-bottom: 16px; color: var(--paper); font-weight: 300; }

/* Buy table */
.warn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
}
.shop-table { width: 100%; border-collapse: collapse; }
.shop-table th, .shop-table td {
  text-align: left; padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.shop-table th { color: var(--muted); font-weight: 400; font-size: 12px; letter-spacing: 0.08em; }
.shop-table td:last-child { white-space: nowrap; }
.shop-type {
  display: inline-flex; align-items: center; height: 24px; padding: 0 8px;
  border: 1px solid var(--border); color: var(--gold); font-size: 12px;
}
.home-cases { padding: 72px 0 8px; }
.home-cases .case-grid,
.case-grid {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.wrap > .case-grid { width: 100%; }
.case-card {
  position: relative;
  background: var(--forest); overflow: hidden;
  border: 1px solid transparent; display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color 0.2s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(232,238,234,0.14), transparent 46%);
  opacity: 0; transition: opacity 0.3s;
}
.case-card.is-tilt::after { opacity: 1; }
.case-card:hover { border-color: var(--gold); }
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-card .copy { position: relative; z-index: 3; padding: 18px 18px 22px; }
.case-card small { color: var(--gold); font-size: 12px; letter-spacing: 0.06em; }
.case-card h3 { font-size: 18px; font-weight: 500; margin: 6px 0 8px; }
.case-card p { color: var(--muted); font-size: 14px; }
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 56px;
}
.value-card {
  background: var(--forest); padding: 28px 24px; min-height: 200px;
  border: 1px solid var(--border);
}
.value-card .n {
  font-family: var(--font-mono); font-style: normal; color: var(--gold); font-size: 13px; letter-spacing: 0.14em;
}
.value-card h3 { font-family: var(--font-serif); font-size: 22px; margin: 12px 0 10px; font-weight: 600; }
.value-card p { color: var(--muted); font-size: 14px; font-weight: 300; }
.band-title { font-family: var(--font-serif); font-size: 28px; margin: 8px 0 8px; }
.culture-shops { display: flex; flex-wrap: wrap; gap: 10px; }
.culture-shops a {
  min-width: 180px; border: 1px solid var(--border); padding: 12px 16px; font-size: 14px;
}
.culture-shops a:hover { border-color: var(--gold); }
.culture-shops small { display: block; color: var(--gold); font-size: 11px; margin-bottom: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--gold); }
.form { display: grid; gap: 14px; }
.form label { font-size: 13px; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%; background: var(--forest); border: 1px solid var(--border);
  padding: 12px 14px; border-radius: var(--radius); outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--gold); }
.form textarea { min-height: 140px; resize: vertical; }
.form .ok { color: var(--gold); font-size: 14px; display: none; }
.form.is-sent .ok { display: block; }
.form.is-sent .btn { display: none; }
.map-fake {
  margin-top: 18px; min-height: 180px;
  background:
    linear-gradient(180deg, rgba(7,22,20,0.2), rgba(7,22,20,0.55)),
    url("../img/hero-karst.jpg") center/cover;
  display: flex; align-items: flex-end; padding: 16px; color: var(--paper); font-size: 13px;
}

/* Search */
.search-box {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.search-box input {
  flex: 1; height: 48px; padding: 0 16px;
  background: var(--forest); border: 1px solid var(--border);
}
.search-box input:focus { border-color: var(--gold); outline: none; }

.org-parent {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
  background: var(--forest); overflow: hidden; margin-bottom: 48px;
  color: inherit; border: 1px solid transparent;
  transition: border-color 0.2s;
}
.org-parent:hover { border-color: var(--gold); }
.org-parent img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.org-parent .copy { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.org-parent .role { color: var(--gold); font-size: 12px; letter-spacing: 0.16em; }
.org-parent h2 { font-family: var(--font-serif); font-size: clamp(22px, 2.2vw, 32px); margin: 10px 0 16px; font-weight: 600; line-height: 1.3; }
.org-parent p { color: var(--muted); font-weight: 300; }
.org-parent .btn { margin-top: 24px; align-self: flex-start; }
.org-subs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.org-sub {
  display: grid; grid-template-rows: 180px 1fr; background: var(--forest);
  border: 1px solid transparent; overflow: hidden; color: inherit;
}
.org-sub:hover { border-color: var(--gold); }
.org-sub img { width: 100%; height: 180px; object-fit: cover; }
.org-sub .copy { padding: 20px; }
.org-sub .role { color: var(--gold); font-size: 12px; letter-spacing: 0.14em; }
.org-sub h3 { font-size: 20px; font-weight: 500; margin: 6px 0 8px; }
.org-sub p { color: var(--muted); font-size: 14px; }

.phone-layer {
  position: fixed; inset: 0; z-index: 88;
  background: rgba(7, 22, 20, 0.88);
  display: none; place-items: center; padding: 16px;
}
.phone-layer.is-on { display: grid; }
.phone-layer-bar {
  position: absolute; top: 18px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center; z-index: 3;
}
.phone-layer-bar span {
  color: var(--gold); font-size: 11px; letter-spacing: 0.22em;
  font-family: var(--font-mono);
}
.phone-layer-close {
  height: 32px; padding: 0 12px; border: 1px solid rgba(201,162,39,0.45); color: var(--gold);
  font-size: 12px; letter-spacing: 0.08em;
}
.phone-progress {
  position: absolute; top: 36px; right: 7px; bottom: 36px; z-index: 3;
  width: 1px; background: rgba(201,162,39,0.2); pointer-events: none;
}
.phone-progress i {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0.12); transform-origin: top center;
}
.phone-shell {
  width: min(390px, 94vw);
  height: min(760px, 86dvh);
  margin-top: 48px;
  background: var(--bg);
  border-radius: 28px;
  border: 9px solid #0d1a16;
  box-shadow:
    0 28px 70px rgba(7, 22, 20, 0.62),
    0 0 0 1px rgba(201, 162, 39, 0.38);
  overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 20px; background: #0d1a16; border-radius: 12px; z-index: 2;
}
.phone-scroll {
  height: 100%; overflow: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.phone-scroll::-webkit-scrollbar { width: 0; height: 0; display: none; }
.scan-toast {
  position: absolute; inset: 0; background: rgba(0,0,0,.78);
  display: none; place-items: center; color: #fff; font-size: 18px; letter-spacing: 0.18em;
  z-index: 4;
}
.scan-toast.is-on { display: grid; }

.poster {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
}
.poster .label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 6px;
}
.poster-cover {
  position: relative; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 22px 40px;
}
.poster-cover img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.poster-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,22,20,.15) 0%, rgba(7,22,20,.9) 100%);
}
.poster-cover .inner { position: relative; z-index: 1; }
.poster-cover .mark {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold); margin-bottom: 18px;
}
.poster-cover .kicker {
  font-size: 11px; letter-spacing: 0.28em; color: var(--gold);
  margin-bottom: 8px;
}
.poster-cover .en {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); letter-spacing: 0.08em; font-size: 13px;
}
.poster-cover h2 {
  font-family: var(--font-serif); font-size: 23px; line-height: 1.35;
  font-weight: 600; margin-top: 8px; letter-spacing: 0.01em;
}
.poster-cover .tag {
  margin-top: 12px; color: var(--paper); font-weight: 300; font-size: 14px;
  padding-top: 12px; border-top: 1px solid rgba(201,162,39,.45);
  max-width: 16em; line-height: 1.55;
}
.poster-block { padding: 28px 22px; }
.poster-block-tight { padding-bottom: 10px; }
.poster-block h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 12px;
}
.poster-block p { color: var(--muted); font-size: 13px; line-height: 1.85; font-weight: 300; }
.poster-credit {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--gold);
  white-space: nowrap;
}
.poster-origin { display: grid; grid-template-columns: 1fr; gap: 2px; }
.poster-origin figure { position: relative; height: 168px; overflow: hidden; }
.poster-origin img { width: 100%; height: 100%; object-fit: cover; }
.poster-origin figcaption {
  position: absolute; left: 14px; bottom: 12px; color: #fff;
  font-family: var(--font-serif); font-size: 18px;
  text-shadow: 0 8px 18px rgba(0,0,0,.6);
}
.poster-lab { position: relative; min-height: 240px; padding: 36px 22px 28px; }
.poster-lab img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.poster-lab::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,22,20,.2) 0%, rgba(7,22,20,.82) 100%);
}
.poster-lab .inner { position: relative; z-index: 1; }
.poster-lab h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.poster-lab p { color: var(--paper); font-size: 13px; line-height: 1.8; font-weight: 300; }
.poster-skus { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 14px; }
.poster-skus a, .poster-skus div {
  position: relative; height: 132px; overflow: hidden; color: #fff;
}
.poster-skus img { width: 100%; height: 100%; object-fit: cover; }
.poster-skus span {
  position: absolute; left: 8px; right: 8px; bottom: 8px; font-size: 11px; line-height: 1.3;
  text-shadow: 0 4px 12px #000;
}
.poster-contact p { display: grid; grid-template-columns: 42px 1fr; gap: 8px; margin-top: 8px; }
.poster-contact em {
  font-style: normal; color: var(--gold); font-size: 12px;
}
.poster-qr {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 22px 28px; text-align: center;
}
.poster-qr .qr-pad {
  background: #fff; padding: 10px; border: 0; cursor: pointer;
  box-shadow: 0 0 0 1px var(--gold);
}
.poster-qr img { width: 148px; height: 148px; display: block; }
.poster-qr .qr-cap { margin-top: 14px; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.poster-end {
  padding: 22px 20px 28px; text-align: center;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.poster-end strong {
  color: var(--gold); letter-spacing: 0.22em; font-size: 12px; font-weight: 500;
}
.poster-end span { color: var(--muted); font-size: 12px; font-weight: 300; }

.poster-page { background: #071614; min-height: 100dvh; }
.poster-page-bar {
  position: sticky; top: 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(7,22,20,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.poster-page-bar strong { color: var(--gold); letter-spacing: 0.12em; font-size: 13px; }
.poster-page-bar .btn { height: 36px; padding: 0 14px; font-size: 13px; }
.poster-page .poster { max-width: 430px; margin: 0 auto; }

/* QR page */
.qr-page { min-height: 100dvh; display: grid; place-items: center; padding: 24px; background: var(--forest); }
.qr-card {
  width: min(380px, 100%);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 24px 24px;
  text-align: center;
}
.qr-card img.mark { width: 72px; height: 72px; margin: 0 auto 12px; border-radius: 50%; object-fit: cover; }
.qr-card h1 { font-size: 20px; font-weight: 500; }
.qr-card p { color: var(--muted); font-size: 13px; margin: 10px 0 18px; }
.qr-box { width: 180px; height: 180px; margin: 0 auto 16px; background: var(--paper); padding: 10px; }
.qr-box img { width: 100%; height: 100%; }

/* Widget */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
.team-card {
  background: var(--forest); padding: 24px 20px; min-height: 180px;
  border: 1px solid var(--border);
}
.team-mono {
  width: 48px; height: 48px; border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 18px; margin-bottom: 14px;
}
.team-card strong { display: block; font-size: 18px; font-weight: 500; }
.team-card em { display: block; color: var(--gold); font-style: normal; font-size: 13px; margin: 4px 0 10px; }
.team-card p { color: var(--muted); font-size: 14px; font-weight: 300; }

.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links .group strong { display: block; color: var(--ink); font-size: 12px; font-weight: 500; margin-bottom: 6px; }
.footer-links .group a { display: block; color: var(--muted); font-size: 13px; line-height: 1.8; }
.footer-links .group a:hover { color: var(--gold); }
.footer-links img { height: 28px; width: auto; }
.top-btn {
  position: fixed; right: 80px; bottom: 26px; z-index: 60;
  width: 40px; height: 40px; border: 1px solid var(--border);
  background: var(--forest); color: var(--ink);
  display: none; place-items: center;
}
.top-btn.is-on { display: grid; }

.mobile-panel {
  display: none;
  position: fixed; inset: var(--header) 0 0 0; z-index: 45;
  background: rgba(7,22,20,0.96);
  padding: 24px var(--pad);
}
.mobile-panel.is-on { display: block; }
.mobile-panel a, .mobile-panel button { display: block; width: 100%; text-align: left; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 18px; color: inherit; background: none; }

@media (max-width: 1024px) {
  .product-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 240px 240px; }
  .case-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .product-tile:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 320px; }
  .science { grid-template-columns: 1fr; }
  .science-visual { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .honor-wall { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .nav-tools .search-open { display: none; }
  .menu-toggle { display: grid; }
  .hero-copy { padding-bottom: 72px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-nav { bottom: 28px; }
  .origin-copy h2 { font-size: 52px; }
  .origin-slide::after {
    background: linear-gradient(180deg, rgba(7,22,20,0.2), rgba(7,22,20,0.88));
  }
  .product-bento, .news-row, .product-detail, .contact-grid, .article-item {
    grid-template-columns: 1fr;
  }
  .poster-skus { grid-template-columns: 1fr 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .case-grid, .value-grid { grid-template-columns: 1fr; }
  .shop-table thead { display: none; }
  .shop-table, .shop-table tbody, .shop-table tr, .shop-table td { display: block; width: 100%; }
  .shop-table tr { padding: 18px 0; border-bottom: 1px solid var(--border); }
  .shop-table td { padding: 4px 0; border: 0; }
  .shop-table td::before {
    content: attr(data-label);
    display: inline-block; width: 5.5em; color: var(--muted); font-size: 12px;
  }
  .shop-table td:last-child { white-space: normal; margin-top: 8px; }
  .buy-strip .wrap, .section-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; }
  .hero-actions { flex-wrap: wrap; }
  .statement { padding: 72px var(--pad); }
  .origin-controls { right: 72px; bottom: 88px; }
  .origin-meter { right: 12px; }
  .origin-filament { height: 64px; }
  .honor-wall { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .team-grid { grid-template-columns: 1fr; }
  .org-parent, .org-subs { grid-template-columns: 1fr; }
  .poster-page .poster { max-width: none; }
  .phone-shell { height: min(720px, 82dvh); }
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes char-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.char { display: inline-block; overflow: hidden; vertical-align: top; margin: 0 -0.05em; }
.char-inner { display: inline-block; transform: translateY(110%); }
.char-inner.is-in {
  animation: char-up 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--d, 0ms);
}
.char.sp { width: 0.25em; }
/* Hide hero title until characters are split, so plain text never flashes before the entrance. */
.home-page [data-hero-title]:not(.is-ready) { opacity: 0; }
.home-page [data-hero-title].is-ready { opacity: 1; }
.origin-copy.is-fresh > * {
  animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.origin-copy.is-fresh h2 { animation-delay: 0.06s; }
.origin-copy.is-fresh .origin-claim { animation-delay: 0.12s; }
.origin-copy.is-fresh .origin-body { animation-delay: 0.18s; }
.origin-copy.is-fresh .origin-coord { animation-delay: 0.24s; }
.hero-copy p, .hero-actions {
  animation: rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-copy p { animation-delay: 0.12s; }
.hero-actions { animation-delay: 0.22s; }
.hero-actions .btn, .buy-strip .btn {
  will-change: transform;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0ms);
}
/* Only hide pending reveals after motion.js is active, so content stays readable if JS fails. */
html:not(.has-motion) .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .origin-filament i, .phone-progress i { transform: none !important; }
  .reveal, .char-inner { opacity: 1 !important; transform: none !important; }
  .home-page [data-hero-title]:not(.is-ready) { opacity: 1; }
  .hero-slide img, .origin-slide img, .page-hero img { animation: none !important; transform: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid { background: var(--bg); backdrop-filter: none; }
}
