/* ===== 谈球吧主站 共享样式 /assets/site.css ===== */

/* --- reset --- */
*,
*::before,
*::after { box-sizing: border-box; }

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

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

ul, ol { padding: 0; }

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

button { font: inherit; }

/* --- 设计变量 --- */
:root {
  --pitch-900: #0B241D;
  --pitch-950: #061410;
  --slate-800: #16242E;
  --slate-100: #E3EAF0;
  --lemon-400: #CBF94E;
  --lemon-soft: #DDFD7A;
  --card-400: #F2C230;
  --stoppage-500: #E4463A;
  --teal-400: #4FB3A6;
  --jewel-700: #2B2A55;
  --jewel-800: #5E1F2B;
  --mist-400: #9FB0AC;
  --chalk-50: #F4F7F2;

  --line-soft: rgba(227, 234, 240, 0.12);
  --line-lemon: rgba(203, 249, 78, 0.3);

  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: ui-monospace, "IBM Plex Mono", "Roboto Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --shell: 1440px;
  --header-h: 76px;
  --radius-lg: 48px;
  --radius-md: 28px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 960px) {
  :root { --header-h: 62px; }
}

/* --- 基础排版 --- */
body {
  background-color: var(--pitch-900);
  color: var(--chalk-50);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: balance;
}

h1 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

p { text-wrap: pretty; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--lemon-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--lemon-400);
  color: var(--pitch-950);
}

@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;
  }
}

/* --- 布局容器 --- */
.container {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 1.75rem), var(--shell)); }
}

.section { padding-block: clamp(2.5rem, 6vw, 5rem); }

.section--deep { background-color: var(--pitch-950); }
.section--jewel { background-color: var(--jewel-700); border-radius: var(--radius-lg); }
.section--wine { background-color: var(--jewel-800); border-radius: var(--radius-lg); }
.section--light {
  background-color: var(--slate-100);
  color: var(--pitch-900);
  border-radius: var(--radius-lg);
}
.section--light .section-num { color: var(--jewel-700); border-color: rgba(43, 42, 85, 0.4); }
.section--light .note,
.section--light .lede { color: #2E423B; }

/* --- 通用工具 --- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 200;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background-color: var(--lemon-400);
  color: var(--pitch-950);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* --- 头部 --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: rgba(6, 20, 16, 0.96);
  border-bottom: 1px solid var(--line-lemon);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--chalk-50);
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  padding-left: 0.85rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.brand__mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: var(--lemon-400);
}

.brand__subline {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--lemon-400);
  line-height: 1.3;
}

.header-ruler {
  position: relative;
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(203, 249, 78, 0.06), rgba(203, 249, 78, 0.5), rgba(203, 249, 78, 0.06));
}
.header-ruler::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 7px;
  background-image: repeating-linear-gradient(90deg, rgba(203, 249, 78, 0.45) 0 1px, transparent 1px 32px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.35rem);
  list-style: none;
}

.nav-item { display: block; }

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  color: var(--mist-400);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: var(--lemon-400);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s var(--ease);
}
.nav-link:hover { color: var(--chalk-50); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--lemon-400); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-stamp {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--mist-400);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(203, 249, 78, 0.4);
  border-radius: 999px;
  background-color: transparent;
  color: var(--lemon-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  background-color: currentColor;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.2s var(--ease);
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background-color: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

.nav-toggle__label { line-height: 1; }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--lemon-400);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

@media (max-width: 960px) {
  .header-shell { gap: 0.75rem; }

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

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 55;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background-color: var(--pitch-950);
    border-bottom: 1px solid var(--line-lemon);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  }

  .site-nav[data-open] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

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

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

  .nav-link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--chalk-50);
  }
  .nav-link::after { display: none; }
  .nav-link[aria-current="page"] { color: var(--lemon-400); }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1.1rem;
  }

  .nav-stamp {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(203, 249, 78, 0.2);
    white-space: normal;
  }
}

/* --- 按钮 --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.btn--solid {
  background-color: var(--lemon-400);
  color: var(--pitch-950);
}
.btn--solid:hover { background-color: var(--lemon-soft); }

.btn--ghost {
  background-color: transparent;
  border-color: rgba(203, 249, 78, 0.45);
  color: var(--lemon-400);
}
.btn--ghost:hover {
  background-color: rgba(203, 249, 78, 0.12);
  color: var(--lemon-soft);
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
}

/* --- 面包屑 --- */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--mist-400);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.breadcrumb__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(159, 176, 172, 0.55);
}
.breadcrumb__item a {
  color: var(--mist-400);
  text-decoration: none;
}
.breadcrumb__item a:hover { color: var(--lemon-400); }
.breadcrumb__item[aria-current="page"] { color: var(--chalk-50); }

/* --- 章节头 --- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: baseline;
  gap: 0.5rem 1.25rem;
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--lemon-400);
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(203, 249, 78, 0.35);
  border-radius: 4px;
  white-space: nowrap;
}

.section-title { margin: 0; font-size: 1.5rem; }

.section-head__desc {
  grid-column: 2 / -1;
  max-width: 62ch;
  color: var(--mist-400);
  font-size: 0.9375rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--teal-400);
}

.lede {
  max-width: 62ch;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: var(--chalk-50);
}

.note {
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--mist-400);
}

/* --- 栅格 --- */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

