*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #DA291C;
  --navy: #0B2265;
  --red-light: #fdf2f1;
  --gray-50: #fafafa;
  --gray-100: #f2f2f2;
  --gray-200: #e4e4e4;
  --gray-400: #999;
  --gray-600: #555;
  --gray-800: #222;
  --white: #fff;
  --font: 'Inter', system-ui, sans-serif;
}
body { font-family: var(--font); background: var(--white); color: var(--gray-800); font-size: 14px; line-height: 1.6; }

/* NAV */
.nav { background: var(--white); border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; padding: 0 2rem; height: 56px; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.nav-logo-mark { width: 32px; height: 32px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: white; font-size: 10px; font-weight: 800; letter-spacing: 0.03em; }
.nav-logo-text { font-size: 14px; font-weight: 600; color: var(--gray-800); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-a { color: var(--gray-600); font-size: 13px; text-decoration: none; }
.nav-a:hover, .nav-a.active { color: var(--red); }

/* PAGE HEADER */
.page-header { border-bottom: 1px solid var(--gray-200); padding: 2rem 2rem 0; }
.page-header-inner { max-width: 1060px; margin: 0 auto; }
.breadcrumb { font-size: 11px; color: var(--gray-400); margin-bottom: 6px; }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.page-title { font-size: 22px; font-weight: 700; color: var(--gray-800); letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.page-sub-nav { display: flex; gap: 0; }
.page-sub-a { color: var(--gray-400); font-size: 12px; font-weight: 500; text-decoration: none; padding: 8px 14px 8px 0; border-bottom: 2px solid transparent; margin-right: 8px; }
.page-sub-a:hover { color: var(--gray-800); }
.page-sub-a.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }

/* ROSTER */
.wrap { max-width: 1060px; margin: 0 auto; padding: 2rem; }
.roster-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.filter-group { display: flex; align-items: center; gap: 6px; }
.filter-lbl { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 4px; }
.fbtn { padding: 5px 12px; font-size: 12px; border: 1px solid var(--gray-200); color: var(--gray-600); cursor: pointer; background: var(--white); font-family: var(--font); border-radius: 20px; }
.fbtn:hover { border-color: var(--red); color: var(--red); }
.fbtn.on { background: var(--red); border-color: var(--red); color: white; }
.roster-count { font-size: 12px; color: var(--gray-400); }

/* ROSTER GRID — clean editorial list style */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }

.card { background: var(--white); display: flex; flex-direction: column; text-decoration: none; border: 1px solid var(--gray-200); border-radius: 4px; overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
.card:hover { border-color: var(--gray-400); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.card:hover .card-name { color: var(--red); }

.card-photo { aspect-ratio: 3/4; background: var(--gray-100); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.card-photo-init { font-size: 22px; font-weight: 700; color: var(--gray-300); }
.badge-disc { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(11,34,101,0.82); color: rgba(255,255,255,0.9); font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 10px; }

.card-body { padding: 12px 14px 14px; }
.card-name { font-size: 13px; font-weight: 700; color: var(--gray-800); line-height: 1.25; margin-bottom: 2px; transition: color 0.1s; }
.card-sub { font-size: 11px; color: var(--gray-400); margin-bottom: 10px; }
.card-scores { display: flex; gap: 4px; }
.sc { flex: 1; text-align: center; padding: 5px 0; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 3px; }
.sc-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); }
.sc-val { font-size: 12px; font-weight: 700; color: var(--navy); }

/* PROFILE BANNER */
.profile-banner { background: var(--navy); padding: 0 2rem; }
.profile-banner-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: flex-end; gap: 1.5rem; padding-top: 2rem; }
.profile-headshot { width: 110px; flex-shrink: 0; aspect-ratio: 3/4; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-bottom: none; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.profile-headshot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-headshot-init { font-size: 26px; font-weight: 700; color: rgba(255,255,255,0.12); }
.profile-headshot-note { position: absolute; bottom: 8px; width: 100%; text-align: center; font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: 0.05em; }
.profile-text { padding-bottom: 1.25rem; flex: 1; }
.profile-disc { display: inline-block; background: var(--red); color: white; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; margin-bottom: 8px; }
.profile-name { font-size: 30px; font-weight: 700; color: white; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2px; }
.profile-pron { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip { color: rgba(255,255,255,0.55); font-size: 11px; border: 1px solid rgba(255,255,255,0.12); padding: 2px 8px; }

/* PROFILE SUBBAR */
.profile-subbar { border-bottom: 1px solid var(--gray-200); padding: 0 2rem; }
.profile-subbar-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.profile-tabs { display: flex; }
.ptab { color: var(--gray-400); font-size: 12px; font-weight: 500; padding: 10px 14px 10px 0; margin-right: 8px; border-bottom: 2px solid transparent; display: inline-block; }
.ptab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
.back-link { color: var(--gray-400); font-size: 12px; text-decoration: none; }
.back-link:hover { color: var(--red); }

/* PROFILE BODY */
.profile-body { max-width: 1060px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }

.sidebar > * + * { margin-top: 1.25rem; }
.scard { background: var(--white); border: 1px solid var(--gray-200); border-radius: 3px; overflow: hidden; }
.scard-head { font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gray-400); padding: 8px 12px; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.srow { display: flex; justify-content: space-between; align-items: flex-start; padding: 7px 12px; border-bottom: 1px solid var(--gray-100); gap: 8px; }
.srow:last-child { border-bottom: none; }
.slbl { font-size: 11px; color: var(--gray-400); flex-shrink: 0; width: 100px; }
.sval { font-size: 11px; font-weight: 600; color: var(--gray-800); text-align: right; line-height: 1.4; }

.pb-row { display: flex; }
.pb-cell { flex: 1; text-align: center; padding: 12px 6px; border-right: 1px solid var(--gray-100); }
.pb-cell:last-child { border-right: none; }
.pb-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 4px; }
.pb-num { font-size: 18px; font-weight: 700; color: var(--navy); }

.mcontent > * + * { margin-top: 1.25rem; }
.mcard { background: var(--white); border: 1px solid var(--gray-200); border-radius: 3px; overflow: hidden; }
.mcard-head { font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gray-400); padding: 8px 14px; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.mcard-body { padding: 14px 16px; }

.bio-text { font-size: 13px; line-height: 1.8; color: var(--gray-600); }
.bio-text + .bio-text { margin-top: 10px; }

.acc-list { list-style: none; }
.acc-item { display: flex; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.acc-item:last-child { border-bottom: none; }
.acc-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 7px; }
.acc-txt { font-size: 12px; color: var(--gray-700); line-height: 1.45; }

.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.prog { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 10px 12px; border-radius: 3px; }
.prog-type { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 4px; }
.prog-music { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.prog-artist { font-size: 11px; color: var(--gray-400); }

table.rtable { width: 100%; border-collapse: collapse; font-size: 12px; }
.rtable th { background: var(--gray-50); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); padding: 7px 12px; text-align: left; border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
.rtable td { padding: 8px 12px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-variant-numeric: tabular-nums; }
.rtable tr:last-child td { border-bottom: none; }
.rtable tr:hover td { background: var(--gray-50); }
.rtable th:nth-child(n+3), .rtable td:nth-child(n+3) { text-align: right; }
.pl { font-weight: 700; font-size: 11px; }
.pl1 { color: #B8860B; } .pl2 { color: var(--navy); } .pl3 { color: #b36000; } .pln { color: var(--gray-400); } .plgold { color: #B8860B; }
.sec-div td { background: var(--gray-50) !important; font-size: 10px !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-400) !important; padding: 4px 12px !important; border-bottom: 1px solid var(--gray-200) !important; }

@media (max-width: 700px) {
  .profile-body { grid-template-columns: 1fr; }
  .profile-banner-inner { flex-direction: column; align-items: flex-start; }
  .profile-headshot { width: 80px; aspect-ratio: 1; }
  .profile-name { font-size: 22px; }
  .prog-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .wrap { padding: 1rem; }
  nav.nav { padding: 0 1rem; }
}
