/* ==========================================================================
   米兰体育在线 — /assets/site.css
   共享外壳：重置 / 令牌 / 中文排版 / 侧边轨道头部 / 印刷页脚 / 基础组件
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F4EFE6;
  color: #14100E;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

::selection { background: #B3122B; color: #FBF7F0; }

/* ---------- 2. 令牌 ---------- */
:root {
  --paper: #F4EFE6;
  --paper-lift: #FBF7F0;
  --ink: #14100E;
  --ink-soft: #2A211C;
  --red: #B3122B;
  --red-deep: #6E0E1D;
  --orange: #E0662A;
  --teal: #1F8F84;
  --indigo: #3B4A9C;
  --ash: #8A8377;
  --night: #0E1F22;

  --font-display: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-label: "Oswald", "Arial Narrow", "Noto Sans SC", "PingFang SC", sans-serif;
  --font-num: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --rail-w: 88px;
  --bar-h: 58px;
  --wrap: 1180px;
  --gap: 24px;

  --shadow-panel: 8px 8px 0 rgba(42, 33, 28, 0.06);
  --shadow-note: 3px 3px 0 rgba(224, 102, 42, 0.18);
  --edge: rgba(42, 33, 28, 0.22);
  --edge-dark: rgba(244, 239, 230, 0.14);
}

/* ---------- 3. 焦点与跳转 ---------- */
:focus-visible {
  outline: 2px solid #B3122B;
  outline-offset: 3px;
}

.rail :focus-visible,
.site-foot :focus-visible {
  outline-color: #E0662A;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-200%);
  padding: 10px 16px;
  background: #B3122B;
  color: #FBF7F0;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.skip-link:focus { transform: translateY(0); }

/* ---------- 4. 侧边轨道头部 ---------- */
.rail {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: var(--rail-w);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 6px 22px;
  background: #14100E;
  color: #F4EFE6;
  border-right: 1px solid var(--edge-dark);
  overflow-y: auto;
  overflow-x: hidden;
}

.rail::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(224, 102, 42, 0) 0%, #E0662A 100%);
  pointer-events: none;
}

/* 品牌 —— 桌面端竖排 */
.rail__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 0 12px;
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}

.rail__brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid #E0662A;
}

.rail__brand-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(244, 239, 230, 0.38);
}

.rail__brand-cn {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #F4EFE6;
}

/* 汉堡按钮 —— 桌面端隐藏 */
.rail__toggle { display: none; }

.rail__toggle-bar,
.rail__toggle-text { display: none; }

/* 导航 */
.rail__nav {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rail__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.rail__item { width: 100%; }

.rail__link {
  display: block;
  position: relative;
  padding: 11px 4px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 230, 0.66);
  border-left: 2px solid transparent;
  overflow-wrap: anywhere;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.rail__link:hover {
  color: #F4EFE6;
  background: rgba(244, 239, 230, 0.07);
}

.rail__link[aria-current="page"] {
  color: #FBF7F0;
  background: rgba(179, 18, 43, 0.24);
  border-left-color: #B3122B;
}

.rail__idx { display: none; }

.rail__tags { display: none; }
.rail__cta { display: none; }

/* 滚动进度条 */
.rail-progress {
  position: fixed;
  top: 0;
  left: var(--rail-w);
  right: 0;
  height: 2px;
  z-index: 80;
  background: rgba(138, 131, 119, 0.18);
  pointer-events: none;
}

.rail-progress__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #E0662A 0%, #B3122B 55%, #3B4A9C 100%);
}

/* 返回顶部 */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #14100E;
  color: #F4EFE6;
  border: 1px solid #B3122B;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background-color 0.18s ease;
}

.to-top[data-visible] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: #B3122B;
  border-color: #B3122B;
}

.to-top__mark {
  font-family: var(--font-num);
  font-size: 13px;
  line-height: 1;
}

