/* ============================================================
   维基体育移动端 · /assets/site.css
   设计原型：夜间球场数据看板 · 杂志报头 + 对角速度线
   ============================================================ */

/* ---------- 1. Reset 与全局基础 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
  scrollbar-color: var(--line) var(--bg-pitch);
}

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

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--bg-pitch);
}

/* ---------- 2. CSS 变量 ---------- */
:root {
  --bg-pitch: #061a13;
  --bg-forest: #0f3a2c;
  --bg-jade: #1e5b44;
  --gold: #d9b45b;
  --gold-bright: #f0d27a;
  --red: #b43a3a;
  --cream: #f3efe2;
  --mist: #a7c1b2;
  --line: #5b7f6d;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", sans-serif;
  --content-max: 1180px;
  --gutter: max(1.15rem, 4vw);
  --radius: 2px;
  --header-z: 90;
}

/* ---------- 3. 页面基底：灯光与草皮网格 ---------- */
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--cream);
  background:
    radial-gradient(120% 90% at 74% -14%, rgba(30, 91, 68, 0.5) 0%, rgba(217, 180, 91, 0.05) 40%, transparent 70%),
    linear-gradient(180deg, #0f3a2c 0%, #08271c 36%, #061a13 100%);
  background-color: var(--bg-pitch);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 4rem, rgba(217, 180, 91, 0.032) 4rem calc(4rem + 1px)),
    repeating-linear-gradient(0deg, transparent 0 4rem, rgba(217, 180, 91, 0.032) 4rem calc(4rem + 1px));
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(240, 210, 122, 0.05), transparent 80%);
}

.site-header,
.site-footer,
.site-main {
  position: relative;
  z-index: 1;
}

.site-main {
  display: block;
  padding: clamp(1.8rem, 4vw, 3.2rem) 0 4.5rem;
}

#main-content,
[id] {
  scroll-margin-top: 96px;
}

/* ---------- 4. 通用容器、网格与排版 ---------- */
.container {
  width: min(var(--content-max), 92.5vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(780px, 92.5vw);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

.section {
  margin: 0 0 clamp(2rem, 6vw, 3.5rem);
}

.entry-content {
  max-width: 68ch;
}

.entry-content > * + * {
  margin-top: 1em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.8rem 1.2rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.section-head__title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.section-head__meta {
  margin-left: auto;
  color: var(--mist);
  font-size: 0.82rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.display-num {
  font-family: var(--font-num);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--gold-bright);
}

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

/* ---------- 5. 跳过链接 ---------- */
.skip-link {
  position: absolute;
  left: 0.9rem;
  top: -5rem;
  z-index: 120;
  background: var(--gold-bright);
  color: var(--bg-pitch);
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 0.9rem;
}

/* ---------- 6. 头部：杂志报头 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--header-z);
  background: linear-gradient(180deg, rgba(6, 26, 19, 0.94) 0%, rgba(15, 58, 44, 0.88) 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(240, 210, 122, 0.04), 0 14px 28px -22px rgba(0, 0, 0, 0.85);
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold) 38%, transparent 88%);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9rem;
  height: 100%;
  pointer-events: none;
  opacity: 0.16;
  background: repeating-linear-gradient(-24deg, rgba(217, 180, 91, 0.4) 0 1px, transparent 1px 9px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 82%);
  mask-image: linear-gradient(90deg, transparent, #000 82%);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--content-max), 92.5vw);
  margin-inline: auto;
  padding: 1.15rem 0 1.05rem;
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(217, 180, 91, 0.2) 0%, rgba(217, 180, 91, 0.02) 100%);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.02;
  text-align: center;
  letter-spacing: 0.02em;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text__name {
  color: var(--cream);
  font-weight: 750;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.brand-text__sub {
  color: var(--mist);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.header-cta {
  flex: none;
}

/* ---------- 7. 主导航 ---------- */
.site-nav {
  border-top: 1px solid rgba(91, 127, 109, 0.55);
}

.site-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav__link {
  position: relative;
  display: block;
  padding: 0.8rem 1.02rem 0.85rem;
  color: var(--cream);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 1.02rem;
  right: 1.02rem;
  bottom: 0.5rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--gold-bright);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--gold-bright);
}

.site-nav__item--cta {
  display: none;
}

.site-nav__cta {
  width: 100%;
}

/* ---------- 8. 移动端导航开关 ---------- */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  color: var(--gold);
  background: rgba(15, 58, 44, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle__line {
  position: relative;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle__line::before {
  top: -5px;
}

.nav-toggle__line::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle__label {
  font-weight: 650;
}

/* ---------- 9. 通用按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-pitch);
  font-weight: 750;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #ffe39b 100%);
  color: var(--bg-pitch);
}

.btn--ghost {
  background: rgba(217, 180, 91, 0.06);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(217, 180, 91, 0.16);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn--slim {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
}

/* ---------- 10. 面包屑 ---------- */
.breadcrumbs {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--mist);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__link {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus-visible {
  color: var(--gold-bright);
  text-decoration: underline;
}

.breadcrumbs__sep {
  color: var(--line);
}

.breadcrumbs__current {
  color: var(--mist);
}

/* ---------- 11. 卡片 ---------- */
.card {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  background: linear-gradient(180deg, var(--bg-forest) 0%, rgba(15, 58, 44, 0.76) 100%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}

.card--flat {
  border-top-width: 1px;
}

.card__kicker {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.card__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 750;
  color: var(--cream);
}

.card__num {
  font-family: var(--font-num);
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--gold-bright);
}

.card__text {
  font-size: 0.95rem;
  color: var(--mist);
}

.card__meta {
  margin-top: 0.9rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(91, 127, 109, 0.6);
  font-size: 0.78rem;
  color: var(--mist);
}

/* ---------- 12. 图片容器占位 ---------- */
.figure {
  margin: 0;
  position: relative;
}

.media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3a2c 0%, #1e5b44 100%);
  border: 1px solid var(--line);
}

.media--16x9 {
  aspect-ratio: 16 / 9;
}

.media--4x3 {
  aspect-ratio: 4 / 3;
}

.media--tall {
  aspect-ratio: 3 / 4;
}

.media--wide {
  aspect-ratio: 21 / 9;
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(30, 91, 68, 0.12) 0%, rgba(217, 180, 91, 0.08) 100%);
  color: var(--gold);
  font-family: var(--font-num);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.media__placeholder::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 32%;
  background: repeating-linear-gradient(-24deg, transparent 0 12px, rgba(217, 180, 91, 0.18) 12px 13px);
  opacity: 0.7;
}

.figure__cap {
  padding: 0.6rem 0.15rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--mist);
}

/* ---------- 13. 数据表 ---------- */
.table-wrap {
  overflow-x: auto;
  background: var(--bg-forest);
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.data-table th,
.data-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(91, 127, 109, 0.5);
  text-align: left;
  white-space: nowrap;
  font-size: 0.94rem;
}

.data-table thead th {
  background: var(--bg-jade);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(30, 91, 68, 0.35);
}

.data-table .num {
  font-family: var(--font-num);
  font-weight: 700;
}

/* ---------- 14. 标签与分页 ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  background: rgba(30, 91, 68, 0.5);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge--red {
  background: rgba(180, 58, 58, 0.25);
  border-color: var(--red);
  color: var(--cream);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-num);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pagination__link:hover,
.pagination__link:focus-visible,
.pagination__link[aria-current="page"] {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(217, 180, 91, 0.08);
}

/* ---------- 15. 页脚 ---------- */
.site-footer {
  margin-top: clamp(2.5rem, 7vw, 5rem);
  background:
    radial-gradient(90% 110% at 82% 0%, rgba(217, 180, 91, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0f3a2c 0%, #0a2b20 44%, #061a13 100%);
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 55%, var(--gold-bright) 100%);
  opacity: 0.85;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18rem;
  height: 10rem;
  pointer-events: none;
  background: repeating-linear-gradient(-24deg, transparent 0 1.2rem, rgba(217, 180, 91, 0.05) 1.2rem 1.3rem);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0 2rem;
}

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

.footer-brand__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
}

.footer-brand__tag {
  max-width: 34ch;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--mist);
}

