/* 安博体育 Site Kit — 共享样式：深蓝 × 冠军金 × 天津红，赛场记分牌 / 数据档案视觉系统 */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2D3142;
  background-color: #F5F7FA;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#main-content { flex: 1 0 auto; scroll-margin-top: 8.5rem; width: 100%; }

:root {
  --ab-navy: #0A2342;
  --ab-gold: #D4AF37;
  --ab-red: #C8102E;
  --ab-bg: #F5F7FA;
  --ab-white: #FFFFFF;
  --ab-ink: #2D3142;
  --ab-blue: #1F4E79;
  --ab-orange: #FF6B35;
  --ab-cream: #F0E8D0;
  --ab-black: #010B14;
  --font-head: "DIN Condensed", "Roboto Condensed", "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Roboto Mono", "SF Mono", "Cascadia Mono", monospace;
  --font-editorial: "Iowan Old Style", "Songti SC", "SimSun", serif;
  --container-w: 1280px;
  --fluid-margin: clamp(32px, 6vw, 56px);
  --gap: 1.5rem;
  --shadow-hard: 6px 6px 0 rgba(10, 35, 66, 0.28);
  --shadow-gold: 6px 6px 0 rgba(212, 175, 55, 0.3);
  --border-navy: 3px solid #0A2342;
  --border-gold: 3px solid #D4AF37;
}

