/* ========== Reset & Tokens ========== */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--rock);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: var(--blue);
  transition: color .2s ease;
}
button {
  font: inherit;
  cursor: pointer;
}

:root {
  /* 矿物色系 */
  --rock: #292A2D;
  --rock-soft: #393A3F;
  --paper: #F5F1E8;
  --paper-dim: rgba(245, 241, 232, 0.74);
  --moss: #5A7247;
  --terracotta: #C66A4D;
  --cold-gray: #8D99AE;

  /* 品牌运动色 */
  --red: #E63946;
  --red-dark: #B92B36;
  --blue: #1D3557;
  --blue-soft: #2C4770;
  --gold: #F4A261;

  /* 语义 */
  --ink: #1F2023;
  --text-light: rgba(245, 241, 232, 0.84);
  --line-rgba: rgba(41, 42, 45, 0.12);
  --line-light: rgba(245, 241, 232, 0.14);

  /* 字体 */
  --font-display: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  /* 尺寸 */
  --header-height: 64px;
  --container-max: 1280px;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.22);
}

/* ========== Accessibility ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1200;
  background: var(--gold);
  color: var(--rock);
  padding: 12px 20px;
  font-weight: 800;
  border-radius: 4px;
  text-decoration: none;
  transition: top .25s ease;
}
.skip-link:focus {
  top: 16px;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title {
  font-size: clamp(28px, 4.5vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--red);
  transform: skewX(-18deg);
  flex: 0 0 auto;
}

/* ========== Container / Section ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 72px 0;
}
.section--dark {
  background: linear-gradient(145deg, var(--rock) 0%, #202124 100%);
  color: var(--text-light);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--paper);
}
.section--moss {
  background: var(--moss);
  color: var(--paper);
}
.section--moss h1,
.section--moss h2,
.section--moss h3,
.section--moss h4 {
  color: var(--paper);
}
.section--tint {
  background: rgba(90, 114, 71, 0.1);
}
.field-line {
  height: 3px;
  border: 0;
  background: linear-gradient(90deg, var(--moss) 0%, var(--terracotta) 60%, transparent 100%);
  margin: 28px 0;
  width: 100%;
}

/* ========== Page Head ========== */
.page-head {
  position: relative;
  padding: calc(var(--header-height) + 56px) 0 48px;
  background: linear-gradient(180deg, rgba(29, 53, 87, 0.08) 0%, rgba(29, 53, 87, 0) 100%);
}
.page-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}
.page-head__title {
  font-size: clamp(36px, 6vw, 68px);
  margin-top: 14px;
  line-height: 1.06;
}
.page-head__desc {
  margin-top: 16px;
  max-width: 640px;
  color: var(--cold-gray);
  font-size: 16px;
  line-height: 1.7;
}
.page-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--cold-gray);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--cold-gray);
}
.breadcrumb__link {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb__link:hover {
  color: var(--red);
  text-decoration: underline;
}
.breadcrumb__current {
  color: var(--cold-gray);
  font-weight: 600;
}

/* ========== Editorial Grid ========== */
.editorial-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.editorial-grid__aside {
  border-right: 1px solid var(--line-rgba);
  padding-right: 32px;
  font-size: 14px;
  color: var(--cold-gray);
  position: sticky;
  top: calc(var(--header-height) + 32px);
}
.editorial-grid__main {
  min-width: 0;
}

/* ========== Hero Split ========== */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 680px;
  min-height: 100svh;
}
.hero-split__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height) + 56px) 8vw 64px;
  background: var(--rock);
  background-image:
    radial-gradient(circle at 16% 86%, rgba(90, 114, 71, 0.38) 0%, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 70%);
  color: var(--text-light);
}
.hero-split__content h1,
.hero-split__content h2,
.hero-split__content h3 {
  color: var(--paper);
}
.hero-split__content-inner {
  width: 100%;
  max-width: 560px;
}
.hero-split__visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 22% 22%, rgba(244, 162, 97, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 78%, rgba(230, 57, 70, 0.3) 0%, transparent 50%),
    linear-gradient(145deg, #162538 0%, #0E1A2C 100%);
  min-height: 320px;
}
.hero-split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-split__visual::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: 3px solid rgba(244, 162, 97, 0.26);
  border-radius: 12px;
  box-shadow: 0 0 0 64px rgba(230, 57, 70, 0.08), 0 0 0 128px rgba(29, 53, 87, 0.16);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(41, 42, 45, 0.84) 0%, rgba(41, 42, 45, 0.2) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(41, 42, 45, 0.97);
  border-bottom-color: rgba(230, 57, 70, 0.35);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 16px;
}
.site-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  justify-self: start;
  white-space: nowrap;
}
.site-brand__mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
}
.site-brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--paper);
  letter-spacing: 0.08em;
}

