/* ============================================================
   CADEN MECHSNER · RECRUITING SITE
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }

/* ── Tokens ── */
:root {
  --white:      #ffffff;
  --bg:         #f8f7f5;
  --bg-alt:     #f0eeeb;
  --ink:        #111111;
  --ink-2:      #555555;
  --ink-3:      #999999;
  --line:       #e2e0dc;
  --red:        #c01020;
  --red-dark:   #8b0e18;

  --nav-h:      64px;
  --max-w:      1160px;
  --pad-x:      clamp(20px, 5vw, 60px);

  --radius:     6px;
  --radius-lg:  12px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ── Shared layout ── */
.section {
  padding: clamp(60px, 10vw, 110px) var(--pad-x);
  background: var(--white);
}

.section-alt {
  background: var(--bg-alt);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-inner h2 {
  margin-bottom: clamp(28px, 4vw, 48px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.brand:hover {
  background: var(--ink);
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s;
}

.main-nav a:hover { color: var(--ink); }

.btn-nav {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.15s;
}

.btn-nav:hover { background: var(--red-dark); }

.menu-toggle {
  display: none;
  font-size: 20px;
  color: var(--ink);
  padding: 4px;
  margin-left: auto;
}

.mobile-nav {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 16px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: var(--nav-h);
  background: #111111;
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-h));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 88px)
           clamp(32px, 4vw, 64px)
           clamp(48px, 7vw, 88px)
           max(32px, calc((100vw - var(--max-w)) / 2 + 40px));
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Blend: fade left edge into hero bg, fade bottom edge too */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,  #111111 0%, rgba(17,17,17,0.75) 18%, rgba(17,17,17,0.1) 45%, transparent 70%),
    linear-gradient(to top,    #111111 0%, transparent 28%);
}

.hero-school {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.hero-name {
  font-size: clamp(60px, 7.5vw, 108px);
  line-height: 0.86;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-name span {
  display: block;
}

.hero-pos {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

/* Hero horizontal stat bar */
.hero-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.hero-bar-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-bar-div {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.hbs-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  color: var(--white);
}

.hbs-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

/* Hero CTAs */
.hero-actions {
  display: flex;
  gap: 12px;
  padding-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
}

/* Random mantra: under hero image column — large display type, not body copy */
.hero-quote-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(28px, 4.5vw, 52px) var(--pad-x) clamp(32px, 5vw, 64px);
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-quote-shell[hidden] {
  display: none !important;
}

.hero-quote-shell:not([hidden]) {
  display: grid;
}

.hero-quote {
  grid-column: 2;
  margin: 0;
  align-self: center;
  padding: 0 0 0 clamp(20px, 2.5vw, 32px);
  border-left: 4px solid var(--red);
  max-width: min(22em, 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #f7f5f2;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.btn-primary {
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}


/* ============================================================
   FILM
   ============================================================ */

.section-film {
  background: var(--white);
}

.section-hdr-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-hdr-row h2 { margin-bottom: 0; }

.film-ext {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm-outline {
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-sm-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* Primary video — full-width + sidebar info */
.film-primary {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.film-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.film-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.film-primary-meta {
  padding: 28px 24px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.film-primary-meta h3 {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
}

.film-primary-meta p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Tag badge */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192, 16, 32, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Secondary film cards */
.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.film-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.film-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.film-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.film-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.film-thumb-btn { cursor: pointer; }

button.film-thumb {
  width: 100%;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.film-card:hover .film-thumb img { opacity: 0.8; }

.film-grid--channel-latest {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-btn::before {
  content: '';
  width: 52px;
  height: 52px;
  background: rgba(192, 16, 32, 0.92);
  border-radius: 50%;
}

.play-btn::after {
  content: '▶';
  position: absolute;
  color: white;
  font-size: 18px;
  padding-left: 3px;
}

.film-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.film-card-body h3 { color: var(--ink); }

.film-card-body p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.link-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 4px;
  transition: color 0.15s;
}

.link-arrow:hover { color: var(--red-dark); }

/* ============================================================
   MEASURABLES
   ============================================================ */

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mc {
  flex: 1;
  min-width: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
}

a.mc {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.mc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

a.mc.mc-dark:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

a.mc:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.mc-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.mc-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: inherit;
}

.mc-dark .mc-val { color: var(--white); }

.mc-lbl {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.4;
}

.mc-dark .mc-lbl { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   SEASON STATS
   ============================================================ */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  white-space: nowrap;
}

.stats-table th {
  background: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.stats-table tr:last-child td { border-bottom: none; }

.stats-table tbody tr:nth-child(even) td { background: var(--bg); }

.td-season {
  font-weight: 600;
  color: var(--ink) !important;
}

/* ============================================================
   REFERENCES
   ============================================================ */

.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ref-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--red);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ref-role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}

.ref-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
  margin-bottom: 8px;
}

.ref-phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  transition: color 0.15s;
}

.ref-phone:hover { color: var(--red-dark); }

.ref-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 4px;
  transition: color 0.15s;
}

.ref-link:hover { color: var(--ink); }

/* ============================================================
   ACADEMICS
   ============================================================ */

.acad-layout {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.acad-photo-col {
  text-align: center;
}

.acad-photo-col img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--line);
}

.acad-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--ink);
}

.acad-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* Headshot column: one random mantra — desktop / wide layout only */
.acad-quotes {
  display: none;
}

@media (min-width: 961px) {
  .acad-quotes {
    display: block;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: left;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .acad-quote-line {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding-left: 10px;
    border-left: 2px solid rgba(192, 16, 32, 0.55);
  }
}

.acad-col-hdr {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 0;
}

.acad-dl {
  list-style: none;
}

.acad-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.acad-row:last-child { border-bottom: none; }

.acad-row dt {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  white-space: nowrap;
}

.acad-row dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.act-list {
  list-style: none;
}

.act-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.act-list li:last-child { border-bottom: none; }

.act-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.act-detail {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   EXTERNAL PROFILES
   ============================================================ */

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
}

.profile-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.profile-yt {
  background: #ff0000;
  font-size: 15px;
  padding-left: 2px;
}

.profile-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.profile-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */

.section-contact {
  background: var(--ink);
  color: var(--white);
}

.contact-eyebrow { color: rgba(255, 255, 255, 0.4); }
.section-contact h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: background 0.15s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-primary {
  grid-column: 1 / -1;
  background: var(--red);
  border-color: var(--red);
}

.contact-primary:hover {
  background: var(--red-dark);
}

.contact-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.contact-primary .contact-lbl {
  color: rgba(255, 255, 255, 0.7);
}

.contact-val {
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #0a0a0a;
  padding: 24px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 960px
   ============================================================ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    align-content: start;
  }

  .hero-photo { display: none; }

  .hero-content {
    justify-content: flex-start;
    padding: 24px var(--pad-x) 22px;
  }

  .hero-school { margin-bottom: 10px; }

  .hero-name {
    margin-bottom: 12px;
    font-size: clamp(42px, 11vw, 68px);
  }

  .hero-pos { margin-bottom: 20px; }

  .hero-bar {
    margin-bottom: 22px;
    width: 100%;
    max-width: 100%;
  }

  .hero-bar-stat {
    flex: 1;
    min-width: 0;
    padding: 14px 12px;
  }

  .hero-actions {
    padding-bottom: 20px;
  }

  .hero-quote {
    grid-column: 1 / -1;
    max-width: 18em;
    margin: 0 auto;
    padding: 20px 8px 0;
    border-left: none;
    border-top: 3px solid var(--red);
    text-align: center;
    font-size: clamp(22px, 6.2vw, 34px);
    line-height: 1.08;
  }

  .film-primary {
    grid-template-columns: 1fr;
  }

  .film-primary-meta { padding: 20px; }

  .acad-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .acad-photo-col {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .acad-photo-col img { margin: 0; }

  .ref-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ============================================================ */

@media (max-width: 640px) {
  .main-nav, .btn-nav { display: none; }
  .menu-toggle { display: block; }

  .hero-metrics { gap: 8px; }
  .hm { padding: 10px 14px; min-width: 78px; }

  .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-name { font-size: clamp(38px, 10.5vw, 56px); }

  .film-grid { grid-template-columns: 1fr; }
  .film-grid--channel-latest { grid-template-columns: 1fr; }

  .metric-strip { gap: 8px; }
  .mc { min-width: 100px; padding: 18px 12px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-primary { grid-column: 1; }

  .acad-layout { grid-template-columns: 1fr; }
  .acad-photo-col { flex-direction: column; text-align: center; }
  .acad-photo-col img { margin: 0 auto; }

  .profiles-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }

  .section-hdr-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PROGRESS PAGE
   ============================================================ */

.progress-hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.progress-hero .eyebrow { color: var(--red); }
.progress-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 0 16px;
  letter-spacing: -0.01em;
}
.progress-sub {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.rank-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.rank-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.rank-pill-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Growth delta cards ── */
.delta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.delta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  background: var(--white);
  text-align: center;
}
.delta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.delta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.delta-before,
.delta-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.delta-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
}
.delta-before .delta-num { color: var(--ink-3); }
.delta-after  .delta-num { color: var(--ink); }
.delta-unit {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 3px;
}
.delta-when {
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.delta-arrow {
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}
.delta-gain {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

/* ── Milestone timeline ── */
.milestone-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.milestone {
  display: flex;
  gap: 32px;
  padding: 28px 0 28px 24px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--line);
}
.milestone:first-child { padding-top: 0; }
.milestone:last-child  { border-bottom: none; }
.milestone-peak { border-left-color: var(--red); }
.milestone-win  { border-left-color: #b8860b; }
.milestone-date {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.ms-event {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.45;
}
.ms-event em {
  color: var(--ink-3);
  font-style: normal;
}
.milestone-body { flex: 1; padding-top: 1px; }
.ms-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 10px;
}
.ms-stat {
  font-size: 14px;
  color: var(--ink-2);
}
.ms-stat strong { color: var(--ink); font-weight: 600; }
.ms-highlight { color: var(--ink); font-weight: 500; }
.ms-note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

/* ── Season game log table ── */
.season-intro {
  font-size: 15px;
  color: var(--ink-2);
  margin: 4px 0 32px;
}
.game-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.game-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  white-space: nowrap;
}
.game-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.game-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.game-table tbody tr:last-child td { border-bottom: none; }
.game-table .td-note {
  color: var(--ink-3);
  font-size: 12px;
}
.game-table tfoot td {
  padding: 14px 20px;
  font-weight: 600;
  background: var(--bg);
  border-top: 2px solid var(--line);
}
.game-table tfoot td:first-child {
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.stat-pct {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  margin-left: 4px;
}

/* ── Dual-threat cards ── */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.dual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.dual-pos {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 2px;
}
.dual-rank {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dual-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dual-stats li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.dual-stats li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--line);
}
.dual-note {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Film skeleton loading state ── */
.film-skeleton {
  background: var(--line);
  border-radius: var(--radius-lg);
  min-height: 260px;
  animation: skel-pulse 1.6s ease-in-out infinite;
}
@keyframes skel-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.film-channel-row {
  text-align: center;
  margin-top: 32px;
}

/* ── X embedded timeline ── */
.twitter-wrap {
  margin-top: 32px;
  max-width: 680px;
}
.twitter-wrap .twitter-timeline {
  display: block;
}

.twitter-embed-fallback {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-3);
  max-width: 550px;
}

.twitter-embed-fallback a {
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.twitter-embed-fallback a:hover {
  color: var(--red);
}

.twitter-embed-fallback-hint {
  font-weight: 400;
}

/* ── Season placeholder (progress page) ── */
.season-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-top: 32px;
  text-align: center;
  background: var(--white);
}
.sp-season {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.sp-note {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.sp-cols {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
.sp-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  gap: 6px;
}
.sp-col:last-child { border-right: none; }
.sp-stat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sp-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink-3);
}

/* ── Progress page responsive ── */
@media (max-width: 760px) {
  .delta-grid { grid-template-columns: 1fr; }
  .milestone { flex-direction: column; gap: 10px; }
  .milestone-date { width: auto; }
  .dual-grid { grid-template-columns: 1fr; }
}
