﻿/* ============================================================
   Freedom History Project — style.css
   Palette: Off-White · Black · Warm Grey · Gold Accent
   Place at: assets/css/style.css
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f6f5f3;
  --light-grey:  #e6e4e0;
  --mid-grey:    #aaa9a6;
  --dark-grey:   #3a3936;
  --charcoal:    #1c1b19;
  --black:       #0e0d0b;

  --accent:      #b8852a;
  --accent-light:#d4a24e;

  --text-primary:   var(--charcoal);
  --text-secondary: #6b6a66;
  --text-muted:     var(--mid-grey);
  --bg-page:        var(--white);
  --bg-alt:         var(--off-white);
  --bg-dark:        var(--black);
  --border:         #e0deda;
  --border-dark:    #252420;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;

  --max-width:     1280px;
  --header-height: 72px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

/* ── UTILITY ── */
.visually-hidden {
  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(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-dark);
}
.header-band {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
  padding: 7px 20px;
  font-size: .62rem;
  letter-spacing: .24em;
  color: #404040;
  text-transform: uppercase;
}
.header-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  gap: 5px;
}
.logo-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .005em;
  transition: color .2s var(--ease);
}
.logo-sub {
  font-size: .56rem;
  letter-spacing: .26em;
  color: #3a3a38;
  text-transform: uppercase;
}
.site-logo:hover .logo-title { color: var(--mid-grey); }

.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav li a {
  display: block;
  padding: 6px 13px;
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
  border-right: 1px solid var(--border-dark);
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.site-nav li:last-child a { border-right: none; }
.site-nav li a:hover { color: var(--white); }
.site-nav li a.active { color: var(--white); }

.nav-cta {
  margin-left: 12px;
  padding: 6px 18px !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-right: 1px solid rgba(255,255,255,.15) !important;
  color: var(--mid-grey) !important;
  border-radius: 1px;
  transition: border-color .2s, color .2s, background .2s !important;
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════════ */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 40px);
  font-size: .73rem;
  color: var(--text-secondary);
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-secondary); transition: color .2s var(--ease); }
.breadcrumb-inner a:hover { color: var(--black); }
.breadcrumb-sep { color: var(--mid-grey); font-size: .7rem; }
.breadcrumb-inner [aria-current="page"] { color: var(--black); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer-divider {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border-dark) 15%,
    var(--accent) 50%,
    var(--border-dark) 85%,
    transparent 100%);
}
.site-footer {
  background: var(--black);
  color: var(--mid-grey);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px) 0;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo { display: inline-flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--white); }
