/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }

/* ========== CSS Variables ========== */
:root {
  --green-deep: #0B3D2E;
  --green-dark: #072E21;
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --red-accent: #8B0000;
  --white-bright: #F5F5F0;
  --black-ink: #1A1A1A;
  --gray-light: #E0E0E0;
  --gray-mid: #666666;
  --grad-gold: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 100%);
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --header-height: 76px;
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Base Typography ========== */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black-ink);
  background: var(--white-bright);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 600; color: var(--green-deep); }
::selection { background: var(--green-deep); color: var(--gold-light); }

/* ========== Utilities ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.content-wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-main {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}
#main-content { scroll-margin-top: calc(var(--header-height) + 8px); }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: var(--green-deep);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-gold);
  z-index: 2000;
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3000;
  background: var(--green-deep);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transform: translateY(-240%);
  transition: transform 0.3s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
.header-shell {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}
.brand-mark {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 2px;
  row-gap: 2px;
}
.brand-cn {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand-cn-suffix {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.brand-tagline {
  flex-basis: 100%;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.site-header:not(.is-scrolled) .brand-cn-suffix {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}
.site-header:not(.is-scrolled) .brand-tagline {
  color: var(--gold-light);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.site-header.is-scrolled .brand-cn-suffix {
  color: #fff;
  text-shadow: none;
}
.site-header.is-scrolled .brand-tagline {
  color: var(--gold-light);
  text-shadow: none;
}
.site-nav {
  display: block;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.site-header:not(.is-scrolled) .nav-link {
  color: #f5f5f0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.site-header.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.nav-link[aria-current="page"] {
  color: var(--gold) !important;
  font-weight: 600;
  text-shadow: none;
}
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.05rem;
  background: var(--grad-gold);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--gold);
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 16px rgba(212, 175, 55, 0.35);
}
.v2-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 28px rgba(212, 175, 55, 0.55);
}
.v2-badge__core {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 800;
}
.v2-badge__text {
  font-size: 0.75rem;
  opacity: 0.85;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover .nav-toggle__bar {
  background: var(--gold);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.82);
  margin-top: auto;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  z-index: 2;
}
.footer-shell {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-col--brand {
  display: flex;
  flex-direction: column;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.25rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.footer-brand-cn {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
.footer-trust {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: auto;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-link {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease, padding-left 0.2s ease;
  line-height: 1.5;
}
.footer-link:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-service {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-top: 1rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-copy,
.footer-icp {
  margin: 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--green-deep);
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1.4;
}
.btn:hover {
  background: transparent;
  color: var(--green-deep);
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn--gold {
  background: var(--grad-gold);
  border-color: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
}
.btn--gold:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--green-deep);
}
.btn--dark {
  background: var(--black-ink);
  border-color: var(--black-ink);
  color: #fff;
}
.btn--dark:hover {
  background: transparent;
  color: var(--black-ink);
}

/* ========== Cards ========== */
.sport-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11, 61, 46, 0.14);
  border-color: var(--gold);
}
.sport-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.sport-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
}
.sport-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--black-ink);
  margin-top: auto;
  margin-bottom: 0;
}
.sport-card--compact {
  padding: 1rem 1.25rem;
}
.sport-card--dark {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}
.sport-card--dark .sport-card__title {
  color: #fff;
}
.sport-card--dark .sport-card__meta {
  color: var(--gold-light);
}
.sport-card--dark .sport-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ========== Tags ========== */
.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--gray-light);
  color: var(--gray-mid);
  white-space: nowrap;
}
.tag--gold {
  background: var(--grad-gold);
  color: var(--green-deep);
  font-weight: 700;
}
.tag--red {
  background: var(--red-accent);
  color: #fff;
}
.tag--green {
  background: var(--green-deep);
  color: #fff;
}
.tag--outline {
  background: transparent;
  border: 1px solid var(--gray-light);
  color: var(--gray-mid);
}

/* ========== Section Index / Band ========== */
.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green-deep);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.section-index::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.angular-band {
  position: relative;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 5rem 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 92%);
  margin: 2rem 0;
}
.angular-band--reverse {
  clip-path: polygon(0 4%, 100% 0, 100% 92%, 0 100%);
}
.angular-band--light {
  background: var(--white-bright);
  color: var(--black-ink);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

/* ========== Lead / Note ========== */
.lead-text {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--gray-mid);
  max-width: 70ch;
}
.marginal-note {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.9375rem;
  color: var(--gray-mid);
  line-height: 1.7;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: var(--green-deep);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb [aria-current="page"] {
  color: var(--black-ink);
  font-weight: 600;
}
.breadcrumb__sep {
  color: var(--gray-light);
}

/* ========== Accordion ========== */
.accordion {
  border-top: 2px solid var(--green-deep);
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}
.accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-deep);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.accordion-item__header:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
}
.accordion-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-deep);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: all 0.3s ease;
  line-height: 1;
}
.accordion-item[data-open="true"] .accordion-item__icon {
  background: var(--green-deep);
  color: var(--gold);
  transform: rotate(45deg);
}
.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--black-ink);
  line-height: 1.65;
}
.accordion-item[data-open="true"] .accordion-item__content {
  max-height: 1200px;
  padding: 0 1.5rem 1.5rem;
}

/* ========== Image Frame ========== */
.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  width: 100%;
}
.img-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.img-frame--portrait::before { padding-bottom: 75%; }
.img-frame--landscape::before { padding-bottom: 56.25%; }
.img-frame--square::before { padding-bottom: 100%; }
.img-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.img-frame:hover > img {
  transform: scale(1.03);
}

/* ========== Grid ========== */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* ========== Data Table ========== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #fff;
  min-width: 640px;
}
.data-table th {
  background: var(--green-deep);
  color: #fff;
  text-align: left;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.data-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--black-ink);
}
.data-table tbody tr {
  transition: background 0.2s ease;
}
.data-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.08);
}
.data-table .is-win {
  color: var(--green-deep);
  font-weight: 700;
}
.data-table .is-loss {
  color: var(--red-accent);
  font-weight: 700;
}

/* ========== Stat ========== */
.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green-deep);
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-mid);
  margin-top: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(85vw, 360px);
    height: calc(100vh - var(--header-height));
    background: var(--green-deep);
    padding: 2.5rem 1.75rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 32px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    border-left: 3px solid var(--gold);
    z-index: 999;
  }
  .site-nav[data-open="true"] {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-link {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .nav-link:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 0.875rem;
  }
  .nav-link[aria-current="page"]::after {
    left: 0;
    right: auto;
    width: 28px;
    height: 2px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .header-shell {
    padding: 0.625rem 1rem;
    gap: 0.75rem;
  }
  .brand-cn {
    font-size: 1.625rem;
  }
  .brand-cn-suffix {
    font-size: 1.25rem;
  }
  .v2-badge__text {
    display: none;
  }
  .v2-badge {
    padding: 0.5rem 0.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .content-wrap {
    padding: 0 1.125rem;
  }
  .page-main {
    padding-top: calc(var(--header-height) + 2rem);
  }
  .section-index {
    font-size: clamp(2.75rem, 9vw, 4rem);
  }
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
  .sport-card:hover {
    transform: none;
  }
  .v2-badge:hover {
    transform: none;
  }
  .img-frame > img,
  .img-frame:hover > img {
    transform: none;
  }
}
