/* ============================================================
   九1官网指南 · 共享样式表 /assets/site.css
   档案室 + 现代目录：墨蓝结构、暖金锚点、砖红标示、米白纸面
   ============================================================ */

/* ---------- 1. reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, dt, ul, ol, li, fieldset, legend {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

img, svg, video, canvas { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. 变量 ---------- */
:root {
  --ink: #0E2A47;
  --ink-deep: #08192B;
  --ink-mid: #1C3D63;
  --ink-mist: #2E5578;
  --gold: #D4A24C;
  --gold-soft: #F0DCB4;
  --brick: #B24A38;
  --paper: #F5F1E8;
  --card: #FFFDF8;
  --graphite: #4A5560;
  --hair: #CFC7B8;

  --shell-max: 1180px;
  --gutter: clamp(18px, 4vw, 44px);

  --r-pill: 999px;
  --r-lg: 32px;
  --r-md: 20px;
  --r-sm: 12px;

  --t-fast: 160ms;
  --t: 220ms;
  --t-slow: 260ms;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: "HarmonyOS Sans SC", "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "Noto Serif SC", "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- 3. 基础排版 ---------- */
body {
  min-height: 100vh;
  padding-top: clamp(96px, 11vw, 116px);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(90deg, rgba(14, 42, 71, .032) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(14, 42, 71, .022) 0 1px, transparent 1px 104px);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--ink);
}

h1 { font-size: clamp(34px, 6.4vw, 96px); font-weight: 900; line-height: 1.03; }
h2 { font-size: clamp(26px, 3.8vw, 50px); }
h3 { font-size: clamp(19px, 2.2vw, 26px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

small { font-size: 13px; }

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  background: var(--gold-soft);
  padding: .05em .4em;
  border-radius: 8px;
  white-space: nowrap;
}

.prose { max-width: 38em; }
.prose > * + * { margin-top: 1.05em; }
.prose a {
  color: var(--ink-mid);
  border-bottom: 1px solid rgba(28, 61, 99, .35);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.prose a:hover { color: var(--brick); border-color: var(--brick); }

/* ---------- 4. 布局工具 ---------- */
.shell {
  width: min(var(--shell-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section { padding-block: clamp(52px, 8vw, 112px); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--brick);
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brick);
}

.section-title { max-width: 20em; }

.section-lead {
  max-width: 38em;
  color: var(--graphite);
  font-size: 16.5px;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.grid--split {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: start;
}

.stack { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 22px); }

/* ---------- 5. 跳过链接 ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 200;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: var(--brick);
  color: #FFFDF8;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  pointer-events: auto;
  transform: translate(-50%, -180%);
  transition: transform var(--t) var(--ease);
}

.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 6. 头部：悬浮胶囊浮岛 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: clamp(10px, 1.4vw, 18px) clamp(12px, 3vw, 28px) 0;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  background: rgba(14, 42, 71, .07);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--brick) 0%, var(--gold) 62%, var(--gold-soft) 100%);
}

.header-shell {
  position: relative;
  pointer-events: auto;
  width: min(var(--shell-max), 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  padding: 7px 12px 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(14, 42, 71, .94);
  border: 1px solid rgba(212, 162, 76, .3);
  box-shadow: 0 24px 50px -32px rgba(8, 25, 43, .95);
  color: var(--paper);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    padding var(--t-slow) var(--ease),
    background-color var(--t-slow) var(--ease),
    box-shadow var(--t-slow) var(--ease);
}

[data-header][data-scrolled] .header-shell {
  padding-block: 4px;
  background: rgba(8, 25, 43, .97);
  box-shadow: 0 26px 54px -28px rgba(8, 25, 43, 1);
}

/* 品牌 */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 4px 4px 4px 2px;
  border-radius: var(--r-pill);
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--paper);
}

.brand-digit {
  padding-left: 1px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .96em;
  color: var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(212, 162, 76, .38);
  line-height: 1.18;
}

.brand-line {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--paper);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: rgba(212, 162, 76, .92);
}

/* 导航 */
.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { display: flex; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  color: rgba(245, 241, 232, .76);
  transition: color var(--t) var(--ease), background-color var(--t) var(--ease);
}

.nav-link:hover {
  color: var(--paper);
  background: rgba(46, 85, 120, .55);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
  box-shadow: 0 10px 22px -14px rgba(212, 162, 76, .95);
}

.nav-link[aria-current="page"]:hover { background: var(--gold-soft); }

.nav-index {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(212, 162, 76, .68);
}

.nav-link[aria-current="page"] .nav-index { color: rgba(14, 42, 71, .7); }

/* 头部行动入口 */
.header-utility {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.utility-link {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212, 162, 76, .42);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  transition:
    background-color var(--t) var(--ease),
    border-color var(--t) var(--ease),
    color var(--t) var(--ease);
}

.utility-link:hover {
  background: rgba(212, 162, 76, .16);
  border-color: rgba(212, 162, 76, .72);
  color: var(--paper);
}

.utility-link--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.utility-link--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}

