/* ============================================================
   全民体育看台 · 共享样式表  /assets/site.css
   高原夜空深蓝主底 · 精密网格 · 记分牌橙红强调
   ============================================================ */

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

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

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

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

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

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

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

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

hr {
  border: 0;
}

/* ---------- 2. 变量 ---------- */
:root {
  /* 品牌色板 */
  --ink: #0A1424;
  --ink-2: #12203A;
  --line: #24365A;
  --score: #FF5C2B;
  --pitch: #21C07A;
  --pitch-deep: #0E7A52;
  --lake: #3FC9E0;
  --paper: #F4F7FB;
  --muted: #93A3BD;
  --alert: #FFC542;

  /* 字体 */
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  /* 五级字号阶梯 */
  --step-1: 0.75rem;
  --step-2: 0.875rem;
  --step-3: 1.125rem;
  --step-4: 1.75rem;
  --step-5: clamp(2.4rem, 6vw, 5.2rem);

  /* 尺度 */
  --shell: 1440px;
  --gutter: clamp(16px, 3vw, 48px);
  --tilt: -1.5deg;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. 基础排版 ---------- */
body {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    radial-gradient(1400px 720px at 80% -12%, rgba(63, 201, 224, 0.10), transparent 62%),
    radial-gradient(1000px 620px at 4% 2%, rgba(255, 92, 43, 0.08), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--paper);
}

h3,
h4 {
  font-weight: 400;
}

p {
  text-wrap: pretty;
}

strong,
b {
  font-weight: 500;
  color: var(--paper);
}

::selection {
  background: var(--score);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 2px;
}

/* ---------- 4. 布局骨架 ---------- */
.wrap {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-9 { grid-column: span 9; }
.span-10 { grid-column: span 10; }
.span-12 { grid-column: span 12; }

.rule {
  height: 1px;
  background: var(--line);
  margin-block: clamp(28px, 4vw, 56px);
}

/* ---------- 5. 索引字与区块标题 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--step-1);
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 1px;
  background: var(--score);
}

.eyebrow--plain::before {
  display: none;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  padding-bottom: 18px;
  margin-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 300;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--step-1);
  letter-spacing: 0.16em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.section-more:hover {
  color: var(--lake);
  border-color: var(--lake);
}

/* ---------- 6. 按钮 ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-line: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-line);
  font-family: var(--font-sans);
  font-size: var(--step-1);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease),
    border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.btn:hover {
  border-color: var(--lake);
  color: var(--lake);
  transform: translateY(-2px);
}

.btn--primary {
  --btn-bg: var(--score);
  --btn-fg: var(--ink);
  --btn-line: var(--score);
  font-weight: 500;
}

.btn--primary:hover {
  background: transparent;
  color: var(--score);
  border-color: var(--score);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--muted);
  --btn-line: var(--line);
}

.btn--ghost:hover {
  color: var(--lake);
  border-color: var(--lake);
}

.btn--block {
  width: 100%;
}

/* ---------- 7. 面包屑 ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-block: 20px;
  font-size: var(--step-1);
  letter-spacing: 0.14em;
  color: var(--muted);
}

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

.crumbs li + li::before {
  content: "/";
  color: var(--line);
}

.crumbs a {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.crumbs a:hover {
  color: var(--lake);
}

.crumbs [aria-current="page"] {
  color: var(--paper);
}

/* ---------- 8. 正文容器 ---------- */
.prose {
  max-width: 68ch;
  color: rgba(244, 247, 251, 0.86);
  font-size: 1rem;
  line-height: 1.85;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, var(--step-4));
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  color: var(--paper);
}

.prose h3 {
  font-size: var(--step-3);
  font-weight: 400;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  color: var(--paper);
}

.prose ul,
.prose ol {
  padding-left: 1.2em;
}

.prose li {
  position: relative;
  margin-bottom: 0.5em;
  list-style: none;
}

.prose li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--score);
}

.prose a {
  color: var(--lake);
  border-bottom: 1px solid rgba(63, 201, 224, 0.35);
  transition: border-color 0.2s var(--ease);
}

.prose a:hover {
  border-bottom-color: var(--lake);
}

/* ---------- 9. 数据组件 ---------- */
.card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(18px, 2vw, 28px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: var(--lake);
  transform: translateY(-2px);
}

.plate {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-left: 2px solid var(--pitch);
  background: rgba(18, 32, 58, 0.72);
  font-size: var(--step-2);
  line-height: 1.7;
  color: var(--muted);
}

.score-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.score-strip::-webkit-scrollbar {
  height: 6px;
}

.score-strip::-webkit-scrollbar-track {
  background: transparent;
}

.score-strip::-webkit-scrollbar-thumb {
  background: var(--line);
}

.score-strip > * {
  scroll-snap-align: start;
}

.score-item {
  flex: 0 0 auto;
  min-width: 214px;
  display: grid;
  gap: 8px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.score-league {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--pitch);
}

.score-teams {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: var(--step-2);
  color: var(--paper);
}

.score-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--score);
  font-variant-numeric: tabular-nums;
}

