@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════════
   FAMOUS SPORTS PEOPLE — Modern Neutral Design
   Clean. Editorial. Warm whites & charcoal.
   ═══════════════════════════════════════════════ */

:root {
  /* Neutral palette */
  --white:      #ffffff;
  --bg:         #f7f7f5;
  --bg2:        #f0f0ec;
  --surface:    #ffffff;
  --card:       #ffffff;
  --border:     #e4e4de;
  --border2:    #d4d4cc;
  --charcoal:   #1c1c1e;
  --ink:        #2d2d2f;
  --body:       #4a4a4c;
  --muted:      #8a8a8e;
  --faint:      #c4c4c0;

  /* Accent */
  --gold:       #c8933a;
  --gold-light: #e8b76a;
  --gold-bg:    #fdf6ec;
  --blue:       #2952a3;
  --blue-light: #4a74c5;
  --blue-bg:    #eef2fb;
  --red:        #c0392b;
  --green:      #27ae60;

  /* Dark surface (nav, hero) */
  --dark:       #16161a;
  --dark2:      #1e1e24;
  --dark3:      #28282f;
  --dark-border:#35353e;
  --dark-muted: #8a8a96;

  /* Type */
  --font-head:  'Playfair Display', Georgia, serif;
  --font-ui:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;

  /* Spacing & shape */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-ui); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

/* ── Typography ────────────────────────────────── */
h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); }
h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--charcoal); }
h3 { font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--charcoal); }
h4 { font-family: var(--font-ui); font-size: 1.05rem; font-weight: 700; color: var(--charcoal); }
h5 { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
p  { color: var(--body); line-height: 1.75; max-width: 68ch; }
.lead { font-size: 1.15rem; color: var(--body); line-height: 1.7; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }

/* ── Layout ────────────────────────────────────── */
.container { width: min(1300px, 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 3rem); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-5  { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap     { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-blue   { color: var(--blue); }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; padding: 0.75rem 1.6rem;
  border-radius: 50px; transition: var(--transition); white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--charcoal); color: var(--white); }
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #b8832a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,147,58,0.35); }
.btn--outline { border: 1.5px solid var(--border2); color: var(--body); background: var(--white); }
.btn--outline:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.78rem; }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Tags & Badges ─────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  background: var(--bg2); border: 1px solid var(--border); color: var(--body);
}
.tag--gold { background: var(--gold-bg); border-color: rgba(200,147,58,0.3); color: var(--gold); }
.tag--blue { background: var(--blue-bg); border-color: rgba(41,82,163,0.25); color: var(--blue); }
.tag--dark { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ── Header / Nav ──────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(22,22,26,0.97);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 64px;
}
.logo {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
}
.logo-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; }
.logo em { color: var(--gold); font-style: normal; }

.main-nav {
  display: flex; align-items: center; gap: 0.15rem; margin-left: 1rem;
}
.main-nav > a, .nav-drop > .nav-drop-btn {
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.65); padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm); transition: var(--transition);
  cursor: pointer; white-space: nowrap;
}
.main-nav > a:hover, .nav-drop > .nav-drop-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav > a.active { color: var(--gold); }

.nav-drop { position: relative; }
.nav-drop-panel {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--dark2); border: 1px solid var(--dark-border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1rem; min-width: 520px; z-index: 400;
  display: none;
}
.nav-drop:hover .nav-drop-panel { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.25rem; }
.nav-drop-panel a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.8rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.nav-drop-panel a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.nav-drop-panel .sport-icon { font-size: 1rem; }

.header-right { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.header-search {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 0.4rem 1rem; transition: var(--transition);
  width: 200px;
}
.header-search:focus-within { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); width: 240px; }
.header-search input {
  background: none; border: none; outline: none;
  color: var(--white); font-size: 0.82rem; width: 100%;
}
.header-search input::placeholder { color: rgba(255,255,255,0.4); }
.header-search svg { color: rgba(255,255,255,0.4); flex-shrink: 0; width: 14px; height: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--dark); z-index: 250; overflow-y: auto;
  padding: 1.5rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--dark-border);
  color: rgba(255,255,255,0.75); font-size: 1rem; font-weight: 500;
}
.mobile-nav .sport-group-title { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark-muted); margin: 1.5rem 0 0.5rem; }