/* Header CTA */
.site-header__cta {
  justify-self: end;
  white-space: nowrap;
  font-size: 14px;
  padding: 9px 22px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

/* Navigation */
.site-nav {
  justify-self: center;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  color: rgba(245, 241, 232, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color .2s ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav__link:hover {
  color: var(--paper);
}
.site-nav__link:hover::after {
  transform: scaleX(1);
}
.site-nav__link[aria-current="page"] {
  color: var(--paper);
  font-weight: 800;
}
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}
.site-nav__link[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: translateX(-50%) rotate(45deg);
}

/* Nav toggle */
.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform .2s ease, opacity .2s ease;
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  z-index: 1100;
  pointer-events: none;
}

/* ========== Buttons ========== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 2em;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, #9C2330 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.24);
}
.btn--ghost {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 0;
}
.btn--ghost::after {
  display: none;
}

/* ========== Cards & Tags ========== */
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(41, 42, 45, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 6px;
  height: 32px;
  background: var(--red);
  border-radius: 0 0 4px 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px 4px 12px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
  background: var(--terracotta);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tag--red {
  background: var(--red);
}
.tag--blue {
  background: var(--blue);
}
.tag--gold {
  background: var(--gold);
  color: var(--rock);
}

/* ========== Metrics ========== */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(245, 241, 232, 0.18);
  margin-top: 40px;
  padding-top: 20px;
}
.metrics-bar__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.metrics-bar__label {
  font-size: 13px;
  color: var(--paper-dim);
}

/* ========== Image Frame ========== */
.img-frame {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--moss) 0%, var(--blue) 120%);
  border-radius: 4px;
  min-height: 160px;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.img-frame:hover img {
  transform: scale(1.04);
}

/* ========== Back Top ========== */
.back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.38);
}
.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.5);
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--rock);
  color: rgba(245, 241, 232, 0.74);
  margin-top: 80px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 32%, var(--gold) 32%, var(--gold) 44%, var(--blue) 44%, var(--blue) 100%);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(230, 57, 70, 0.07) 0%, transparent 38%),
    linear-gradient(240deg, rgba(29, 53, 87, 0.32) 0%, transparent 45%);
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 24px 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: start;
}
.site-footer__brand {
  grid-column: span 5;
}
.site-footer__nav {
  grid-column: span 2;
}
.site-footer__contact {
  grid-column: span 3;
}
.site-footer__legal {
  grid-column: span 2;
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--paper);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.site-footer__brand-name::after {
  content: " KOK SPORTS";
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-left: 6px;
  font-weight: 700;
}
.site-footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 480px;
}
.site-footer__trust {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(245, 241, 232, 0.06);
  border-left: 3px solid var(--gold);
  color: rgba(245, 241, 232, 0.62);
}
.site-footer__heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.site-footer__heading::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
  transform: skewX(-18deg);
}
.site-footer__links li {
  margin-bottom: 10px;
}
.site-footer__links a,
.site-footer__legal-links a {
  color: rgba(245, 241, 232, 0.68);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease, padding-left .2s ease;
}
.site-footer__links a:hover,
.site-footer__legal-links a:hover {
  color: var(--paper);
  padding-left: 4px;
}
.site-footer__contact-list {
  font-size: 14px;
  line-height: 1.7;
}
.site-footer__contact-list li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.site-footer__contact-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 9px;
  color: var(--red);
}
.site-footer__contact-note {
  margin-top: 8px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 13px;
}
.site-footer__legal-links {
  margin-bottom: 14px;
}
.site-footer__legal-links li {
  margin-bottom: 10px;
}
.site-footer__icp {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 6px;
}
.site-footer__copy {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.44);
}
.site-footer__domain {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.3);
  margin-top: 4px;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    padding: 0 16px;
  }
  .site-header__cta {
    justify-self: center;
    font-size: 13px;
    padding: 8px 16px;
  }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: rgba(41, 42, 45, 0.98);
    border-top: 1px solid rgba(230, 57, 70, 0.5);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
  }
  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }
  .site-nav__item {
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }
  .site-nav__item:last-child {
    border-bottom: 0;
  }
  .site-nav__link {
    display: block;
    padding: 16px 8px;
    font-size: 17px;
    color: rgba(245, 241, 232, 0.78);
  }
  .site-nav__link:hover {
    background: rgba(230, 57, 70, 0.1);
    color: var(--paper);
  }
  .site-nav__link[aria-current="page"] {
    background: rgba(230, 57, 70, 0.12);
    color: var(--paper);
  }
  .site-nav__link[aria-current="page"]::before {
    display: none;
  }
  .site-nav__toggle {
    display: inline-flex;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split__content {
    padding: calc(var(--header-height) + 48px) 6vw 48px;
  }
  .hero-split__visual {
    min-height: 280px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .editorial-grid__aside {
    border-right: 0;
    border-bottom: 1px solid var(--line-rgba);
    padding-right: 0;
    padding-bottom: 16px;
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 36px;
  }
  .site-footer__brand {
    grid-column: span 2;
  }
  .site-footer__nav {
    grid-column: span 1;
  }
  .site-footer__contact {
    grid-column: span 1;
  }
  .site-footer__legal {
    grid-column: span 2;
  }
}

@media (max-width: 599px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-header__cta {
    display: none;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__brand,
  .site-footer__nav,
  .site-footer__contact,
  .site-footer__legal {
    grid-column: span 1;
  }
  .site-footer__inner {
    padding: 48px 16px 24px;
  }
  .back-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .metrics-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========== Reduced Motion ========== */
@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;
  }
  .site-nav,
  .site-nav[data-open="true"],
  .btn,
  .card,
  .img-frame img,
  .back-top,
  .scroll-progress {
    transition: none;
  }
}