.score-meta {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.score-meta em {
  font-style: normal;
  color: var(--alert);
}

.stat {
  display: grid;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--score);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ---------- 10. 图片容器基础规则 ---------- */
.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: var(--media-ratio, 16 / 10);
  border: 1px solid var(--line);
  background-color: var(--ink-2);
  background-image:
    linear-gradient(rgba(36, 54, 90, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 54, 90, 0.55) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
}

.media-frame > img,
.media-frame > picture,
.media-frame > svg,
.media-frame > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame--wide { --media-ratio: 21 / 9; }
.media-frame--tall { --media-ratio: 3 / 4; }
.media-frame--square { --media-ratio: 1 / 1; }
.media-frame--ball { --media-ratio: 4 / 3; }

.media-frame .plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 0;
  border-top: 2px solid var(--pitch);
  background: rgba(10, 20, 36, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---------- 11. 页头 ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -72px;
  z-index: 90;
  padding: 10px 16px;
  background: var(--score);
  color: var(--ink);
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 20, 36, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
  transition: min-height 0.3s var(--ease);
}

.site-header.is-collapsed .header-inner {
  min-height: 56px;
}

.brand-block {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  padding-left: 12px;
  border-left: 2px solid var(--score);
}

.brand-name {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--paper);
  white-space: nowrap;
}

.brand-tag {
  max-height: 18px;
  overflow: hidden;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
  transition: opacity 0.28s var(--ease), max-height 0.28s var(--ease);
}

.site-header.is-collapsed .brand-tag {
  opacity: 0;
  max-height: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--step-1);
  letter-spacing: 0.18em;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.nav-list a:hover {
  color: var(--lake);
}

.nav-list a[aria-current="page"] {
  color: var(--paper);
  border-bottom-color: var(--score);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--score);
  color: var(--ink);
  border: 1px solid var(--score);
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease);
}

.header-cta:hover {
  background: transparent;
  color: var(--score);
}

.nav-toggle {
  position: relative;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--lake);
  color: var(--lake);
}

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

.nav-toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.26s var(--ease), top 0.26s var(--ease), bottom 0.26s var(--ease);
}

.nav-toggle-icon::before { top: 2px; }
.nav-toggle-icon::after { bottom: 2px; }

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

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  bottom: 6px;
  transform: rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(5, 12, 24, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}

.nav-scrim[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

/* ---------- 12. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(64px, 9vw, 132px);
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 72%);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-image:
    linear-gradient(90deg, var(--score) 0 84px, transparent 84px),
    repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 20px);
  background-size: 100% 100%, auto 100%;
  background-repeat: no-repeat, repeat-x;
}

.footer-inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(40px, 5vw, 68px) var(--gutter) 0;
  display: grid;
  grid-template-columns: minmax(200px, 4fr) 8fr;
  gap: clamp(32px, 4vw, 72px);
}

.footer-lead {
  min-width: 0;
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--paper);
}

.footer-brand-tag {
  margin-top: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--pitch);
}

.footer-note {
  margin-top: 20px;
  max-width: 34ch;
  font-size: var(--step-2);
  line-height: 1.8;
  color: var(--muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  min-width: 0;
}

.footer-col {
  min-width: 0;
}

.footer-col-title {
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--paper);
}

.footer-col ul {
  display: grid;
  gap: 2px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: var(--step-2);
  color: var(--muted);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--lake);
  transform: translateX(2px);
}

.footer-base {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  margin-top: clamp(32px, 4vw, 56px);
  padding: 22px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  font-size: var(--step-1);
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  min-width: 0;
}

.footer-contact span {
  white-space: nowrap;
}

.footer-contact span + span::before {
  content: "·";
  margin-right: 20px;
  color: var(--line);
}

.footer-legal {
  white-space: nowrap;
  color: var(--muted);
}

/* ---------- 13. 滚动显现协议 ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

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

/* ---------- 14. 响应式 ---------- */
@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: minmax(180px, 3fr) 9fr;
  }
}

@media (max-width: 1024px) {
  .span-2,
  .span-3,
  .span-4 {
    grid-column: span 6;
  }

  .span-5,
  .span-7,
  .span-8,
  .span-9,
  .span-10 {
    grid-column: span 12;
  }
}

@media (max-width: 1000px) {
  .site-header,
  .header-inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-header.is-collapsed .header-inner {
    min-height: 56px;
  }

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

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    width: min(340px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 92px clamp(20px, 5vw, 32px) 40px;
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    transform: translateX(102%);
    transition: transform 0.32s var(--ease), visibility 0.32s var(--ease);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    min-height: 54px;
    font-size: var(--step-2);
    letter-spacing: 0.12em;
  }

  .nav-list a[aria-current="page"] {
    color: var(--score);
    border-bottom-color: transparent;
  }

  .header-cta {
    width: 100%;
    min-height: 48px;
    margin-top: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }
}

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

  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-9,
  .span-10,
  .span-12 {
    grid-column: span 12;
  }

  .brand-tag {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .score-item {
    min-width: 180px;
    padding: 14px 16px;
  }

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

  .footer-legal {
    white-space: normal;
  }
}

@media (max-width: 440px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-contact span + span::before {
    content: none;
    margin-right: 0;
  }
}

/* ---------- 15. 无障碍与动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js-reveal [data-reveal],
  .js-reveal [data-reveal].is-revealed {
    opacity: 1 !important;
    transform: none !important;
  }

  .btn:hover,
  .card:hover,
  .footer-col a:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-scrim {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
