/* ============================================
   火博体育官方中文站 · 共享样式 Site.css
   ============================================ */

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

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

body {
  min-height: 100vh;
  background: var(--color-graphite);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: var(--color-flame);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

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

[hidden] {
  display: none !important;
}

/* ---------- 2. Design Tokens ---------- */
:root {
  /* 矿物色与赛场色体系 */
  --color-flame: #E63946;
  --color-graphite: #1A1A1A;
  --color-gold: #D4AF37;
  --color-rock: #6B6B6B;
  --color-moss: #6B8E23;
  --color-terra: #C17A5A;
  --color-cream: #F5F0E6;
  --color-charcoal: #333333;
  --color-silver: #E0E0E0;

  /* 字体 */
  --font-heading: 'Impact', 'Arial Black', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;

  /* 字号 */
  --fs-hero: clamp(2.25rem, 5vw, 3rem);
  --fs-section: clamp(1.5rem, 3.5vw, 2rem);
  --fs-card: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* 布局 */
  --container-width: 1280px;
  --header-offset: 12px;
  --radius: 0;
  --shadow-float: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ---------- 3. Base Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.18;
  color: inherit;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ---------- 4. Utilities ---------- */
.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;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.main-content,
#main-content {
  display: block;
  min-height: 70vh;
  background: var(--color-cream);
  color: var(--color-black, #1A1A1A);
}

/* ---------- 5. Accessibility & Motion ---------- */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 3000;
  padding: 12px 20px;
  background: var(--color-flame);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  pointer-events: auto;
  transition: top var(--transition-fast);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 1000;
  margin-top: var(--header-offset);
  padding: 0 16px;
  pointer-events: none;
  background: transparent;
}

.header-capsule {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(26, 26, 26, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-top: 3px solid var(--color-flame);
  box-shadow: var(--shadow-float);
  pointer-events: auto;
}

.header-capsule::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.85;
}

.header-side-note {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  opacity: 0.55;
  white-space: nowrap;
  user-select: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -4px;
  margin-right: 2px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link:hover {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-flame);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  flex-shrink: 0;
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.brand-suffix {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-rock);
  letter-spacing: 0.06em;
}

.brand-tagline {
  font-size: 0.6875rem;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(224, 224, 224, 0.3);
  flex-shrink: 0;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-cream);
  margin: 3px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

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

.nav-link {
  position: relative;
  display: block;
  padding: 8px 12px;
  color: var(--color-cream);
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: var(--color-flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--color-flame);
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-left: 8px;
  background: var(--color-flame);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
  background: #c62f3b;
  color: #fff;
  transform: translateX(2px);
  text-decoration: none;
}

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 7. Footer ---------- */
.site-footer {
  position: relative;
  background: var(--color-charcoal);
  border-top: 3px solid var(--color-flame);
  color: var(--color-silver);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 120px;
  height: 3px;
  background: var(--color-gold);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-left: 24px solid transparent;
  border-top: 24px solid var(--color-gold);
  opacity: 0.7;
}

.footer-main {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 3fr 2.2fr;
  gap: 40px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-flame);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-cream);
  letter-spacing: 0.03em;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.footer-note {
  font-size: 0.8125rem;
  color: var(--color-rock);
  max-width: 28em;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-cream);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 3px solid var(--color-flame);
  text-transform: uppercase;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-list a {
  color: var(--color-silver);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: var(--color-flame);
}

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

.footer-contact-list {
  margin-bottom: 12px;
}

.footer-contact-list li {
  color: var(--color-silver);
  font-size: 0.875rem;
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-contact-note {
  font-size: 0.75rem;
  color: var(--color-rock);
  line-height: 1.6;
  max-width: 30em;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(224, 224, 224, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.8125rem;
  color: var(--color-rock);
}

.footer-copyright {
  color: var(--color-rock);
  margin: 0;
}

.footer-icp {
  margin: 0;
  color: var(--color-rock);
}

.footer-trust {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(107, 107, 107, 0.85);
  margin: 8px 0 0;
  line-height: 1.6;
}

/* ---------- 8. Common Components ---------- */

/* 8.1 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  border: 0;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-flame);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
  text-decoration: none;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-flame);
  border: 1px solid var(--color-flame);
}

.btn--outline:hover {
  background: var(--color-flame);
  color: #fff;
  text-decoration: none;
}

/* 8.2 章节 */
.section {
  padding: 64px 0;
}

.section--dark {
  background: var(--color-graphite);
  color: var(--color-cream);
}

.section--light {
  background: var(--color-cream);
  color: #1A1A1A;
}

.section-head {
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-section);
  font-weight: 800;
  margin-bottom: 6px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 22px;
  margin-right: 10px;
  background: var(--color-flame);
  clip-path: polygon(60% 0, 100% 0, 40% 100%, 0 100%);
  vertical-align: -3px;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--color-rock);
  max-width: 60em;
}