/* ── Ticker strip ──────────────────────────────── */
.ticker-wrap {
  background: var(--dark2); border-bottom: 1px solid var(--dark-border);
  height: 36px; overflow: hidden; display: flex; align-items: center;
  margin-top: 64px;
}
.ticker-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 45s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.ticker-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero ──────────────────────────────────────── */
.hero {
  background: var(--dark); color: var(--white); position: relative; overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,147,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,82,163,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero .lead { color: rgba(255,255,255,0.6); max-width: 58ch; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat__n {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat__l {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.35rem;
}
.hero-search {
  display: flex; align-items: center; gap: 0; max-width: 520px;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px; overflow: hidden; transition: var(--transition);
}
.hero-search:focus-within { border-color: rgba(200,147,58,0.5); background: rgba(255,255,255,0.12); }
.hero-search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-size: 0.95rem; padding: 0.9rem 1.5rem;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.35); }
.hero-search button {
  background: var(--gold); color: var(--white); padding: 0.75rem 1.4rem;
  font-size: 0.82rem; font-weight: 700; border-radius: 50px;
  margin: 0.25rem; transition: var(--transition);
}
.hero-search button:hover { background: #b8832a; }

/* ── Section styles ────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header p { color: var(--body); margin-top: 0.75rem; }
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }

.divider { height: 1px; background: var(--border); border: none; }

/* ── Sport Cards ───────────────────────────────── */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.sport-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.2rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.6rem; transition: var(--transition); cursor: pointer;
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.sport-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sport-color, var(--gold)); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.sport-card:hover { border-color: var(--sport-color, var(--gold)); transform: translateY(-2px); box-shadow: var(--shadow); }
.sport-card:hover::after { transform: scaleX(1); }
.sport-card__icon { font-size: 2rem; }
.sport-card__name { font-family: var(--font-ui); font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }
.sport-card__count { font-size: 0.72rem; color: var(--muted); }

/* ── Athlete Cards ─────────────────────────────── */
.athlete-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.athlete-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.athlete-card:hover { border-color: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.athlete-card__img {
  height: 180px; background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.athlete-card__initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  letter-spacing: -0.02em;
}
.athlete-card__sport-pill {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.2rem 0.6rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--body);
}
.athlete-card__body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.athlete-card__nat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.athlete-card__name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 0.3rem; }
.athlete-card__pos { font-size: 0.78rem; font-weight: 600; color: var(--gold); margin-bottom: 0.8rem; }
.athlete-card__snippet { font-size: 0.82rem; color: var(--body); line-height: 1.5; flex: 1; }
.athlete-card__footer {
  padding: 0.9rem 1.2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.athlete-card__cta { font-size: 0.75rem; font-weight: 700; color: var(--charcoal); display: flex; align-items: center; gap: 0.3rem; }
.athlete-card:hover .athlete-card__cta { color: var(--gold); }

/* Athlete card - featured (larger) */
.athlete-card--featured .athlete-card__img { height: 240px; }
.athlete-card--featured .athlete-card__initials { width: 100px; height: 100px; font-size: 2.2rem; }
.athlete-card--featured .athlete-card__name { font-size: 1.4rem; }

/* ── Filter bar ────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  padding: 1rem 0; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem;
}
.filter-chip {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--white); color: var(--body);
  transition: var(--transition); cursor: pointer;
}
.filter-chip:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filter-chip.active { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.filter-count {
  font-size: 0.68rem; background: var(--bg2); color: var(--muted);
  padding: 0.1rem 0.4rem; border-radius: 50px; margin-left: 0.3rem;
}
.filter-chip.active .filter-count { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }

/* ── Category / Sport hero ─────────────────────── */
.cat-hero {
  background: var(--dark); color: var(--white);
  padding: 6rem 0 4rem; position: relative; overflow: hidden;
  margin-top: 64px;
}
.cat-hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.cat-hero__icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.cat-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.cat-hero .lead { color: rgba(255,255,255,0.6); }
.cat-hero-bar {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cat-hero-stat span { display: block; }
.cat-hero-stat .n { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.cat-hero-stat .l { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

/* ── Bio page ──────────────────────────────────── */
.bio-hero {
  background: var(--dark); color: var(--white);
  padding: 6rem 0 4rem; margin-top: 64px;
}
.bio-hero-inner { display: grid; grid-template-columns: auto 1fr; gap: 3.5rem; align-items: start; }
.bio-avatar {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--dark3); border: 3px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 4rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0; letter-spacing: -0.02em;
}
.bio-hero h1 { color: var(--white); font-size: clamp(2rem,5vw,4rem); margin: 0.5rem 0 0.4rem; }
.bio-hero__full-name { color: rgba(255,255,255,0.45); font-size: 1rem; font-family: var(--font-ui); font-style: italic; margin-bottom: 1.5rem; }
.bio-hero__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.bio-quick-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.bio-quick-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 0.8rem 1.2rem;
  text-align: center; min-width: 100px;
}
.bio-quick-stat .val { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.bio-quick-stat .key { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

.bio-body { padding: 4rem 0; }
.bio-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.bio-main > p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.bio-main h3 { margin: 2.5rem 0 1rem; }
.bio-main .lead { font-size: 1.15rem; color: var(--ink); font-family: var(--font-head); font-style: italic; margin-bottom: 1.5rem; }
.bio-sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 1.5rem; }
.bio-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.bio-card__header {
  padding: 0.9rem 1.2rem; background: var(--bg2); border-bottom: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.bio-card table { width: 100%; border-collapse: collapse; }
.bio-card td { padding: 0.7rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: top; }
.bio-card tr:last-child td { border-bottom: none; }
.bio-card td:first-child { color: var(--muted); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; width: 42%; }

.bio-funfact {
  background: var(--gold-bg); border: 1.5px solid rgba(200,147,58,0.25);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.bio-funfact__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.bio-funfact p { font-size: 0.9rem; color: var(--ink); max-width: none; line-height: 1.65; }

.honours-list { display: flex; flex-direction: column; gap: 0.4rem; }
.honours-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--body); line-height: 1.4;
}
.honours-list li::before { content: '★'; color: var(--gold); flex-shrink: 0; font-size: 0.65rem; margin-top: 0.2rem; }

/* ── List/Rankings pages ───────────────────────── */
.rankings-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.rankings-table thead th {
  background: var(--bg2); padding: 0.9rem 1.2rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); text-align: left;
  border-bottom: 1.5px solid var(--border);
}
.rankings-table tbody td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.rankings-table tbody tr:last-child td { border-bottom: none; }
.rankings-table tbody tr:hover td { background: var(--bg2); }
.rank-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--border2); width: 56px; }
.rank-num.top3 { color: var(--gold); }
.rank-link { font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.rank-link:hover { color: var(--gold); }
.rank-detail { color: var(--muted); font-size: 0.82rem; }

/* ── Search ────────────────────────────────────── */
.search-hero { background: var(--dark); padding: 5rem 0 3rem; margin-top: 64px; }
.search-hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.search-box-lg {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px; overflow: hidden; max-width: 640px;
  transition: var(--transition);
}
.search-box-lg:focus-within { border-color: var(--gold); background: rgba(255,255,255,0.14); }
.search-box-lg input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-size: 1rem; padding: 1rem 1.5rem;
}
.search-box-lg input::placeholder { color: rgba(255,255,255,0.4); }
.search-box-lg button {
  background: var(--gold); color: var(--white); padding: 0.8rem 1.6rem;
  font-size: 0.85rem; font-weight: 700; border-radius: 50px; margin: 0.3rem;
  cursor: pointer; transition: var(--transition);
}
.search-box-lg button:hover { background: #b8832a; }
.search-result {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem;
  transition: var(--transition); cursor: pointer;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.search-result:hover { border-color: var(--charcoal); box-shadow: var(--shadow); }
.search-result__init {
  width: 52px; height: 52px; border-radius: 50%; background: var(--charcoal);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.search-result h4 { margin-bottom: 0.25rem; }
.search-result h4 a:hover { color: var(--gold); }
.search-result p { font-size: 0.86rem; color: var(--muted); max-width: none; margin: 0 0 0.6rem; line-height: 1.5; font-family: var(--font-ui); }
.search-result-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ── Breadcrumb ────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 0; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,0.2); padding: 0 0.5rem; font-size: 0.75rem; }
.breadcrumb a { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500; transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb li:last-child a { color: rgba(255,255,255,0.8); }
/* Light breadcrumb */
.breadcrumb--light li:not(:last-child)::after { color: var(--faint); }
.breadcrumb--light a { color: var(--muted); }
.breadcrumb--light a:hover { color: var(--charcoal); }
.breadcrumb--light li:last-child a { color: var(--charcoal); }

/* ── Featured bands ────────────────────────────── */
.feature-band { background: var(--charcoal); color: var(--white); padding: 4rem 0; }
.feature-band h2 { color: var(--white); }
.feature-band .lead { color: rgba(255,255,255,0.6); }
.stat-band { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 2rem; text-align: center; }
.stat-row .n { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--charcoal); }
.stat-row .l { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* ── Highlight quote ───────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--gold); padding: 1.2rem 1.8rem;
  background: var(--gold-bg); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.pull-quote p { font-family: var(--font-head); font-size: 1.15rem; font-style: italic; color: var(--ink); max-width: none; line-height: 1.6; margin: 0; }
.pull-quote cite { display: block; margin-top: 0.6rem; font-size: 0.78rem; font-weight: 700; font-style: normal; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Adsense ───────────────────────────────────── */
.ad-wrap { padding: 2rem 0; }
.ad-label-txt { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); text-align: center; margin-bottom: 0.4rem; }
.ad-slot {
  background: var(--bg2); border: 1px dashed var(--border2);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  min-height: 90px; color: var(--faint); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; overflow: hidden;
}
.ad-slot--rect { min-height: 250px; max-width: 300px; }
.ad-slot--banner { min-height: 90px; width: 100%; }

/* ── Pagination ────────────────────────────────── */
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 3rem; }
.pagination a, .pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--body); transition: var(--transition);
  background: var(--white);
}
.pagination a:hover { border-color: var(--charcoal); color: var(--charcoal); }
.pagination .active { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ── Accordion ─────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; font-size: 0.95rem; font-weight: 600; color: var(--charcoal);
  transition: var(--transition); cursor: pointer;
}
.accordion-btn:hover { color: var(--gold); }
.accordion-btn .icon { transition: transform 0.2s; }
.accordion-item.open .accordion-btn .icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body p { padding-bottom: 1.2rem; font-size: 0.9rem; }