.brand-tagline { font-size: .58rem; letter-spacing: .24em; color: #3a3a38; text-transform: uppercase; }
.footer-brand p { font-size: .82rem; line-height: 1.82; color: #484846; max-width: 300px; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: #505050; margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-col h3.secondary-header { margin-top: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: .79rem; color: #484846; transition: color .2s var(--ease); line-height: 1.4; }
.footer-col ul li a:hover { color: var(--mid-grey); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a { font-size: .71rem; color: #333; }
.footer-bottom a:hover { color: var(--mid-grey); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   QUOTE BAND
   ════════════════════════════════════════════════════════════ */
.quote-band {
  background: var(--charcoal);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 20rem; font-weight: 900;
  color: rgba(255,255,255,.022);
  position: absolute; top: -60px; left: 30px;
  line-height: 1; pointer-events: none;
}
.quote-band blockquote { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-style: italic; font-weight: 700;
  color: var(--white); line-height: 1.45; margin-bottom: 20px;
}
.quote-band cite {
  font-size: .65rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); font-style: normal;
}
.quote-slide { display: none; }
.quote-slide.active { display: block; }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--white); color: var(--black);
  padding: 12px 28px; font-size: .75rem; letter-spacing: .16em;
  text-transform: uppercase; border: 2px solid var(--white);
  font-family: var(--font-body);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s;
}
.btn-primary:hover { background: transparent; color: var(--white); }

.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 12px 28px; font-size: .75rem; letter-spacing: .16em;
  text-transform: uppercase; border: 2px solid rgba(255,255,255,.28);
  font-family: var(--font-body);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s;
}
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border); color: var(--text-secondary);
  padding: 10px 26px; font-size: .73rem; letter-spacing: .14em;
  text-transform: uppercase; font-family: var(--font-body);
  transition: all .2s var(--ease); white-space: nowrap;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.view-all-wrap { text-align: center; margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
   ════════════════════════════════════════════════════════════ */
.section-label {
  display: block; font-size: .6rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--black); letter-spacing: -.01em;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   PROFILE PAGES
   ════════════════════════════════════════════════════════════ */
.profile-hero {
  background: var(--charcoal); color: var(--white);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 40px);
}
.profile-hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.profile-image-wrap {
  aspect-ratio: 3/4; background: var(--dark-grey);
  border: 1px solid var(--border-dark); overflow: hidden;
  max-width: 260px; width: 100%;
}
.profile-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(15%); transition: filter .4s var(--ease);
}
.profile-image-wrap:hover img { filter: grayscale(0%); }
.profile-image-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--border-dark);
}
.profile-meta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .63rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.profile-meta-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.profile-meta h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 14px;
}
.profile-tagline {
  font-size: 1rem; color: #777; font-weight: 300;
  margin-bottom: 24px; line-height: 1.65; max-width: 520px;
}
.profile-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tag {
  display: inline-block; font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 12px; border: 1px solid;
}
.tag-nation  { border-color: var(--mid-grey); color: var(--mid-grey); }
.tag-nv      { border-color: #666; color: #999; }
.tag-v       { border-color: var(--dark-grey); color: var(--mid-grey); }
.profile-dates { font-size: .78rem; color: #555; letter-spacing: .06em; }

.profile-body {
  max-width: 820px; margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px);
}
.profile-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 40px 0 14px; color: var(--black); }
.profile-body h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.profile-body p { font-size: .97rem; line-height: 1.9; color: var(--dark-grey); margin-bottom: 20px; }
.profile-body p strong { color: var(--black); }
.profile-body blockquote {
  border-left: 3px solid var(--charcoal);
  padding: 18px 24px; margin: 30px 0; background: var(--off-white);
}
.profile-body blockquote p {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--charcoal); margin: 0;
}
.section-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.fact-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-left: 3px solid var(--charcoal); padding: 26px 28px; margin: 28px 0;
}
.fact-box h3 {
  font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dark-grey); margin: 0 0 16px;
}
.fact-row { display: flex; gap: 12px; margin-bottom: 10px; font-size: .87rem; }
.fact-label { color: var(--text-secondary); min-width: 130px; font-weight: 600; }
.fact-value { color: var(--black); }

.stub-notice {
  background: var(--off-white); border: 1px solid var(--border);
  border-left: 3px solid var(--mid-grey); padding: 18px 22px; margin: 0 0 28px;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.7;
}
.stub-notice strong { color: var(--charcoal); }