/* 8.3 面包屑 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-rock);
}

.breadcrumb a {
  color: var(--color-rock);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-flame);
}

.breadcrumb-sep {
  color: var(--color-silver);
  margin: 0 2px;
}

.breadcrumb-current {
  color: #1A1A1A;
  font-weight: 600;
}

/* 8.4 内页页头 */
.page-header {
  padding: 48px 0 28px;
  background: var(--color-graphite);
  color: var(--color-cream);
  border-bottom: 3px solid var(--color-flame);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 80px;
  height: 3px;
  background: var(--color-gold);
}

.page-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 900;
  color: var(--color-cream);
  margin: 12px 0 8px;
  letter-spacing: 0.02em;
}

.page-subtitle {
  font-size: 1.0625rem;
  color: var(--color-rock);
  max-width: 42em;
}

/* 8.5 网格 */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

/* 8.6 Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.bento .card--wide {
  grid-column: span 2;
}

.bento .card--tall {
  grid-row: span 2;
}

/* 8.7 卡片 */
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-silver);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212, 175, 55, 0.6);
  text-decoration: none;
}

.section--dark .card {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-color: rgba(224, 224, 224, 0.14);
}

.card--post {
  background: #fff;
}

.card--stat {
  background: var(--color-graphite);
  color: var(--color-cream);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-rock);
  margin-bottom: 8px;
}

.card-link {
  font-weight: 700;
  color: var(--color-flame);
  font-size: 0.875rem;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* 8.8 图片容器 */
.image-container {
  position: relative;
  overflow: hidden;
  background: var(--color-charcoal);
  width: 100%;
}

.image-container img,
.image-container .img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container--116 {
  aspect-ratio: 16 / 9;
}

.image-container--43 {
  aspect-ratio: 4 / 3;
}

.image-container--11 {
  aspect-ratio: 1 / 1;
}

.image-container--speed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(230, 57, 70, 0.18) 0%, transparent 32%, transparent 68%, rgba(212, 175, 55, 0.12) 100%);
  pointer-events: none;
}

/* 8.9 速度线 */
.speedline {
  height: 4px;
  border: 0;
  background: linear-gradient(90deg, var(--color-flame), transparent);
}

.speedline--gold {
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

/* 8.10 关键数字 */
.stat-highlight {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-flame);
  line-height: 1;
}

.stat-highlight.is-flashed {
  animation: flash-datum 0.45s ease;
}

@keyframes flash-datum {
  0% {
    opacity: 0.65;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    color: var(--color-gold);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 8.11 筛选 */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--color-silver);
  color: var(--color-rock);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-flame);
  color: var(--color-flame);
}

.filter-btn.is-active,
.filter-btn[aria-pressed="true"] {
  background: var(--color-flame);
  border-color: var(--color-flame);
  color: #fff;
}

/* 8.12 折叠面板 */
.collapsible {
  border: 1px solid var(--color-silver);
  background: var(--color-terra);
  margin-bottom: 12px;
}

.collapsible-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: var(--color-terra);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: left;
  cursor: pointer;
}

.collapsible-trigger::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.collapsible-trigger[aria-expanded="true"]::after {
  content: '−';
}

.collapsible-panel {
  padding: 0 16px 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1A1A1A;
}

.collapsible-panel[hidden] {
  display: none;
}

/* 8.13 滚动显现 */
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 8.14 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-flame), var(--color-gold));
  z-index: 4000;
  pointer-events: none;
}

/* ---------- 9. Responsive ---------- */
@media (max-width: 1100px) {
  .header-side-note {
    display: none;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-top: 0;
    box-shadow: var(--shadow-float);
    padding: 8px 12px 16px;
  }

  .site-nav[data-open] {
    display: flex;
    animation: nav-drop 0.22s ease;
  }

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

  .nav-item + .nav-item .nav-link {
    border-top: 1px solid rgba(224, 224, 224, 0.1);
  }

  .nav-link {
    padding: 12px 10px;
    white-space: normal;
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link[aria-current="page"] {
    background: rgba(230, 57, 70, 0.12);
    color: var(--color-flame);
    border-left: 3px solid var(--color-flame);
    padding-left: 16px;
  }

  .nav-cta {
    margin: 12px 0 0;
    justify-content: center;
  }

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

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

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 28px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 8px;
  }

  .header-capsule {
    padding: 8px 12px;
  }

  .header-brand {
    gap: 8px;
  }

  .brand-info {
    display: none;
  }

  .version-badge {
    display: none;
  }

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

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento .card--wide,
  .bento .card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px 24px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    padding: 14px 16px 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-trust {
    flex-basis: auto;
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav[data-open] {
    animation: none;
  }
}
