/*==========================================================
  Site Kit — 球速体育 共享样式
  Fingerprint: 5bb4950874b39232
==========================================================*/

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  color-scheme: light;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #2B2B2B;
  background-color: #F5F0E8;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

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

a {
  color: #1B4332;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

a:hover {
  color: #2D6A4F;
}

ul,
ol {
  padding-left: 1.25em;
  margin-bottom: 1rem;
}

li + li {
  margin-top: 0.25rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', 'Arial Narrow', 'Noto Sans SC', sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: #1B4332;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

:root {
  --forest: #1B4332;
  --forest-deep: #122B20;
  --moss: #2D6A4F;
  --grass: #C8F042;
  --graphite: #2B2B2B;
  --white: #FFFFFF;
  --stone: #E5E0D8;
  --terracotta: #C96F4C;
  --cream: #F5F0E8;

  --font-headline: 'Roboto Condensed', 'Arial Narrow', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --font-data: 'Roboto Mono', 'Courier New', monospace;

  --container: 1200px;
  --gutter: 24px;
  --header-height: 72px;
  --radius: 6px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.3s;
}

/* ---------- 2. Base System ---------- */
#main-content {
  display: block;
  min-height: 60vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.site-section--dark {
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  color: var(--white);
}

.site-section--dark h1,
.site-section--dark h2,
.site-section--dark h3 {
  color: var(--white);
}

.site-section--stone {
  background: var(--stone);
}

.section-block {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

/* ---------- 3. Page Hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(2.5rem, 6vw, 5rem)) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  color: var(--white);
}

.page-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.375rem, 6vw, 4.5rem);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-lead {
  max-width: 34em;
  font-size: 1.0625rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
}

.hero-decor {
  position: absolute;
  top: 10%;
  right: -6%;
  width: 48%;
  height: 130%;
  background: linear-gradient(
    135deg,
    transparent 32%,
    rgba(200, 240, 66, 0.1) 32%,
    rgba(200, 240, 66, 0.1) 46%,
    transparent 46%
  );
  transform: skewX(-8deg);
  pointer-events: none;
}

/* ---------- 4. Image Containers ---------- */
.img-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

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

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

.img-figure--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.img-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame {
  position: relative;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(43, 43, 43, 0.05));
  pointer-events: none;
}

/* ---------- 5. Buttons ---------- */
.btn,
.btn--primary,
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--speed) var(--ease),
    color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.btn--primary {
  background: var(--grass);
  color: var(--graphite);
}

.btn--primary:hover {
  background: #D7F568;
  color: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 240, 66, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

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

/* ---------- 6. Card ---------- */
.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ---------- 7. Section Title & Data ---------- */
.section-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.08;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.section-title--light {
  color: var(--white);
}

.section-title__index {
  display: block;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 0.375rem;
}

.section-title--light .section-title__index {
  color: var(--grass);
}

.data-number {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.data-number--grass {
  color: var(--grass);
}

.data-label {
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
  margin-bottom: 0.25rem;
}

/* ---------- 8. Tag & Notice ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.08);
  color: var(--forest);
  font-family: var(--font-data);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tag--alert {
  background: rgba(201, 111, 76, 0.14);
  color: #9C4D32;
}

.tag--grass {
  background: rgba(200, 240, 66, 0.25);
  color: var(--forest);
}

.notice {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(201, 111, 76, 0.1);
  border-left: 4px solid var(--terracotta);
  color: var(--graphite);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* ---------- 9. Breadcrumb ---------- */
.breadcrumb {
  margin-bottom: 2rem;
  font-family: var(--font-data);
  font-size: 0.8125rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__link {
  color: var(--grass);
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb__item[aria-current="page"] {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- 10. Skip Link & Header ---------- */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3000;
  padding: 0.625rem 1.25rem;
  background: var(--grass);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transform: translateY(-200%);
  opacity: 0;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(27, 67, 50, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background-color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.site-header[data-scrolled] {
  background: rgba(27, 67, 50, 0.97);
  border-bottom-color: rgba(200, 240, 66, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  position: relative;
  z-index: 10;
  max-width: var(--container);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.site-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  margin-right: auto;
  padding: 4px 0;
}

.site-logo__text {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 700;
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  color: var(--grass);
}

.site-logo__sub {
  font-family: var(--font-data);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.125rem;
}

.site-nav__item {
  margin: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color var(--speed) var(--ease),
    background-color var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.site-nav__link:hover {
  color: var(--grass);
  background: rgba(200, 240, 66, 0.1);
}

.site-nav__link[aria-current="page"] {
  color: var(--grass);
  box-shadow: inset 0 -2px 0 var(--grass);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.125rem;
  border-radius: 4px;
  background: var(--grass);
  color: var(--graphite);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--speed) var(--ease),
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.site-header__cta:hover {
  background: #D7F568;
  color: var(--graphite);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 240, 66, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--white);
  transition:
    transform var(--speed) var(--ease),
    opacity var(--speed) var(--ease);
}

.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);
}

.site-nav__cta {
  display: none;
}

/* ---------- 11. Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(80% 60% at 85% 100%, rgba(200, 240, 66, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 55%, var(--moss) 100%);
}

.site-footer::before {
  content: "GOAL EXPRESS";
  position: absolute;
  top: -0.25em;
  right: -0.05em;
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 1;
  color: rgba(200, 240, 66, 0.04);
  pointer-events: none;
  transform: skewX(-12deg);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1.25fr 1.75fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.site-footer__brand {
  max-width: 32rem;
}

.site-footer__logo {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--grass);
  margin-bottom: 0.25rem;
}

.site-footer__sub {
  font-family: var(--font-data);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.site-footer__slogan {
  max-width: 24em;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__nav,
.site-footer__contact {
  min-width: 0;
}

.site-footer__heading {
  font-family: var(--font-data);
  font-style: normal;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 1rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin: 0;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

.site-footer__links a:hover {
  color: var(--grass);
}

.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 2;
}

.site-footer__contact-list li {
  margin: 0;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.25rem var(--gutter) 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

.site-footer__legal a:hover {
  color: var(--grass);
}

.site-footer__copyright,
.site-footer__icp {
  margin: 0;
}

/* ---------- 12. Prose ---------- */
.prose {
  max-width: 72ch;
  font-size: 0.9375rem;
  line-height: 2;
}

.prose h2,
.prose h3 {
  margin-top: 2em;
}

.prose a {
  color: var(--forest);
}

/* ---------- 13. Tabs & Collapsible ---------- */
.tabs__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.tabs__btn {
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.6);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.875rem 1.125rem;
  margin-bottom: -2px;
  cursor: pointer;
  transition:
    color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    background-color var(--speed) var(--ease);
}

.tabs__btn:hover {
  color: var(--forest);
  background: rgba(27, 67, 50, 0.04);
}

.tabs__btn[aria-selected="true"] {
  color: var(--forest);
  font-weight: 700;
  border-bottom-color: var(--grass);
}

.tabs__panel[aria-hidden="false"] {
  animation: tabs-fade var(--speed) var(--ease);
}

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

.collapsible {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.collapsible__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--forest);
}

.collapsible__toggle::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 1.125rem;
  line-height: 1;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform var(--speed) var(--ease);
}

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

.collapsible__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.8);
}

/* ---------- 14. Responsive ---------- */
@media (max-width: 899px) {
  .site-grid > [class*="span-"] {
    grid-column: 1 / -1;
  }

  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: calc(var(--header-height) + 2rem) var(--gutter) 2rem;
    background:
      radial-gradient(80% 60% at 80% 20%, rgba(200, 240, 66, 0.08) 0%, transparent 60%),
      var(--forest);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--speed) var(--ease),
      transform var(--speed) var(--ease),
      visibility 0s linear var(--speed);
  }

  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity var(--speed) var(--ease),
      transform var(--speed) var(--ease),
      visibility 0s linear 0s;
  }

  .site-nav::before {
    content: "GOAL";
    position: absolute;
    top: 24%;
    right: -4%;
    font-family: var(--font-headline);
    font-style: italic;
    font-weight: 700;
    font-size: 24vw;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    transform: rotate(-10deg);
    z-index: 0;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
  }

  .site-nav__link {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    width: 100%;
    padding: 0.8125rem 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-headline);
    font-style: italic;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--white);
  }

  .site-nav__link::before {
    content: attr(data-index);
    flex-shrink: 0;
    font-family: var(--font-data);
    font-style: normal;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--grass);
  }

  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] {
    color: var(--grass);
    background: transparent;
    box-shadow: none;
  }

  .site-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    background: var(--grass);
    color: var(--graphite);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__brand {
    max-width: none;
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* ---------- 15. Focus & Motion ---------- */
:focus-visible {
  outline: 3px solid var(--grass);
  outline-offset: 2px;
  border-radius: 2px;
}

@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;
    transition-delay: 0ms !important;
  }
}