@media (max-width: 900px) {
  .grid--12 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-12 {
    grid-column: 1 / -1;
  }
}

/* --- 面板 --- */
.panel {
  background-color: var(--slate-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.panel--pitch { background-color: var(--pitch-950); }
.panel--jewel { background-color: var(--jewel-700); border-color: rgba(244, 247, 242, 0.14); }
.panel--wine { background-color: var(--jewel-800); border-color: rgba(244, 247, 242, 0.14); }

.panel--light {
  background-color: var(--slate-100);
  color: var(--pitch-900);
  border-color: rgba(11, 36, 29, 0.12);
}
.panel--light .note { color: #3C4F49; }
.panel--light a { color: var(--jewel-700); }

/* --- 比分牌数字 --- */
.scoreboard {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(4rem, 11vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--lemon-400);
}

.scoreboard--sm { font-size: clamp(2rem, 5vw, 3.75rem); }

/* --- 数据表 --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.data-table caption {
  caption-side: top;
  padding-bottom: 0.5rem;
  text-align: left;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--mist-400);
}

.data-table th,
.data-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

.data-table thead th {
  background-color: var(--pitch-950);
  color: var(--mist-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.data-table tbody tr:nth-child(even) { background-color: rgba(22, 36, 46, 0.55); }
.data-table tbody tr:hover { background-color: rgba(203, 249, 78, 0.08); }

.data-table .num,
.data-table th.num {
  text-align: right;
  font-family: var(--font-mono);
}

.data-table .col-team {
  font-weight: 500;
  color: var(--chalk-50);
}

/* --- 标签与提示 --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.6rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.tag--lemon { color: var(--lemon-400); }
.tag--card { color: var(--card-400); }
.tag--stoppage { color: var(--stoppage-500); }
.tag--teal { color: var(--teal-400); }

.callout {
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--card-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background-color: rgba(242, 194, 48, 0.08);
}

.callout__label {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--card-400);
}

/* --- 可展开内容组 --- */
.disclosure {
  border-top: 1px solid var(--line-soft);
}

.disclosure__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: none;
  color: var(--chalk-50);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.disclosure__trigger:hover { color: var(--lemon-400); }

.disclosure__label { flex: 1 1 auto; }

.disclosure__icon {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}
.disclosure__icon::before,
.disclosure__icon::after {
  content: "";
  position: absolute;
  background-color: var(--lemon-400);
}
.disclosure__icon::before { left: 0; right: 0; top: 6px; height: 2px; }
.disclosure__icon::after { top: 0; bottom: 0; left: 6px; width: 2px; }

.disclosure[data-open="true"] .disclosure__icon { transform: rotate(45deg); }
.disclosure[data-open="true"] .disclosure__trigger { color: var(--lemon-400); }

.disclosure__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s var(--ease);
}

.disclosure__inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.26s var(--ease);
}

.disclosure[data-open="true"] .disclosure__panel { grid-template-rows: 1fr; }
.disclosure[data-open="true"] .disclosure__inner { visibility: visible; }

.disclosure__inner > *:last-child { padding-bottom: 1.1rem; }

/* --- 图片容器 --- */
.figure-frame { margin: 0; }

.figure-frame__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  background-color: var(--slate-800);
  border: 1px solid rgba(203, 249, 78, 0.16);
  filter: saturate(0.65) contrast(1.04);
}

.figure-frame--wide .figure-frame__media { aspect-ratio: 21 / 9; }
.figure-frame--tall .figure-frame__media { aspect-ratio: 4 / 5; }

.figure-frame__caption {
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--mist-400);
}

/* --- 长文 --- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.25em; font-size: 1.375rem; }
.prose h3 { margin-top: 1.75em; font-size: 1.0625rem; }
.prose ul,
.prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: 0.4em; }
.prose a {
  color: var(--lemon-400);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose strong { font-weight: 700; }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  color: var(--teal-400);
}

/* --- 显现 --- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --- 页脚 --- */
.site-footer {
  margin-top: clamp(3rem, 8vw, 7rem);
  background-color: var(--pitch-950);
  border-top: 1px solid var(--line-lemon);
  color: var(--chalk-50);
}

.footer-shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 2rem;
}

@media (max-width: 600px) {
  .footer-shell { width: min(calc(100% - 1.75rem), var(--shell)); }
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand__mark {
  position: relative;
  padding-left: 0.9rem;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.footer-brand__mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: var(--lemon-400);
}

.footer-brand__subline {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--mist-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-col__title {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(203, 249, 78, 0.25);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--mist-400);
}

.footer-list {
  margin-top: 0.85rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.875rem;
}

.footer-link {
  color: rgba(244, 247, 242, 0.82);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.footer-link:hover { color: var(--lemon-400); }

.footer-text {
  color: var(--mist-400);
  font-size: 0.875rem;
}

.footer-stamp {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--mist-400);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--mist-400);
}

.footer-legal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.footer-legal__list a {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(203, 249, 78, 0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--lemon-400);
  text-decoration: none;
  transition: background-color 0.18s var(--ease);
}
.footer-legal__list a:hover { background-color: rgba(203, 249, 78, 0.12); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}