/* ════════════════════════════════════════════════════════════
   REGION / CONTINENT INDEX PAGES
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--charcoal); color: var(--white);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 40px);
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: var(--white); line-height: 1.08; max-width: 680px;
  margin-bottom: 20px; letter-spacing: -.015em;
}
.page-hero p { font-size: 1rem; color: #777; max-width: 560px; line-height: 1.78; font-weight: 300; }
.page-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-dark);
}
.page-stat .stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1;
}
.page-stat .stat-label {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: #484846; margin-top: 6px; display: block;
}

.fighters-section { padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px); }
.fighters-section-inner { max-width: var(--max-width); margin: 0 auto; }

.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 2px;
}
.fighter-card {
  display: flex; flex-direction: column;
  background: var(--off-white); text-decoration: none; color: inherit;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  overflow: hidden;
}
.fighter-card:hover { border-bottom-color: var(--accent); background: var(--white); }
.fighter-card:hover .fc-name { color: var(--black); }
.fc-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top center; filter: grayscale(25%);
  transition: filter .3s var(--ease); display: block;
}
.fighter-card:hover .fc-img { filter: grayscale(0%); }
.fc-img-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--mid-grey);
}
.fc-body { padding: 14px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.fc-nation { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 4px; display: block; }
.fc-name { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--charcoal); display: block; margin-bottom: 4px; transition: color .2s; line-height: 1.3; }
.fc-role { font-size: .68rem; color: var(--text-secondary); flex: 1; display: block; }
.fc-dates { font-size: .62rem; color: var(--mid-grey); margin-top: 8px; display: block; }

.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ftab {
  background: none; border: 1px solid var(--border);
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: .67rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; transition: all .2s var(--ease);
}
.ftab:hover, .ftab.on { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.fighter-card.hidden { display: none; }

.regions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px; margin-top: 36px;
}
.region-card {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--off-white); padding: 26px 22px;
  text-decoration: none; color: inherit;
  border-left: 3px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.region-card:hover { border-left-color: var(--accent); background: var(--white); }
.region-card:hover .rc-name { color: var(--black); }
.rc-continent { font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mid-grey); }
.rc-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--charcoal); transition: color .2s; }
.rc-count { font-size: .72rem; color: var(--text-secondary); }
.rc-sample { font-size: .7rem; color: var(--mid-grey); font-style: italic; }
.rc-arrow { color: var(--mid-grey); font-size: 1rem; margin-top: auto; transition: color .2s; }
.region-card:hover .rc-arrow { color: var(--charcoal); }

.continents-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 36px;
}
.continent-card {
  background: var(--charcoal); padding: 32px 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 3px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  position: relative; overflow: hidden;
}
.continent-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: var(--black);
  transition: height .3s var(--ease); z-index: 0;
}
.continent-card:hover::after { height: 100%; }
.continent-card > * { position: relative; z-index: 1; }
.continent-card:hover { border-bottom-color: var(--accent); }
.cc-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,.06); line-height: 1; }
.cc-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.cc-count { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid-grey); }
.cc-desc { font-size: .76rem; color: #555; line-height: 1.6; margin-top: 4px; }
.cc-arrow { color: var(--mid-grey); font-size: 1.2rem; margin-top: auto; }
.continent-card:hover .cc-desc { color: #888; }
.continent-card:hover .cc-arrow { color: var(--white); }

/* Timeline */
.tl-wrap { max-width: 980px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px); }
.tl-item { display: grid; grid-template-columns: 110px 1fr; border-left: 2px solid var(--border); }
.tl-year-col { padding: 22px 22px 22px 0; text-align: right; position: relative; }
.tl-year-col::after {
  content: ''; position: absolute; right: -7px; top: 30px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--charcoal); border: 2px solid var(--bg-page);
}
.tl-year { font-family: var(--font-display); font-size: .98rem; font-weight: 700; color: var(--charcoal); display: block; }
.tl-nation { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid-grey); display: block; margin-top: 3px; }
.tl-body { padding: 20px 0 20px 28px; border-bottom: 1px solid var(--border); }
.tl-item:last-child .tl-body { border-bottom: none; }
.tl-person { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--black); display: block; margin-bottom: 4px; }
.tl-event { font-size: .86rem; line-height: 1.72; color: var(--dark-grey); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .continents-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-hero-inner { grid-template-columns: 200px 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); flex-direction: column;
    border-top: 1px solid var(--border-dark);
    border-bottom: 2px solid var(--dark-grey); z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav li { width: 100%; }
  .site-nav li a {
    border-right: none; border-bottom: 1px solid var(--border-dark);
    padding: 14px 28px; width: 100%; font-size: .78rem;
  }
  .nav-cta { margin: 10px 28px 12px; border-radius: 2px; text-align: center; width: calc(100% - 56px); }
  .header-main { position: relative; }
}

@media (max-width: 768px) {
  .profile-hero-inner { grid-template-columns: 1fr; }
  .profile-image-wrap { max-width: 180px; }
  .continents-grid { grid-template-columns: repeat(2, 1fr); }
  .fighters-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .continents-grid { grid-template-columns: 1fr 1fr; }
  .fighters-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .header-band { font-size: .58rem; letter-spacing: .12em; }
}