/* 移动目录胶囊按钮 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212, 162, 76, .42);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: background-color var(--t) var(--ease);
}

.nav-toggle:hover { background: rgba(212, 162, 76, .14); }

.nav-toggle-label { line-height: 1; }

.nav-toggle-bar {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--t) var(--ease), top var(--t) var(--ease);
}

.nav-toggle-bar::before { top: -5px; }
.nav-toggle-bar::after { top: 5px; }

[data-header][data-open] .nav-toggle-bar { background: transparent; }
[data-header][data-open] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
[data-header][data-open] .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

/* ---------- 7. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(64px, 10vw, 140px);
  padding: clamp(48px, 7vw, 88px) 0 32px;
  background: var(--ink-deep);
  color: rgba(245, 241, 232, .78);
  font-family: var(--font-body);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 76, .6), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .85fr) minmax(0, .85fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 56px);
}

.footer-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--paper);
}

.footer-mark span {
  font-family: var(--font-mono);
  color: var(--gold);
}

.footer-brand-line {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
}

.footer-copy {
  margin-top: 16px;
  max-width: 32em;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(245, 241, 232, .62);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-col-title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
}

.footer-links { display: grid; gap: 11px; }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: rgba(245, 241, 232, .76);
  transition: color var(--t) var(--ease);
}

.footer-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .45;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.footer-link:hover { color: var(--paper); }
.footer-link:hover::before { opacity: 1; transform: scale(1.4); }

.footer-contact { display: grid; gap: 16px; }

.contact-row { display: grid; gap: 3px; }

.contact-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(212, 162, 76, .85);
}

.contact-value {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 232, .9);
  overflow-wrap: anywhere;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 241, 232, .5);
}

.footer-bottom {
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(207, 199, 184, .16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
}

.footer-closing {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(212, 162, 76, .88);
}

.footer-icp {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: rgba(245, 241, 232, .48);
}

/* ---------- 8. 通用组件 ---------- */
/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition:
    background-color var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease),
    transform var(--t-fast) var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 32px -22px rgba(212, 162, 76, .95);
}
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-mid); }

.btn--ghost {
  background: transparent;
  border-color: var(--hair);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink-mid); background: var(--card); }

.btn--sm { padding: 9px 18px; font-size: 13px; }

/* 编号胶囊 */
.index-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  border: 1px solid transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}

.index-chip--ghost {
  background: transparent;
  border-color: rgba(212, 162, 76, .45);
  color: var(--gold);
}

/* 卡片 */
.card {
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  background: var(--card);
  box-shadow: 0 28px 54px -46px rgba(14, 42, 71, .85);
}

.card--gold {
  background: var(--gold-soft);
  border-color: rgba(212, 162, 76, .55);
}

.card--ink {
  background: var(--ink);
  border-color: var(--ink-mid);
  color: rgba(245, 241, 232, .82);
}

.card--ink h2,
.card--ink h3,
.card--ink h4 { color: var(--paper); }

.card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  margin-bottom: 14px;
}

.card-title { font-size: clamp(18px, 2vw, 23px); }
.card-text { max-width: 34em; color: var(--graphite); font-size: 15.5px; }
.card--ink .card-text { color: rgba(245, 241, 232, .7); }

/* 面包屑 */
.breadcrumb { margin-bottom: clamp(18px, 2.4vw, 30px); }

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-mist);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item::after {
  content: "/";
  color: var(--hair);
}

.breadcrumb-item:last-child::after { content: none; }

.breadcrumb-link { transition: color var(--t) var(--ease); }
.breadcrumb-link:hover { color: var(--brick); }

.breadcrumb-current { color: var(--ink); font-weight: 700; }

/* 图片容器（共享基础规则，页面阶段放图） */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  background:
    linear-gradient(150deg, rgba(14, 42, 71, .09) 0%, rgba(212, 162, 76, .16) 100%);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media--16-9 { aspect-ratio: 16 / 9; }
.media--4-3 { aspect-ratio: 4 / 3; }
.media--3-2 { aspect-ratio: 3 / 2; }
.media--1-1 { aspect-ratio: 1 / 1; }

.media-caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-mist);
}

/* 主题筛选 */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair);
  background: rgba(255, 253, 248, .72);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-mist);
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}

.filter-btn:hover { color: var(--ink); background: rgba(14, 42, 71, .07); }

.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.filter-count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: .72;
}

[data-filter-item].is-filtered-out { display: none; }

[data-filter-item].is-filter-in { animation: jiuyi-filter-in .3s var(--ease) both; }

@keyframes jiuyi-filter-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* 滚动显现 */
.js-on .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .52s var(--ease), transform .52s var(--ease);
}

.js-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 9. 响应式 ---------- */
@media (min-width: 1200px) {
  .nav-index { display: inline; }
}

@media (max-width: 1100px) {
  .header-shell { gap: 10px; }
  .nav-link { padding: 9px 11px; font-size: 13.5px; }
  .utility-link { padding: 9px 12px; font-size: 12.5px; }
}

@media (max-width: 1023px) {
  html { scroll-padding-top: 108px; }

  body { padding-top: clamp(88px, 13vw, 104px); }

  .grid--split { grid-template-columns: minmax(0, 1fr); }

  .header-shell {
    flex-wrap: wrap;
    gap: 0;
    padding: 9px 12px 9px 14px;
    border-radius: 26px;
  }

  .brand-text { display: none; }

  .nav-toggle { display: inline-flex; }

  .header-utility { display: none; }

  .site-nav {
    order: 3;
    flex: 1 1 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height var(--t-slow) var(--ease),
      opacity var(--t-fast) var(--ease),
      margin-top var(--t-slow) var(--ease);
  }

  [data-header][data-open] .site-nav,
  .site-nav[data-open] {
    max-height: 70vh;
    opacity: 1;
    margin-top: 8px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(212, 162, 76, .22);
  }

  .nav-link {
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav-link[aria-current="page"] { border-radius: 16px; }

  .nav-index { display: inline; font-size: 11px; }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .header-shell { padding: 7px 10px; border-radius: 22px; }
  .brand-mark { font-size: 17px; }
  .nav-toggle { padding: 8px 12px; font-size: 12px; letter-spacing: .06em; }

  .footer-inner { grid-template-columns: minmax(0, 1fr); }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar { width: 100%; }
  .filter-btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- 10. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js-on .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-progress-bar { transition: none !important; }
}