/* 移动端：轨道变顶栏 */
@media (max-width: 1023px) {
  .rail {
    right: 0;
    bottom: auto;
    width: 100%;
    height: var(--bar-h);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--edge-dark);
    overflow: visible;
  }

  .rail::after { display: none; }

  .rail__brand {
    flex-direction: row;
    gap: 9px;
    padding: 0;
  }

  .rail__brand-mark { width: 20px; height: 20px; }
  .rail__brand-mark::after { left: 3px; top: 3px; right: -3px; bottom: -3px; }

  .rail__brand-cn {
    writing-mode: horizontal-tb;
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .rail__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 38px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(244, 239, 230, 0.32);
    color: #F4EFE6;
    cursor: pointer;
  }

  .rail__toggle-bar {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .rail__toggle-text {
    display: block;
    font-family: var(--font-label);
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.1em;
    opacity: 0.72;
  }

  .rail[data-open] .rail__toggle-bar:first-child { transform: translateY(2.5px) rotate(45deg); }
  .rail[data-open] .rail__toggle-bar:nth-child(2) { transform: translateY(-2.5px) rotate(-45deg); }

  .rail__nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--bar-h);
    bottom: 0;
    flex: none;
    display: block;
    padding: 18px 18px 44px;
    background: #14100E;
    border-top: 1px solid var(--edge-dark);
    overflow-y: auto;
    transform: translateX(-102%);
    visibility: hidden;
    transition: transform 0.26s ease, visibility 0.26s ease;
  }

  .rail[data-open] .rail__nav {
    transform: translateX(0);
    visibility: visible;
  }

  .rail__list { gap: 0; }

  .rail__link {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 15px 2px;
    text-align: left;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: rgba(244, 239, 230, 0.8);
    border-left: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  }

  .rail__link[aria-current="page"] {
    background: transparent;
    color: #FBF7F0;
    border-left: 0;
    box-shadow: inset 3px 0 0 #B3122B;
    padding-left: 14px;
  }

  .rail__idx {
    display: inline;
    font-family: var(--font-num);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #8A8377;
  }

  .rail__link[aria-current="page"] .rail__idx { color: #E0662A; }

  .rail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 0;
  }

  .rail__tag {
    padding: 5px 10px;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #F4EFE6;
    border: 1px solid rgba(244, 239, 230, 0.3);
  }

  .rail__cta {
    display: inline-flex;
    margin-top: 26px;
    padding: 12px 22px;
    background: #B3122B;
    color: #FBF7F0;
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .rail__cta:hover { background: #6E0E1D; }

  .rail-progress { left: 0; top: var(--bar-h); }
}

body[data-nav-open] { overflow: hidden; }

/* 主体偏移：桌面让轨道，移动让顶栏 */
@media (min-width: 1024px) {
  body { padding-left: var(--rail-w); }
}

@media (max-width: 1023px) {
  body { padding-top: var(--bar-h); }
}

/* ---------- 5. 印刷页脚 ---------- */
.site-foot {
  position: relative;
  margin-top: clamp(48px, 7vw, 96px);
  background: #14100E;
  color: rgba(244, 239, 230, 0.76);
  border-top: 3px solid #B3122B;
}

.site-foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: repeating-linear-gradient(90deg, #E0662A 0 10px, transparent 10px 20px);
  opacity: 0.45;
  pointer-events: none;
}

.site-foot__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 62px) 28px 30px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 56px);
}

.site-foot__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-foot__mark {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #E0662A;
  flex: 0 0 auto;
}

.site-foot__mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(244, 239, 230, 0.32);
}

.site-foot__name {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #F4EFE6;
}

.site-foot__line {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8A8377;
}

.site-foot__note {
  margin-top: 4px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.58);
}

.site-foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.foot-col__title {
  margin: 0 0 14px;
  padding-bottom: 8px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #F4EFE6;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}

.foot-col__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-col__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(244, 239, 230, 0.7);
  text-decoration: none;
  transition: color 0.16s ease;
}

.foot-col__list a::before {
  content: "";
  width: 8px;
  height: 1px;
  flex: 0 0 auto;
  background: #B3122B;
  transition: width 0.16s ease, background-color 0.16s ease;
}