::selection { background: #D4AF37; color: #0A2342; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #010B14; }
::-webkit-scrollbar-thumb { background: #D4AF37; border: 3px solid #010B14; }

:focus-visible { outline: 3px solid #FF6B35; outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: #0A2342;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.02; letter-spacing: .01em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); letter-spacing: .01em; }
h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { margin-top: 0; }
a { color: #1F4E79; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #C8102E; }
ul, ol { padding-left: 1.25rem; }

.container {
  width: min(var(--container-w), calc(100% - var(--fluid-margin)));
  margin-inline: auto;
}

.grid { display: grid; gap: var(--gap); }
.grid--center { align-items: center; }
.grid--4-8 { grid-template-columns: 4fr 8fr; }
.grid--8-4 { grid-template-columns: 8fr 4fr; }
.grid--3-9 { grid-template-columns: 3fr 9fr; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.section { padding-block: 3.5rem; }
.section--tight { padding-block: 2rem; }
.section-light { background-color: #F5F7FA; }
.section-white { background-color: #FFFFFF; }
.section-dark { background-color: #0A2342; color: #F0E8D0; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #FFFFFF; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: .625rem;
  border-bottom: 3px solid #D4AF37;
}
.section-head--red { border-bottom-color: #C8102E; }
.section-title { margin: 0; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section-sub { margin-top: .75rem; max-width: 42rem; font-size: .9375rem; color: #2D3142; }
.section-dark .section-sub { color: rgba(240, 232, 208, .72); }

.eyebrow {
  display: block;
  margin-bottom: .375rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C8102E;
}
.eyebrow--gold { color: #D4AF37; }
.eyebrow--white { color: #FFFFFF; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  border: 2px solid #0A2342;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { color: inherit; }
.btn-gold { background: #D4AF37; color: #0A2342; border-color: #D4AF37; box-shadow: 4px 4px 0 rgba(212, 175, 55, .3); }
.btn-gold:hover { background: #0A2342; color: #D4AF37; border-color: #0A2342; box-shadow: 4px 4px 0 rgba(212, 175, 55, .4); transform: translate(-1px, -1px); }
.btn-outline { background: #FFFFFF; color: #0A2342; border-color: #0A2342; box-shadow: 3px 3px 0 rgba(10, 35, 66, .18); }
.btn-outline:hover { background: #0A2342; color: #FFFFFF; transform: translate(-1px, -1px); }
.btn-outline-light { background: transparent; color: #FFFFFF; border-color: #D4AF37; }
.btn-outline-light:hover { background: #D4AF37; color: #0A2342; }
.btn-ghost { background: transparent; color: #D4AF37; border-color: #D4AF37; }
.btn-ghost:hover { background: #D4AF37; color: #0A2342; }

.tag {
  display: inline-block;
  padding: .2rem .6rem;
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  line-height: 1.4;
}
.tag--gold { color: #D4AF37; border-color: #D4AF37; background: rgba(212, 175, 55, .08); }
.tag--red { color: #C8102E; border-color: #C8102E; background: rgba(200, 16, 46, .05); }
.tag--navy { color: #0A2342; border-color: #0A2342; background: #F0E8D0; }
.tag--light { color: #FFFFFF; border-color: rgba(255, 255, 255, .5); }

.data-card {
  position: relative;
  padding: 1.5rem;
  background: #FFFFFF;
  border: var(--border-navy);
  box-shadow: var(--shadow-hard);
}
.data-card--gold { border: var(--border-gold); box-shadow: var(--shadow-gold); }
.data-card--dark { background: #0A2342; color: #F0E8D0; border: var(--border-gold); box-shadow: var(--shadow-hard); }
.data-card--dark .card-title { color: #FFFFFF; }
.card-eyebrow {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8102E;
}
.data-card--dark .card-eyebrow { color: #D4AF37; }
.card-title { margin: 0 0 1rem; font-family: var(--font-head); font-size: 1.375rem; line-height: 1.1; color: #0A2342; }
.card-body { font-size: .875rem; color: #2D3142; }
.data-card--dark .card-body { color: rgba(240, 232, 208, .85); }
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .5rem;
  border-bottom: 1px solid #F0E8D0;
}
.stat-row:last-child { border-bottom: 0; }
.data-card--dark .stat-row { border-bottom-color: rgba(212, 175, 55, .25); }
.stat-label { font-size: .8125rem; color: #2D3142; }
.data-card--dark .stat-label { color: rgba(240, 232, 208, .75); }
.stat-value { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 700; color: #0A2342; }
.stat-value--gold { color: #D4AF37; }
.stat-value--red { color: #C8102E; }
.data-card--dark .stat-value { color: #D4AF37; }

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 12rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1F4E79 0%, #0A2342 100%);
  border: var(--border-navy);
  box-shadow: var(--shadow-hard);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(212, 175, 55, .08) 0 2px, transparent 2px 12px);
  z-index: 0;
}
.media-frame--wide { aspect-ratio: 16 / 9; min-height: 15rem; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--dark { background: linear-gradient(135deg, #010B14, #0A2342); border-color: #D4AF37; }
.media-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.media-placeholder {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D4AF37;
  border: 1px dashed rgba(212, 175, 55, .65);
  padding: .5rem .875rem;
  background: rgba(10, 35, 66, .55);
}
.media-caption { margin-top: .625rem; font-size: .8125rem; color: #2D3142; border-left: 3px solid #D4AF37; padding-left: .625rem; }

.diag-divider {
  display: block;
  height: 16px;
  margin-block: 2rem;
  border: 0;
  border-block: 2px solid #0A2342;
  background: repeating-linear-gradient(315deg, #D4AF37 0 10px, #0A2342 10px 20px);
}
.slash-line {
  display: block;
  height: 10px;
  margin-block: 2rem;
  background: linear-gradient(105deg, #C8102E 0 38%, #D4AF37 38% 52%, #0A2342 52% 68%, transparent 68%);
}

.breadcrumbs { margin-block: 1rem 0; font-size: .8125rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before { content: "/"; margin-inline: .5rem; color: #D4AF37; font-weight: 700; }
.breadcrumbs a { color: #1F4E79; text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { color: #C8102E; border-bottom-color: #C8102E; }
.breadcrumbs [aria-current="page"] { color: #2D3142; font-weight: 700; white-space: nowrap; }

.content-panel {
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid #E0E6EF;
  border-top: 4px solid #D4AF37;
  box-shadow: 0 4px 14px rgba(10, 35, 66, .06);
}
.content-panel--navy { background: #0A2342; color: #F0E8D0; border-top-color: #C8102E; }

.link-list { list-style: none; margin: 0; padding: 0; }
.link-list li { border-bottom: 1px solid #F0E8D0; }
.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .75rem 0;
  color: #0A2342;
  font-weight: 700;
  text-decoration: none;
}
.link-list a:hover { color: #C8102E; }
.link-list .mono { color: #D4AF37; }

.rte { font-size: .9375rem; line-height: 1.75; }
.rte p { margin: 0 0 1rem; }
.rte ul { margin-block: .75rem 1rem; }
.rte li { margin-bottom: .375rem; }
.rte blockquote {
  margin: 1.5rem 0;
  padding: .75rem 1rem .75rem 1.25rem;
  border-left: 4px solid #D4AF37;
  background: #F0E8D0;
  color: #0A2342;
  font-family: var(--font-editorial);
}
.rte table { width: 100%; border-collapse: collapse; font-size: .875rem; margin-block: 1rem; }
.rte th, .rte td { border: 1px solid #D8DEE8; padding: .5rem .75rem; text-align: left; }
.rte th { background: #0A2342; color: #FFFFFF; font-family: var(--font-head); letter-spacing: .05em; }
.rte tr:nth-child(even) td { background: #F0E8D0; }

.pullquote {
  font-family: var(--font-editorial);
  font-size: 1.375rem;
  line-height: 1.5;
  color: #0A2342;
  border-left: 6px solid #C8102E;
  padding-left: 1rem;
  margin-block: 1.5rem;
}

.mono { font-family: var(--font-mono); }
.text-gold { color: #D4AF37; }
.text-red { color: #C8102E; }
.text-navy { color: #0A2342; }
.text-muted { color: rgba(45, 49, 66, .65); }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }

/* ＝＝ 页头 ＝＝ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0A2342;
  border-bottom: 4px solid #D4AF37;
  box-shadow: 0 4px 18px rgba(1, 11, 20, .45);
}

.skip-link {
  position: fixed;
  top: 6px;
  left: 6px;
  z-index: 2000;
  padding: .75rem 1.25rem;
  background: #D4AF37;
  color: #0A2342;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #0A2342;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.header-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, #D4AF37, #FF6B35 60%, #C8102E);
  z-index: 1500;
  pointer-events: none;
}

.header-top {
  background: #010B14;
  border-bottom: 1px solid rgba(212, 175, 55, .35);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
}

.brand-slogan {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .16em;
  color: #D4AF37;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .85rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .55);
  color: #D4AF37;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.header-search-toggle:hover,
.header-search-toggle[aria-expanded="true"] {
  background: #D4AF37;
  color: #0A2342;
}

.search-toggle-icon {
  position: relative;
  display: inline-block;
  width: .875rem;
  height: .875rem;
  flex-shrink: 0;
}
.search-toggle-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: .5625rem;
  height: .5625rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.search-toggle-icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: .375rem;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: right center;
}

.header-main { position: relative; }
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #D4AF37, #B8962E);
  color: #0A2342;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #FFFFFF;
  box-shadow: 4px 4px 0 rgba(212, 175, 55, .45);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; line-height: 1; color: #FFFFFF; letter-spacing: .04em; }
.brand-sub { margin-top: .3rem; font-family: var(--font-mono); font-size: .625rem; letter-spacing: .22em; color: #D4AF37; text-transform: uppercase; }

.site-nav { display: block; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  position: relative;
  display: block;
  padding: .7rem .85rem;
  color: rgba(255, 255, 255, .86);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .15s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .3rem;
  height: 3px;
  background: #D4AF37;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}
.nav-list a:hover { color: #FFFFFF; }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: #D4AF37; }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); background: #C8102E; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, .6);
  color: #D4AF37;
  cursor: pointer;
  transition: background-color .15s ease;
}
.nav-toggle:hover { background: rgba(212, 175, 55, .12); }
.nav-toggle-box { display: inline-flex; flex-direction: column; gap: 5px; width: 24px; }
.nav-toggle-box span { display: block; height: 3px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.header-search-panel { display: none; background: #0A2342; border-top: 1px solid rgba(212, 175, 55, .35); border-bottom: 3px solid #D4AF37; }
.header-search-panel[data-open] { display: block; animation: panel-fade .18s ease; }
.search-panel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1rem;
}
.search-panel-copy { min-width: 22rem; flex: 1; }
.search-panel-title { margin: 0; font-family: var(--font-head); font-size: 1.125rem; color: #D4AF37; letter-spacing: .04em; }
.search-panel-hint { margin: .25rem 0 0; font-size: .8125rem; color: rgba(240, 232, 208, .7); }
.search-panel-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ＝＝ 页脚 ＝＝ */
.site-footer {
  margin-top: auto;
  background: #010B14;
  color: #F0E8D0;
  border-top: 4px solid #D4AF37;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 2.5rem clamp(2rem, 4vw, 4rem);
  padding-block: 3rem 2.25rem;
}

.brand-light .brand-logo { box-shadow: none; }
.brand-light .brand-name { color: #FFFFFF; }
.brand-light .brand-sub { color: #D4AF37; }

.footer-tagline { margin: .875rem 0 0; font-weight: 300; font-size: 1rem; color: rgba(240, 232, 208, .9); max-width: 32rem; }
.footer-trust {
  margin: 1rem 0 0;
  font-size: .8125rem;
  line-height: 1.6;
  color: rgba(240, 232, 208, .6);
  border-left: 3px solid #C8102E;
  padding-left: .8125rem;
  max-width: 32rem;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  letter-spacing: .12em;
  color: #D4AF37;
}

.footer-contact { display: flex; flex-direction: column; }
.footer-contact p { margin: 0 0 .5rem; font-size: .875rem; color: rgba(240, 232, 208, .8); }
.footer-contact .btn { align-self: flex-start; margin-top: .375rem; }

.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav li { margin-bottom: .625rem; }
.footer-nav a {
  color: rgba(240, 232, 208, .85);
  font-size: .875rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.footer-nav a:hover { color: #D4AF37; border-bottom-color: #D4AF37; }

.footer-bottom { border-top: 1px solid rgba(212, 175, 55, .22); padding-block: 1rem; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { margin: 0; font-size: .8125rem; color: rgba(240, 232, 208, .55); }
.footer-icp { margin: 0; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; color: rgba(240, 232, 208, .55); }

@keyframes panel-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes nav-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ＝＝ 响应式 ＝＝ */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  #main-content { scroll-margin-top: 6.5rem; }
  .header-main-inner { min-height: 72px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #0A2342;
    border-top: 2px solid #D4AF37;
    border-bottom: 4px solid #D4AF37;
    box-shadow: 0 18px 30px rgba(1, 11, 20, .45);
  }
  .site-nav[data-open] { display: flex; animation: nav-fade .18s ease; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .nav-list a { padding: .875rem 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .nav-list a::after { left: 1.5rem; right: 1.5rem; bottom: .2rem; }
  .grid--4-8, .grid--8-4, .grid--3-9 { grid-template-columns: 1fr; }
  .search-panel-inner { flex-direction: column; align-items: flex-start; }
  .search-panel-copy { min-width: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .brand-slogan { font-size: .625rem; letter-spacing: .1em; }
  .header-search-toggle { padding: .25rem .55rem; font-size: .75rem; }
  .header-main-inner { gap: .75rem; }
  .brand-logo { width: 40px; height: 40px; font-size: 1.125rem; }
  .brand-name { font-size: 1.375rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section { padding-block: 2.5rem; }
}