/* ── Footer ────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.6); margin-top: 5rem; }
.footer-top {
  padding: 4rem 0 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-brand p { font-size: 0.85rem; max-width: 30ch; line-height: 1.65; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; font-weight: 700; font-family: var(--font-ui); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--dark-border); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; max-width: none; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.disclaimer-bar {
  background: rgba(200,147,58,0.08); border: 1px solid rgba(200,147,58,0.2);
  border-radius: var(--radius-sm); padding: 0.9rem 1.2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6;
  margin-bottom: 1rem;
}
.disclaimer-bar strong { color: var(--gold); font-weight: 600; }

/* ── Back to top ───────────────────────────────── */
.btt {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: var(--white); border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.btt.on { opacity: 1; pointer-events: all; transform: translateY(0); }
.btt:hover { background: var(--gold); }

/* ── Animations ────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Misc utilities ────────────────────────────── */
.dot-divider { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0; }
.card-plain { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.inline-link { color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(200,147,58,0.3); transition: var(--transition); }
.inline-link:hover { border-color: var(--gold); }
.no-results { text-align: center; padding: 4rem 2rem; color: var(--muted); }
.no-results p { margin-inline: auto; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
}
@media (max-width: 900px) {
  .main-nav, .header-search { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2,1fr); }
  .bio-hero-inner { grid-template-columns: 1fr; }
  .bio-avatar { width: 120px; height: 120px; font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .cat-hero-bar { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .athlete-grid { grid-template-columns: repeat(2,1fr); }
  .sports-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .container { width: calc(100% - 2rem); }
  .hero { padding: 4rem 0 3rem; }
}
@media (max-width: 400px) {
  .athlete-grid { grid-template-columns: 1fr; }
}