.footer-brand .btn {
  margin-top: 1.1rem;
}

.footer-heading {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(91, 127, 109, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 750;
}

.footer-nav__list {
  display: grid;
  gap: 0.45rem;
}

.footer-nav__link {
  color: var(--cream);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav__link:hover,
.footer-nav__link:focus-visible {
  color: var(--gold-bright);
}

.footer-contact__item {
  margin: 0.25rem 0;
  font-size: 0.92rem;
  color: var(--cream);
}

.footer-contact__link {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact__link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(91, 127, 109, 0.55);
}

.footer-legal__link {
  color: var(--mist);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-legal__link:hover,
.footer-legal__link:focus-visible {
  color: var(--gold-bright);
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--mist);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(91, 127, 109, 0.55);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: min(var(--content-max), 92.5vw);
  margin-inline: auto;
  padding: 1.1rem 0 1.35rem;
  text-align: center;
}

.footer-icp,
.footer-copy {
  font-size: 0.8rem;
  color: var(--mist);
  font-variant-numeric: tabular-nums;
}

/* ---------- 16. 显现动画与返回顶部 ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: var(--header-z);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  background: var(--bg-forest);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--bg-jade);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ---------- 17. 响应式 ---------- */
@media (min-width: 760px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 1.5rem;
  }

  .footer-bottom__inner {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 920px) {
  .header-cta {
    display: none;
  }

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

  .masthead {
    padding: 0.9rem 0;
  }

  .brand-text__name {
    font-size: 1.05rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: calc(var(--header-z) - 5);
    background: linear-gradient(180deg, #0f3a2c 0%, #0a2b20 100%);
    border-top: none;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 24px 32px -24px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav__list {
    flex-direction: column;
    padding: 0.35rem 0 0.9rem;
  }

  .site-nav__item + .site-nav__item {
    border-top: 1px solid rgba(91, 127, 109, 0.35);
  }

  .site-nav__link {
    padding: 1.02rem 1.15rem;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link[aria-current="page"] {
    border-left: 3px solid var(--gold);
    background: rgba(30, 91, 68, 0.85);
    color: var(--gold-bright);
  }

  .site-nav__item--cta {
    display: block;
    padding: 1rem 1.15rem 0.3rem;
    border-top: 1px solid rgba(91, 127, 109, 0.35);
  }
}

/* ---------- 18. 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-to-top {
    transition: none;
  }
}