.foot-col__list a:hover { color: #FBF7F0; }
.foot-col__list a:hover::before { width: 16px; background: #E0662A; }

.site-foot__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 28px 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  font-size: 12px;
  color: #8A8377;
  border-top: 1px solid rgba(244, 239, 230, 0.13);
}

.site-foot__copy {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

.site-foot__contact {
  max-width: 72ch;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .site-foot__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-foot__bar { flex-direction: column; }
}

@media (max-width: 420px) {
  .site-foot__cols { grid-template-columns: 1fr; }
}

/* ---------- 6. 正文容器与网格 ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.wrap--narrow { max-width: 820px; }

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}

.c2 { grid-column: span 2; }
.c3 { grid-column: span 3; }
.c4 { grid-column: span 4; }
.c5 { grid-column: span 5; }
.c6 { grid-column: span 6; }
.c7 { grid-column: span 7; }
.c8 { grid-column: span 8; }
.c9 { grid-column: span 9; }
.c10 { grid-column: span 10; }
.c12 { grid-column: span 12; }

@media (max-width: 1023px) {
  .grid-12 { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
  .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c12 { grid-column: span 6; }
}

@media (max-width: 640px) {
  .grid-12 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c12 { grid-column: span 2; }
}

/* ---------- 7. 纸张面板 ---------- */
.panel {
  position: relative;
  padding: clamp(22px, 3.2vw, 46px);
  background: var(--paper-lift);
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-panel), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.panel--night {
  background: var(--night);
  color: rgba(244, 239, 230, 0.84);
  border-color: var(--edge-dark);
  box-shadow: 8px 8px 0 rgba(14, 31, 34, 0.18);
}

.panel::before,
.panel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #B3122B;
  pointer-events: none;
}

.panel::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.panel::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

/* ---------- 8. 章节标题 ---------- */
.sec-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.sec-head__no {
  padding: 2px 7px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #B3122B;
  border: 1px solid currentColor;
}

.sec-head__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: -0.01em;
}

.sec-head__note {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ash);
}

/* ---------- 9. 基础组件 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B3122B;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.lede {
  max-width: 62ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--ink-soft);
}

.num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: repeating-linear-gradient(90deg, rgba(42, 33, 28, 0.35) 0 6px, transparent 6px 12px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.btn--solid {
  background: #B3122B;
  border-color: #B3122B;
  color: #FBF7F0;
}

.btn--solid:hover {
  background: #6E0E1D;
  border-color: #6E0E1D;
  color: #FBF7F0;
}

.btn--ghost {
  border-color: rgba(244, 239, 230, 0.45);
  color: #F4EFE6;
}

.btn--ghost:hover {
  background: #F4EFE6;
  border-color: #F4EFE6;
  color: #14100E;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border: 1px solid var(--ash);
}

.tag--red { color: #B3122B; border-color: #B3122B; }
.tag--warm { color: #E0662A; border-color: #E0662A; }
.tag--cold { color: #3B4A9C; border-color: #3B4A9C; }

.crumbs {
  margin: 0;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ash);
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.crumbs li { display: inline-flex; align-items: center; }

.crumbs li + li::before {
  content: "/";
  margin: 0 8px;
  color: rgba(138, 131, 119, 0.6);
}

.crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.crumbs a:hover { color: #B3122B; }

.crumbs [aria-current="page"] { color: #B3122B; }

/* 浮动注记 */
.float-note {
  display: inline-block;
  padding: 9px 12px;
  background: var(--paper-lift);
  border: 1px solid #E0662A;
  box-shadow: var(--shadow-note);
  font-family: var(--font-num);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.float-note__k {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E0662A;
}

.float-note__v {
  font-size: 18px;
  color: var(--ink);
}

/* ---------- 10. 可复用图片容器 ---------- */
.figure-frame {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--night);
  border: 1px solid rgba(20, 16, 14, 0.5);
  box-shadow: var(--shadow-panel);
}

.figure-frame::before,
.figure-frame::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(224, 102, 42, 0.9);
  pointer-events: none;
  z-index: 2;
}

.figure-frame::before {
  top: 6px;
  left: 6px;
  border-right: 0;
  border-bottom: 0;
}

.figure-frame::after {
  bottom: 6px;
  right: 6px;
  border-left: 0;
  border-top: 0;
}

.figure-frame__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure-frame__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.figure-frame__cap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 100%;
  padding: 6px 12px;
  background: rgba(20, 16, 14, 0.82);
  color: rgba(244, 239, 230, 0.82);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.figure-frame--16x9 { aspect-ratio: 16 / 9; }
.figure-frame--4x3 { aspect-ratio: 4 / 3; }
.figure-frame--3x2 { aspect-ratio: 3 / 2; }
.figure-frame--1x1 { aspect-ratio: 1 / 1; }
.figure-frame--21x9 { aspect-ratio: 21 / 9; }

@supports not (aspect-ratio: 16 / 9) {
  .figure-frame { min-height: 220px; }
}

/* ---------- 11. 显现动画 ---------- */
html[data-js="on"] [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

html[data-js="on"] [data-reveal="shown"] {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 12. 章节跟随（页面可选钩子） ---------- */
[data-section-link][aria-current="location"] {
  color: #B3122B;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html[data-js="on"] [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .rail__nav { transition: none; }
}
