/* LIVE-CSS-FINGERPRINT: 8888 */

/* =========================================================
   Michael Jordan Archive — CLEAN STYLESHEET (WHITE CATALOG)
   Single-source-of-truth. Template-ready.
   ========================================================= */

/* ---------- Base Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Theme Tokens ---------- */
:root{
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #141414;
  --ink-2: #2b2b2b;
  --muted: #6b6b6b;
  --rule: rgba(0,0,0,0.10);
  --rule-2: rgba(0,0,0,0.14);

  --sans: ui-sans-serif, system-ui, -apple-system, Arial, sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;

  /* Layout widths */
  --reading: 1280px;
  --reading-standard: 1180px;
  --reading-season: clamp(980px, 78vw, 1120px);

  /* Global radius */
  --radius: 14px;

  /* Accent */
  --accent-red: #b10d0d;
}

/* ---------- Page Base ---------- */
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.7;
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

p, li, .muted, .purpose{
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-2);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

/* ---------- Layout ---------- */
main{
  display: block;
  width: 100%;
  max-width: var(--reading);
  margin-left: auto;
  margin-right: auto;
  padding: 44px 24px 92px;
}

/* Standard pages vs season pages */
body:not(.season-page) main{
  max-width: var(--reading-standard);
  padding-left: 24px;
  padding-right: 24px;
}

body.season-page main{
  max-width: var(--reading-season);
  padding-left: 24px;
  padding-right: 24px;
}

/* Copy blocks */
p{
  margin: 0 0 18px 0;
  color: var(--ink-2);
  max-width: 78ch;
  font-size: 16px;
  line-height: 1.75;
}
ul{ margin: 10px 0 18px 18px; color: var(--ink-2); }
li{ margin: 6px 0; }

.muted{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,20,20,0.55);
}

/* ---------- Tables ---------- */
.table-scroll{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll table{ min-width: 720px; }
.table-scroll th{ white-space: normal; line-height: 1.25; }

.notes-col{
  min-width: 240px;
  white-space: normal;
}

/* ---------- Typography ---------- */
h1{
  margin: 0 0 14px 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  font-weight: 450;
  color: var(--ink);
  max-width: 28ch;
}

h2, h3, h4{
  margin: 36px 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

/* =====================================================
   SNEAKER / MODEL TYPOGRAPHY
   ===================================================== */

h6{
  font-family: var(--sans);
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  margin-top: 10px;
  text-align: center;
}

h5{
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  margin-top: 14px;
  margin-bottom: 10px;
  text-align: center;
}


.pop-label{
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.42);
  margin-top: 2px;
}

/* =========================================================
   HEADER + NAV (DESKTOP)
   ========================================================= */

.site-header{
  background: rgba(247,247,245,0.92);
  border-bottom: 1px solid var(--rule);
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}
.brand img{ width: 56px; height: auto; }

.brand-name{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111111;
}

/* Nav (Desktop) */
.site-nav{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: flex-end;
}

.site-nav a,
.site-nav a:link,
.site-nav a:visited{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 450;
  color: rgba(20,20,20,0.55);
  padding: 6px 0 2px;
}
.site-nav a:hover{ color: rgba(20,20,20,0.90); }

/* Hamburger (hidden on desktop) */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  background: #7a7a7a;
  margin: 6px auto;
  border-radius: 0;
}

/* =========================================================
   HERO (DESKTOP)
   ========================================================= */

.hero-carousel{
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: transparent;
}

.hero-viewport,
.hero-track{
  height: 100%;
}

.hero-track{
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
  transform: translateZ(0);
}

.hero-slide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-1 img{
  object-position: center 20%;
}

.hero-2 img{
  object-position: center 50%;
}

.hero-3 img{
  object-position: center 30%;
}

.hero-4 img{
  object-position: center 55%;
}

.hero-5 img{
  object-position: center 95%;
}

/* Caption lives inside slide */
.hero-slide .hero-caption{
  position: absolute;
  bottom: 20px;
  left: 24px;
  max-width: 520px;

  background: rgba(255,255,255,0.72);
  color: #111;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px 18px;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);

  pointer-events: none;
}

.hero-caption-title{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-caption-sub{
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
}

/* Arrows */
.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}
.hero-prev{ left: 18px; }
.hero-next{ right: 18px; }
.hero-arrow:hover{ background: rgba(0,0,0,0.65); }

.hero-bleed img{
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================================================
   LINKS (preseason + archive inline)
   ========================================================= */

.preseason-link{
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.preseason-link:hover{
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}
.preseason-link .arrow{
  color: var(--accent-red);
  font-weight: 700;
  margin-left: 4px;
}

.archive-link{ text-decoration: underline; }
.archive-link:hover{ text-decoration: none; }

/* =========================================================
   HOME / CONTENT BLOCKS
   ========================================================= */

.section-title{
  text-align: left;
  margin: 36px 0 24px;
  color: rgba(0,0,0,0.9);
}

.section-strip{
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.section-strip::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.section-strip img{
  width: 100%;
  height: auto;
  display: block;
}

.home-intro{
  padding: 48px 0 60px;
}

.home-intro-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-intro .lead{
  font-size: 15px;
  line-height: 1.75;
}

.research-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.research-item{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  padding: 18px;
}

.home-grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}

.home-tile{
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 26px 24px 24px;
  background: #f7f7f5;
  position: relative;
  transition: 
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.home-tile::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:2px;
  border-radius:999px;
  background: rgba(157,15,15,0.55);
}

.home-tile:hover{
  border-color: rgba(157,15,15,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  background: #ffffff;
}

.home-tile:active{
  background: #ffffff;
  border-color: rgba(157,15,15,0.55);
}

.tile-title{
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.tile-sub{
  color: rgba(0,0,0,0.58);
}

.home-tile:nth-child(1),
.home-tile:nth-child(2){
  padding: 28px 26px 26px;
}

.home-tile::before{
  transition: background 0.2s ease;
}

.home-tile:hover::before{
  background: rgba(157,15,15,0.9);
}

.home-list{
  margin-top: 14px;
  padding-left: 20px;
}

.home-list li{
  margin-bottom: 12px;
}


/* Archive & Population Research */
.home-research{
  width: 100%;
  margin: 64px 0 0;
  padding: 64px 0;
  background: #f3f0ea;
}

.home-research-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.home-research-copy{
  position: sticky;
  top: 110px;
}

.home-research-title{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(0,0,0,0.9);
}

.home-research-intro{
  margin: 0 0 22px;
  color: rgba(0,0,0,0.76);
  line-height: 1.7;
}

.home-research-link{
  margin: 0;
}

.home-research-link a{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0,0,0,0.68);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 4px;
}

.home-research-link a:hover{
  color: rgba(0,0,0,0.9);
  border-bottom-color: rgba(0,0,0,0.75);
}

.home-research-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.research-point{
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
}

.research-point h3{
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.9);
}

.research-point p{
  margin: 0;
  color: rgba(0,0,0,0.72);
  line-height: 1.6;
}

@media (max-width: 900px){
  .home-research-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-research-copy{
    position: static;
  }

  .home-research-points{
    grid-template-columns: 1fr;
  }

  .home-research-feature-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-research-feature{
    padding: 0 24px;
  }

  .home-research-feature-copy{
    padding-left: 0;
    margin: 0;
    max-width: none;
  }

  .home-research-feature-image{
    width: 100%;
    margin: 0 0 20px;
    aspect-ratio: 4 / 3;
  }

 .home-research-feature-image{
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 4 / 3;
}

  .home-research-feature-image img{
    width: 100%;
    height: 100%;
    display: block;
  }

  .home-research-feature-copy{
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    justify-self: stretch;
  }

  .home-research-feature-copy::before{
    display: none;
  }
}

/* =========================================================
   HOME — SELECTED WORK (FULL BAND)
   ========================================================= */

.selected-work{
  margin: 0;
  padding: 72px 0 40px;
  background: #1f2a44;
  color: rgba(255,255,255,0.85);
}

.selected-work-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.selected-work-header{
  max-width: 760px;
  margin: 0 0 28px;
}

.selected-work-title{
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.selected-work-intro{
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.selected-work-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.selected-work-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.selected-work-image{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  margin-bottom: 14px;
}

.selected-work-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.selected-work-meta{
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.selected-work-card-title{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255,255,255,0.95);
}

.selected-work-card-text{
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.selected-work-card:hover .selected-work-image img{
  transform: scale(1.02);
}

.selected-work-card:hover .selected-work-card-title{
  color: rgba(255,255,255,1);
}
.selected-work{
  border-top: 1px solid rgba(0,0,0,0.12);
}
.selected-work{
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.selected-work-card{
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selected-work-card:hover{
  transform: translateY(-3px);
}

@media (max-width: 900px){
  .selected-work-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .selected-work-card-title{
    font-size: 18px;
  }
}

/* Divider */
.section-divider{
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 32px auto 12px;
}
/* =========================================================
   HOME — RESEARCH FEATURE
   ========================================================= */

.home-research-feature{
  margin: 120px 0 80px;
  padding: 0 24px;
}

.home-research-feature-image{
  margin-left: -10px;
}

.home-research-feature-copy{
  margin-right: -10px;
}

.home-research-feature-inner{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}

.home-research-feature-image{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f0ea;
  margin-bottom: 32px;
}

.home-research-feature-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-research-feature-title{
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
  color: rgba(0,0,0,0.95);
}

.home-research-feature-text{
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.74);
  margin-bottom: 14px;
}

.home-research-feature-list{
  margin: 10px 0 0;
  padding-left: 18px;
}

.home-research-feature-list li{
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(0,0,0,0.82);
  line-height: 1.55;
}

.home-method-card{
  margin-top: 32px;
  margin-bottom: 42px;
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f7f7f5;
  max-width: 420px;
}

.home-method-label{
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.9);
}

.home-method-text{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
  line-height: 1.5;
}

.home-method-link{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(0,0,0,0.16);
  padding-bottom: 3px;
}

.home-method-link:hover{
  color: rgba(0,0,0,0.92);
  border-bottom-color: rgba(0,0,0,0.7);
}

.home-research-feature-copy{
  max-width: 420px;
  min-height: 525px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  padding-left: 18px;
}

.home-research-feature-copy::before{
  content: "";
  position: absolute;
  left: -32px;

  top: 16px;
  bottom: 52px;

  width: 1px;
  background: rgba(0,0,0,0.12);
}

@media (max-width: 900px){
  .home-research-feature-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-research-feature-image{
    aspect-ratio: 4 / 3;
  }

  .home-research-feature-title{
    font-size: 34px;
  }
}
/* =========================================================
   JERSEY ARCHIVE — FEATURE LINK
   ========================================================= */

.season-index-feature-link{ margin-bottom: 14px; }

.season-index-feature-link a{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.75;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 3px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.season-index-feature-link a::after{
  content: " →";
  font-size: 12px;
  letter-spacing: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.season-index-feature-link a:hover{
  opacity: 1;
  border-color: var(--accent-red);
}
.season-index-feature-link a:hover::after{
  transform: translateX(3px);
  opacity: 1;
}
.seaon-index-feature{
  margin-bottom: 36px;
}

/* =========================================================
   SEASON INDEX (GRID)
   ========================================================= */

.season-index{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.season-index-panel{
  margin-top: 40px;
}

.season-index a.season-card:link,
.season-index a.season-card:visited{ color: inherit; }

.season-card{
  display: block;
  background-color: rgba(255,255,255,0.88);
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px;
  padding: 20px 22px;
  min-height: 161px;
  display: flex;
  flex-direction: column;

  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;

  box-shadow: none;
  border-top: 2px solid transparent;
}
.season-card .season-metric{
  margin-top: auto;
}
/* Force consistent digit widths for season years (prevents “8” jump) */
.season-title,
.season-card .season-year,
.season-card h3,
.season-card .season-label {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.season-card:hover{
  border-color: rgba(157,15,15,0.35);
  transform: none;
  box-shadow: none;
  border-top: 2px #a21a1a;
}

.season-year{
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.season-status{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
  color: rgba(0,0,0,0.65);
  white-space: nowrap;
}

.season-metrics{
  margin-top: 0;
  display: grid;
  gap: 4px;
}

.metric-row{
  display: grid;
  grid-template-columns: auto min-content;
  column-gap: 14px;
  align-items: baseline;
  padding: 2px 0;
}

.metric-label{
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}

.metric-value{
  text-align: right;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
/* First two metric rows = primary */
.season-header-top .season-metrics .metric-row:nth-child(-n+2) .metric-label{
  color: #000;
  font-weight: 700;
  letter-spacing: 0.01em;;
}

/* =========================================================
   Special season cards (watermark / background variables)
   ========================================================= */

.season-card-aj1 { --season-card-bg: url("assets/aj-1-font.jpg"); --season-card-detail: url("assets/aj-1-font.jpg"); }
.season-card-airship { --season-card-bg: url("assets/air-ship.jpg"); --season-card-detail: url("assets/air-ship.jpg"); }
.season-card-unc { --season-card-bg: url("assets/unc-bg.jpg"); --season-card-detail: url("assets/unc-bg.jpg"); }
.season-card-0102 { --season-card-bg: url("assets/wizards-bg.jpg"); --season-card-detail: url("assets/wizards-bg.jpg"); }
.season-card-0000 { --season-card-bg: url("assets/usa-bg.jpg"); --season-card-detail: url("assets/usa-bg.jpg"); }    
.season-card-9798 { --season-card-bg: url("assets/1997-98-bg.jpg"); --season-card-detail: url("assets/1997-98-bg.jpg"); }   
.season-card-9697 { --season-card-bg: url("assets/1996-97-bg.jpg"); --season-card-detail: url("assets/1996-97-bg.jpg"); }
.season-card-9596 { --season-card-bg: url("assets/1995-96-bg.jpg"); --season-card-detail: url("assets/1995-96-bg.jpg"); } 
.season-card-9293 { --season-card-bg: url("assets/1992-93-bg.jpg"); --season-card-detail: url("assets/1992-93-bg.jpg"); }
.season-card-8990 { --season-card-bg: url("assets/1989-90-bg.jpg"); --season-card-detail: url("assets/1989-90-bg.jpg"); }
.season-card-8889 { --season-card-bg: url("assets/1988-89-bg.jpg"); --season-card-detail: url("assets/1988-89-bg.jpg"); }
.season-card-8687 { --season-card-bg: url("assets/1986-87-bg.jpg"); --season-card-detail: url("assets/1986-87-detail.jpg"); }
.season-card-8586 { --season-card-bg: url("assets/1985-86-bg.jpg"); --season-card-detail: url("assets/1985-86-detail.jpg"); }
.season-card-8485 { --season-card-bg: url("assets/1984-85-bg.jpg"); --season-card-detail: url("assets/1984-85-detail.jpg"); }

.season-card-aj1,
.season-card-airship,
.season-card-unc,
.season-card-0102,
.season-card-0000,
.season-card-9798,
.season-card-9697,
.season-card-9596,
.season-card-9293,
.season-card-8990,
.season-card-8889,
.season-card-8687,
.season-card-8586,
.season-card-8485{
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    var(--season-card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.25s ease, transform 0.2s ease;
}

.season-card-aj1:hover,
.season-card-airship:hover,
.season-card-unc:hover,
.season-card-0102:hover,
.season-card-0000:hover,
.season-card-9798:hover,
.season-card-9697:hover,
.season-card-9596:hover,
.season-card-9293:hover,
.season-card-8990:hover,
.season-card-8889:hover,
.season-card-8687:hover,
.season-card-8586:hover,
.season-card-8485:hover{
  background-image:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    var(--season-card-bg);
}

.season-card-aj1::before,
.season-card-airship::before,
.season-card-unc::before,
.season-card-0102::before,
.season-card-0000::before,
.season-card-9798::before,
.season-card-9697::before,
.season-card-9596::before,
.season-card-9293::before,
.season-card-8990::before,
.season-card-8889::before,
.season-card-8687::before,
.season-card-8586::before,
.season-card-8485::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--season-card-detail);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Detail overlay intensity (only for the seasons you wanted) */
.season-card-8687:hover::before,
.season-card-8485:hover::before{ opacity: 0.08; }

@media (hover: none) and (pointer: coarse){
  .season-card-8687,
  .season-card-8485{
    background-image:
      linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
      var(--season-card-bg);
  }
  .season-card-8687::before,
  .season-card-8485::before{ opacity: 0.06; }
}

/* =========================================================
METHODOLOGY
   ========================================================= */

main.methodology-page{
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.methodology-page h1{
  margin-bottom: 16px;
}

.methodology-page .lead{
  margin-bottom: 36px;
}

.methodology-page h3{
  margin-top: 36px;
  margin-bottom: 10px;
}

.methodology-page p,
.methodology-page ul{
  margin-bottom: 18px;
}
.methodology-page h3{
  margin-top: 42px;
  margin-bottom: 10px;
  color: rgba(0,0,0,0.85);
  letter-spacing: 0.12em;
}

.methodology-page h2{
  color: rgba(0,0,0,0.9)
}
.methodology-page{
  font-size: 15px;
  line-height: 1.6;
}
.methodology-page p{
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.70);
}

.methodology-page .muted{
  font-size: 14px;
  color: rgba(0,0,0,0.50);
}


/* =========================================================
   PRESEASON PAGE (RESTORED MODULE STYLES)
   ========================================================= */

/* Optional: make preseason pages read like season pages (nicer line length) */
body.preseason-page main{
  max-width: var(--reading-season);
}

/* Page title block spacing (keeps it from feeling like plain text) */
body.preseason-page h1{
  margin-top: 10px;
}

/* Population card look (table container) */
body.preseason-page .population-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 4px;
  padding: 28px;
  margin-top: 18px;
}

/* Population card heading */
body.preseason-page .population-card h3{
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  font-weight: 750;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Red underline accent */
body.preseason-page .population-card h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
}

/* Table styling */
body.preseason-page .population-card table{
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: #f7f7f5;
  border-radius: 4px;
  overflow: hidden;
}

body.preseason-page .population-card th{
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  text-align: left;
  white-space: nowrap;
}

body.preseason-page .population-card td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(20,20,20,0.92);
}

body.preseason-page .population-card td:nth-child(2),
body.preseason-page .population-card td:nth-child(3),
body.preseason-page .population-card td:nth-child(4){
  text-align: center;
  font-weight: 600;
}

/* Prevent “double line” at bottom */
body.preseason-page .population-card tbody tr:last-child td{
  border-bottom: none;
}

/* Scroll cue for tables on mobile */
body.preseason-page .table-scroll{
  position: relative;
}

body.preseason-page .table-scroll::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #f7f7f5, rgba(247, 247, 245, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.preseason-page .table-hint{
  display: none;
}

@media (max-width: 900px){
  body.preseason-page .table-scroll::after{ opacity: 1; }

  body.preseason-page .table-hint{
    display: block;
    text-align: right;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin: 6px 4px 10px;
    font-family: var(--sans);
  }
}

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

.contact-form{ max-width: 560px; margin-top: 26px; }

.contact-form label{
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a5a5a;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.contact-form textarea{ min-height: 130px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{ border-color: rgba(0,0,0,0.22); }

.btn, button.btn{
  display: inline-block;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #111;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover{ background: #000; }

/* Footer */
.site-footer{
  padding: 22px 24px 34px;
  border-top: 1px solid var(--rule);
  background: rgba(247,247,245,0.92);
  color: rgba(0,0,0,0.55);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
}
/* =========================================================
   WOW CARD - SEASON DETAIL (ALL SEASONS)
   ========================================================= */
/* -----------------------------------------
   OUTER CARD FRAME
------------------------------------------ */

/* -----------------------------------------
   TOP GRID LAYOUT
------------------------------------------ */

/* -----------------------------------------
   LEFT METRICS STACK
------------------------------------------ */

/* -----------------------------------------
   RIGHT POPULATION SUMMARY
------------------------------------------ */

.back-link{
  margin: 0 0 18px 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
}
.back-link a:hover{ color: rgba(20,20,20,0.90); }

.season-header{ margin-bottom: 60px; }
.season-header h1{ margin-bottom: 6px; }

.season-card--detail{
  position: relative;
  border-radius: 4px;
  padding: 56px;
  background: #fcfbf9;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 18px 44px rgba(0,0,0,0.03);
}

.season-header-top{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 40px;
}

.season-year-hero{
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 450;
  margin-bottom: 10px;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.season-year-hero::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}
/* Population card (season pages) */
.population-card{
  background: #f3f1ec;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 32px;
  margin-top: 18px;
}

.population-card h3{
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  font-weight: 750;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.population-card h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
}

.population-card table{
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: #f7f7f5;
  border-radius: 4px;
  overflow: hidden;
}

.population-card th{
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  text-align: left;
  white-space: nowrap;
}

.population-card td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(20,20,20,0.92);
}

.population-note{
  font-size: 11.5px;
  line-height: 1.45;
  margin: 8px 0 16px 0;
  color: rgba(0,0,0,0.45);
  max-width: 400px;
}
.population-note{
  padding-top: 6px;
}

.population-card td:nth-child(2),
.population-card td:nth-child(3),
.population-card td:nth-child(4){
  text-align: center;
  font-weight: 600;
}

.population-card tbody tr:last-child td{
  border-bottom: none;
}

/* Footnote under the population table (season pages) */
.summary-footnote{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.summary-footnote p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,20,20,0.55);
  max-width: 62ch;
}
/* =========================================
   SEASON HEADER METRICS — RESTORE HIERARCHY
   ========================================= */
.season-header-top .season-metrics{
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.season-header-top .season-metrics .metric-row{
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  align-items: baseline;
}

.season-header-top .season-metrics .metric-label{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.80);
}

.season-header-top .season-metrics .metric-value{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.season-header-top .season-metrics .metric-value.main-total{
  font-size: 36px;
  font-weight: 750;
  color: #111;
}

.audit-badge{
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: rgba(29, 95, 60, 0.08);
  color: #1d5f3c;
  border: 1.5px solid rgba(29, 95, 60, 0.55);
  border-radius: 999px;
}

.season-status-stack{
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.season-summary{
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 18px;
  margin-top: 24px;
}
.games-total {
  margin-top: 20px;        /* creates separation from bullets */
  font-weight: 500;        /* lighter than section header */
}
.season-summary > div{ margin: 8px 0; }
.season-summary strong{ font-weight: 800; }

.last-updated{
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  opacity: 0.6;
}

/* Population inner card */
.population-card{
  background: #f9f9f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: none;
}

.population-card table{
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.population-card th{
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.60);
  text-align: left;
  white-space: nowrap;
}

.population-card td{
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(20,20,20,0.92);
}
.population-card td:first-child{ font-weight: 500; }

/* =========================================================
   EVIDENCE / GARMENT RECORDS
   ========================================================= */

.evidence-block{ margin-top: 34px; }

.evidence-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 18px;
}

.evidence-image img{
  width: 100%;
  border-radius: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.evidence-caption{ margin-top: 10px; }

.evidence-content{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: none;
  padding: 22px;
}

.evidence-meta{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.evidence-meta > div{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.evidence-details{
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.evidence-content .meta-list{
  margin: 10px 0 0;
  padding-left: 18px;
}

.evidence-content .meta-list li{
  margin: 6px 0;
}

.meta-label{
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.50);
}
.meta-value{
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: rgba(20,20,20,0.92);
}

.evidence-callout{
  margin: 16px 0;
  background: rgba(0,0,0,0.03);
  border-left: 3px solid rgba(0,0,0,0.22);
  padding: 12px 14px;
  border-radius: 0;
  font-size: 14px;
  color: rgba(20,20,20,0.82);
}

.evidence-subblock > h3{
  margin: 22px 0 12px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 750;
  font-family: var(--sans);
}

.evidence-content ul li a{
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.evidence-content ul li a:hover{
  border-bottom-color: var(--accent-red);
  color: rgba(177,13,13,0.85);
}
/* =========================================================
   1997–98 Registry Rows (text-only)
   ========================================================= */
.registry-list{
  margin-top: 14px;
  border-top: 1px solid rgba(20,20,20,0.10);
}

.registry-row{
  display: block;
  padding: 12px 6px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(20,20,20,0.10);
}

.registry-title{
  font-weight: 650;
  letter-spacing: 0.2px;
  margin-bottom: 3px;
}

.registry-row:hover .registry-title{
  text-decoration: underline;
}
/* Registry card wrapper */
.registry-card{
  margin-top: 18px;
  padding: 22px;
  background: rgba(248,248,248,0.85);
  border: 1px solid rgba(20,20,20,0.10);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}
/* =========================================================
   Archival Designation Callout
   ========================================================= */

.designation-callout{
  margin: 28px auto 48px;
  max-width: 720px;
}

.designation-inner{
  padding: 24px 28px;
  background: #f5f5f5;
  border-radius: 0;
  position: relative;
}

.designation-inner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: rgba(157,15,15,0.85);
  border-radius: 0;
}

.sale-link{
  margin-top: 14px;
}

.sale-link a{
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.sale-link .arrow{
  color: rgba(157,15,15,1);
  font-weight: 600;
  margin-left: 4px;
  transition: transform 0.15s ease;
}

.sale-link a:hover .arrow{
  transform: translateX(3px);
}
.case-id-block{
  margin: 0 0 18px;
  padding: 12px 0 14px;
  border-bottom: 1px solid rgba(20,20,20,0.08);
  text-align: right;
}

.case-id-block div{
  margin-bottom: 6px;
}

.case-id-block .meta-label{
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 11px;
  opacity: 0.6;
  margin-right: 8px;
}

.case-id-block strong{
  font-size: 16px;
  font-weight: 600;
}
.case-metrics{
  max-width: 540px;
}
/* Tone down Confirmed Matches size on case-file pages */
.case-match-total{
  font-size: 24px;   /* was likely 28px+ */
  font-weight: 600;
  line-height:  1.05;  
}
.season-page.case-file .population-card td:last-child{
  text-align: right;
  font-weight: 500;
  color: rgba(20,20,20,0.65);
}
/* Case-file: Sale link refinement */
.season-page.case-file .sale-link{
  font-weight: 500;
  color: rgba(20,20,20,0.65);
}

.season-page.case-file .sale-link .arrow{
  color: rgba(157,15,15,0.85);
}
/* Global arrow styling (used across site) */
.arrow{
  color: rgba(157,15,15,1);
  margin-left: 6px;
  font-weight: 600;
}
/* ======================================
   DOCUMENTATION COLLAPSE MODULE
   (Styled to match Search Feature)
====================================== */

.doc-collapse{
  margin-top: 6px;
  border: 0.5px solid rgba(157,15,15,0.55); /* red border */
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

/* clickable header bar */
.doc-collapse > summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding: 10px 42px 10px 14px;

  background: rgba(46,88,64,0.06);   /* audit badge green */
  color: rgba(0, 0, 0, 0.55);
}

/* remove default marker */
.doc-collapse > summary::-webkit-details-marker{
  display: none;
}

/* custom arrow */
.doc-collapse > summary::after{
  content: "▾";
  position: absolute;
  right: 14px;
  top: 10px;
  color: rgba(0, 0, 0, 0.55);
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.doc-collapse[open] > summary::after{
  content: "▴";
}

/* inner content */
.doc-inner{
  padding: 12px 14px 14px;
  background: #ffffff;
}

.doc-inner h4{
  margin: 14px 0 6px;
  font-size: 14px;
}

.doc-list{
  margin: 0;
  padding-left: 18px;
}

.doc-list li{
  margin: 6px 0;
}
/* ======================================
   SEASON CONTROLS
====================================== */

.season-controls{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.control-card{
  border-radius: 6px;
  padding: 16px 18px;
  border: 0.5px solid rgba(157,15,15,0.55);
}
.control-card h3 {
  margin: 0 0 8px 0;
}

.control-input{
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  font-size: 15px;
}

.control-dropdown{
  background: rgba(157,15,15,0.08);  /* soft archive red tint */
  border: 1px solid rgba(157, 15, 15, 0.20);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.scope-link {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 18px;
}

.scope-link:hover {
  color: rgba(0,0,0,0.8);
}
/* ======================================
   Swipe-only Evidence Carousel
   ====================================== */

.evidence-image.is-carousel{
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}

.evidence-image.is-carousel .carousel-track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.evidence-image.is-carousel .carousel-track::-webkit-scrollbar{
  display: none;
}

.evidence-image.is-carousel .carousel-slide{
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}

.evidence-image.is-carousel img{
  width: 100%;
  display: block;
}

.evidence-image.is-carousel .carousel-dots{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}

.evidence-image.is-carousel .carousel-dots span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
}
/* Lock the 2-column evidence layout */
.evidence-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

/* Left column */
.evidence-grid > .evidence-image{
  grid-column: 1;
  grid-row: 1;

}

/* Right column (force it back to the right) */
.evidence-grid > .evidence-content{
  grid-column: 2;
  grid-row: 1 / span 2; /* keeps it aligned with image + caption */
}

/* Caption under the image (left column, second row) */
.evidence-grid > .evidence-caption{
  grid-column: 1;
  grid-row: 2;
  margin-top: 8px;
}
.index-note{
  font-size: 12px;
  line-height: 1.45;
  margin: 6px 0 22px 0;
  max-width: 520px;
  color: rgba(0,0,0,0.45);
  margin-bottom: 18px;
}
season-index-heading{
  margin-top: 48px;
  margin-bottom: px;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.season-index-intro{
  margin-top: 48px;
  margin-bottom: 4px;
}
.season-index-heading::after{
  content: "";
  display: block;
  height: 2px;
  width: 115px;
  background: var(--accent-red);
  margin-top: 4px;
}
.designation-toggle {
  margin: 16px 0 12px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
}

.designation-toggle summary{
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding-bottom: 6px;            /* tighter */
  border-bottom: 1px solid var(--accent-red); /* thinner line */
  letter-spacing: 0.08em;         /* reduce tracking */
  text-transform: uppercase;
  font-size: 10px;                /* smaller */
  font-weight: 300;
  color: rgba(57, 56, 56, 0.6);
}

.designation-toggle summary::-webkit-details-marker {
  display: none;
}

.designation-toggle summary::after {
  content: " +";
  font-weight: 400;
}

.designation-toggle[open] summary::after {
  content: " –";
}

.designation-inner {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
}
/* =====================================
   Archival Designation Toggle (no box)
   ===================================== */

.designation-toggle{
  margin: 28px 0 18px;
}

.designation-toggle summary{
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-red);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.designation-toggle summary::-webkit-details-marker{
  display: none;
}

.designation-toggle summary::after{
  content: "  +";
  font-weight: 400;
}

.designation-toggle[open] summary::after{
  content: "  –";
}

.designation-toggle .designation-inner{
  margin-top: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
}

.designation-callout summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
}

.designation-callout summary::-webkit-details-marker {
  display: none;
}

.designation-callout summary::after {
  content: " +";
  font-weight: 400;
}

.designation-callout details[open] summary::after {
  content: " –";
}
.methodology-page{
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.season-index-intro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}

.registry-stamp{
  width: 92px;
  border: 1px solid rgba(157,15,15,0.35);
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.833);
  margin: 4px 0 10px; /* anchors it under the heading */
}

.registry-stamp-label{
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  line-height: 1.1;
}

.registry-stamp-number{
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  margin: 4px 0 3px;
  color: rgba(0,0,0,0.25);
}
/* =========================================
   CASE FILE PAGES
   ========================================= */

.casefile-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.casefile-hero{
  margin-bottom: 40px;
}

.casefile-meta{
  display:flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 16px;
}

.casefile-title{
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.casefile-subline{
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 28px;
}

.casefile-evidence{
  margin: 50px 0;
}

.casefile-image img{
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.08);
  display: block;
}

.casefile-summary{
  max-width: 760px;
  margin-top: 50px;
}

.casefile-summary h2{
  font-size: 20px;
  margin-bottom: 12px;
}

.casefile-points{
  margin-top: 14px;
  padding-left: 18px;
}

.casefile-points li{
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 900px){
  .casefile-container{
    padding: 40px 18px 70px;
  }
  .casefile-title{
    font-size: 32px;
  }
}
* =========================
   Case File Meta Panel
   ========================= */

.case-meta-panel{
  margin: 18px 0 26px;
  padding: 18px 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: none;
  background: rgba(255,255,255,0.92);
  max-width: 720px;
}

.case-meta-row{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.case-meta-label{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.case-meta-value{
  font-size: 14px;
  color: rgba(0,0,0,0.75);
  text-align: right;
}

.case-meta-value.case-status{
  font-weight: 600;
  color: var(--accent-red);
}
/* =====================================
   Case File Evidence Layout
===================================== */

.cf-evidence{
  margin: 48px 0;
}

.cf-evidence-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.cf-evidence-item img{
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.cf-evidence-label{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(0,0,0,0.55);
}
/* =========================
   DOCUMENTED WORK — CASE FILE CARDS
   ========================= */

.research-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.research-item{
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: none;
  background: rgba(255,255,255,0.92);
  padding: 18px 18px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

/* subtle “file tab” accent */
.research-item::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:3px;
  background: rgba(157,15,15,0.45);
  border-radius: 2px;
}

/* typography inside */
.research-item h3{
  margin: 0 0 6px 10px;
  font-size: 18px;
  line-height: 1.15;
}

.research-item p{
  margin: 0 0 0 10px;
  font-size: 13px;
  color: rgba(0,0,0,0.62);
}

/* hover */
.research-card:hover .research-item{
  border-color: rgba(157,15,15,0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* active/current card (when you add .is-active to the <a>) */
.research-card.is-active .research-item{
  border-color: rgba(157,15,15,0.35);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

/* active accent slightly stronger */
.research-card.is-active .research-item::before{
  background: rgba(157,15,15,0.65);
}
/* Status Dot Indicator */

.research-item{
  position: relative;
}

.research-card.has-report .research-item::after{
  content:"";
  position:absolute;
  top:14px;
  right:14px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#2e7d32; /* green */
}

.research-card.no-report .research-item::after{
  content:"";
  position:absolute;
  top:14px;
  right:14px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#9d0f0f; /* red */
}
.casefile-back{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
}
.case-section-title{
font-size:12px;
letter-spacing:.18em;
text-transform:uppercase;
color:rgba(0,0,0,.55);
margin:36px 0 12px;
}
.services-contact{
  margin-top:80px;
  padding-top:40px;
  border-top:1px solid rgba(0,0,0,0.15);
  text-align:center;
}

.services-contact h3{
  margin-bottom:10px;
}

.services-contact p{
  max-width:600px;
  margin:0 auto 20px;
}

.contact-button{
  display:inline-block;
  padding:10px 22px;
  border:1px solid #000;
  text-decoration:none;
  font-weight:600;
}
.population-toggle{
  margin-top: 10px;
  max-width: 360px;
}
/* =====================================================
   Population Context Toggle (Finals context etc.)
   ===================================================== */

.population-toggle{
  border:none;
  background:none;
  padding:0;
  margin-top:14px;
}

.population-toggle summary{
  font-size:13px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(0,0,0,.65);
  cursor:pointer;
}

.population-toggle .doc-inner{
  font-size:12px;
  line-height:1.5;
  color:rgba(0,0,0,.6);
  margin-top:6px;
}

.population-toggle .muted{
  font-size:11px;
  color:rgba(0,0,0,.5);
}
.finals-breakdown{
  margin:10px 0 14px;
  padding-left:18px;
  font-size:13px;
  line-height:1.6;
}

.finals-breakdown li{
  margin:2px 0;
}
.finals-callout{
  border-left:2px solid rgba(157,15,15,0.45);
  padding-left:12px;
  margin:10px 0 14px;
}

.finals-breakdown{
  list-style:none;
  padding:0;
  margin:0;
  font-size:13px;
  line-height:1.55;
}

.finals-breakdown li{
  margin:3px 0;
}
.metric-note{
  font-size:.85em;
  opacity:.6;
  font-weight:400;
}
.metric-row.total-research .metric-value{
opacity:.75;
font-weight:500;
}
/* =========================================
   ARCHIVE ARTICLE LAYOUT
========================================= */

.article-row{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  align-items:start;
  margin:30px 0 12px 0;
}

.article-row.reverse{
  grid-template-columns:1fr 1.2fr;
}

.article-figure figcaption,
.article-figure-center figcaption{
  font-size:12px;
  line-height:1.4;
  color:rgba(0,0,0,.50);
  margin-top: 8px;
}

.article-figure-right{
  float:right;
  width:42%;
  margin:8px 0208px 44px;
}
.article-figure-right figcaption{
  font-size:12px;
  line-height:1.4;
  color:rgba(0,0,0,.50);
  margin-top: 8px;
}

.article-figure-left{
  float:left;
  width:320px;
  margin:8px 44px 20px 0;
}

.article-figure-left img{
  width:100%;
  height:auto;
  display:block;
}

.article-figure-left figcaption{
  font-size:0.85rem;
  color:#777;
  margin-top:8px;
  line-height:1.4;
}
.article-text{
  padding-right:12px;
}
.article-text{
  padding-left:12px;
}
.article-body p{
  padding-right:10px;
}
.article-body h3{
  margin-top:48px;
  margin-bottom:12px;
}

@media (max-width:900px){
  .article-row,
  .article-row.reverse{
    grid-template-columns:1fr;
  }
}
/* Archive Notes article layout */

.article-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-header{
  max-width: 760px;
  margin: 0 auto 0;
}

.article-header h1{
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
}

.article-subtitle{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}

.article-body{
  max-width: 760px;
  margin: 72px auto 0;
  border-top: 1px solid #e5e5e5;
  padding-top: 48px;
}

.article-body p{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,.82);
}

.article-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0 14px;
}

.article-row.reverse{
  grid-template-columns: 1fr 1fr;
}

.article-figure{
  margin: 24px 0;
}

.article-figure img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.article-text{
  min-width: 0;
}

.article-intro{
font-size:16px;
line-height:1.5;
color:#444;
margin-bottom:32px;
}

.article-section-label{
margin-top: 32px;
margin-bottom:14px;
font-size:13px;
letter-spacing:.18em;
text-transform:uppercase;
color:#777;
}

@media (max-width: 900px){
  .article-container{
    padding: 0px 18px 64px;
  }

  .article-header h1{
    font-size: 34px;
  }

  .article-subtitle{
    font-size: 14px;
  }

  .article-body p{
    font-size: 15px;
    line-height: 1.7;
  }

  .article-row,
  .article-row.reverse{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.article-figure-center{
  margin: 30px auto;
  max-width: 760px;
}

.article-figure-center img{
  width:100%;
  height:auto;
}
.article-figure-small{
  max-width:320px;
}
.article-nav{
font-size:14px;
letter-spacing:.08em;
text-transform:uppercase;
color:#777;
margin-bottom:28px;
}

.article-nav a{
text-decoration:none;
color:inherit;
}

.article-nav a:hover{
color:#000;
}

/* =========================================
   JOURNAL INDEX
   ========================================= */

.notes-page{
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px 64px;
  padding-bottom: 160px;
}

.notes-header{
  margin-bottom: 40px;
}

.notes-header h1{
  margin-bottom: 20px;
}

.notes-header p{
  font-size: 13px;
  line-height: 1.7;
  max-width: 720px;
}

.notes-label{
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}

.journal-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journal-item{
  margin: 0;
}

.journal-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.journal-thumb{
  margin-bottom: 8px;
}

.journal-thumb img{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.journal-meta{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  position: relative;
  padding-left: 12px;
}

.journal-meta::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 10px;
  background: #a21a1a;
}

.journal-title{
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
}

.journal-deck{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,0.68);
}

.article-note{
  margin-top: 56px;
}

@media (max-width: 900px){
  .notes-page{
    padding: 28px 18px 64px;
  }

  .journal-list{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .journal-thumb img{
    height: 220px;
  }

  .journal-title{
    font-size: 20px;
  }

  .journal-deck{
    font-size: 15px;
    line-height: 1.5;
  }
}

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

.site-footer{
font-size:14px;
color:#777;
}

/* =========================
   SOCIAL ICON
========================= */

.social-icon{
margin-left:10px;
color:#444;
display:inline-block;
vertical-align:middle;
}

.social-icon:hover{
color:#000;
}

.social-icon svg{
vertical-align:middle;
}

.article-note,
.research-note{
  margin-top:70px;
  padding:14px;
  border-top:1px solid #e5e5e5;
  background:#fafafa;

  font-size:0.8rem;
  color:#7a7a7a;
  line-height:1.55;

  max-width:760px;
}
.article-note p,
.research-note p{
 font-size:0.8rem;
 margin:0;
}
.artifact-title{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:32px 0 14px;
  font-weight:600;
  color:#333;
  border-left:3px solid #ce1141;
  padding-left:10px;
}
.back-link{
margin-top:48px;
margin-bottom:10px;
}
.sneaker-context{
  max-width: 680px;
  margin-top: 22px;
}
.sneaker-context summary{
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
/* Sneaker card tweaks (using existing season-card) */

.season-card {
  padding: 22px 22px 20px;
}

/* Title (Nike Air Ship) */
.season-card .season-year {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* MODEL OVERVIEW */
.season-card .season-status {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.45);
  margin-top: 6px;
}

/* Metrics (Use / Classification) */
.season-card .metric {
  font-size: 14px;
  line-height: 1.5;
}

.season-card .metric .label {
  color: rgba(0,0,0,0.5);
}

.badge-row{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.verify-badge{
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.82);
  background: #fff;
}
.verify-badge:first-child{
  border-color: rgba(170,20,20,0.45);
}
.model-overview-block .evidence-grid{
  grid-template-columns: 1.35fr 0.85fr;
  align-items: start;
}

.model-overview-block .evidence-image img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.artifact-keydata{
  padding: 14px 16px;
  background: #faf8f6;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
  margin-bottom: 18px;
}
.mini-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 18px 0 8px;
  font-weight: 600;
}

.evidence-content h3 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 22px 0 10px;
  font-weight: 600;
  }

.evidence-callout{
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}
.mini-section-label{
  margin-top: 14px;
}
.model-story{
  margin-bottom: 22px;
}

.model-story p + p{
  margin-top: 14px;
}
.model-story{
  max-width: 640px;
  margin: 46px auto 52px;
}
@media (min-width: 1100px){

  body.s-airship main,
  body.s-aj1 main{
    max-width: 1400px;
    margin: 0 auto;
  }

}
/* =========================================================
   RESPONSIVE — LOCKED
   ========================================================= */

@media (max-width: 900px){
  .season-index{ grid-template-columns: 1fr; gap: 26px; }
  .evidence-grid{ grid-template-columns: 1fr; gap: 22px; }
  .season-header-top{ gap: 32px; }
  .population-note{
  font-size: 11px;
  line-height: 1.35;
  margin: 6px 0 16px 0;
  color: rgba(0,0,0,0.45);
  max-width: none;
}
.case-meta-panel{ max-width: none; }
.case-meta-row{ flex-direction: column; }
.case-meta-value{ text-align: left; }

.cf-evidence-grid{
  grid-template-columns: 1fr;
  gap: 28px;
}
  .case-meta-row{
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .case-meta-value{
    text-align: right;
  }
.season-card{
  min-height: 161px;
}
}

@media (max-width: 700px){
  .site-header{
    padding: 10px 18px;
  }
  .site-header img{
     height: 38px;
     width: auto;
     max-width: none;
     display: block;
     object-fit: contain;
  }
   .brand-text{
    display: none !important;
  }

    .season-controls{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  main{ padding: 22px 18px 70px; }
  h1{ font-size: 32px; line-height: 1.08; }

  .home-grid{ grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .home-intro{ padding: 32px 0 50px; }

  .hero-carousel{
    aspect-ratio: auto;
    height: 58vh;

  }
  .hero-viewport, .hero-track{ height: 100%; }

  /* Mobile caption centered */
  .hero-slide .hero-caption{
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    max-width: 82%;
    text-align: center;

    padding: 10px 14px;
    border-radius: 0;

    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);

    pointer-events: none;
  }

  .hero-caption-title{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 3px;
  }
  .hero-caption-sub{
    font-size: 13px;
    line-height: 1.25;
    opacity: 0.85;
    max-width: 24ch;
    margin: 0 auto;
  }

  .hero-arrow{ display: none; }
  .hero-slide img.hero-collage{ object-position: center 60%; }

  .season-index{ grid-template-columns: 1fr; }

  .season-card--detail{
    padding: 22px 18px;
    border-width: 1px;
    border-color: rgba(157, 15, 15, 0.15);
  }

  .season-header-top{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Mobile nav */
  .site-header{
    position: relative;
    z-index: 9998;
    overflow: visible;
  }

  .nav-toggle{
    display: block;
    position: absolute;
    right: 18px;
    top: 12px;
    z-index: 10000;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .nav-toggle span{ pointer-events: none; }

  .site-nav{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #efefef;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);

    padding: 20px 24px;
    border-top: 1px solid var(--rule);

    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    z-index: 9999;
  }

  body.nav-open .site-nav{
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
  }

/* Your mobile population fix */
body.season-page .population-card{
  padding: 14px;
}

body.season-page .population-card table{
  width: 100%;
  table-layout: fixed;
}

body.season-page .population-card th,
body.season-page .population-card td{
  font-size: 13px;
  padding: 8px 6px;
}

/* Population card density — season pages (match old behavior, no scroll) */
body.season-page .population-card{
  padding: 16px;
}

body.season-page .population-card table{
  width: 100%;
  table-layout: auto; /* important: do NOT force fixed columns */
}

body.season-page .population-card th,
body.season-page .population-card td{
  padding: 8px 10px;

}

body.season-page .population-card th{
  font-size: 9px;
  letter-spacing: 0.10em;  /* slightly tighter than desktop */
  white-space: normal;
  line-height: 1.2;
 
}

body.season-page .population-card td{
  font-size: 13px;
  white-space: normal;
}

/* let the STYLE column wrap if needed */
body.season-page .population-card td:first-child{
  white-space: normal;
}

.designation-toggle{
  margin: 14px 0 4px;
}

.designation-toggle summary{
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent-red);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.6)
}

.designation-toggle .designation-inner{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

/* Case file: sale summary should be full-width and centered on mobile */
  .case-file .season-header .population-card{
    width: 100%;
    max-width: none;
    margin: 18px auto 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }


  /* Case-file metrics: stop the floaty centered feel */
  .season-page.case-file .season-metrics .metric-row{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    column-gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(20,20,20,0.08);
  }

  .season-page.case-file .season-metrics .metric-row:last-child{
    border-bottom: none;
  }

  .season-page.case-file .season-metrics .metric-value{
    text-align: right;
    justify-self: end;
  }
  /* --- Case file metric alignment --- */
.season-page.case-file .season-metrics .metric-row{
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
}

.season-page.case-file .season-metrics .metric-value{
  justify-self: end;
  text-align: right;
  padding-right: 6px;
}

/* --- Case file sale table weight control --- */
.season-page.case-file .population-card td:first-child{
  font-weight: 650;
  color: rgba(20,20,20,0.85);
}

.season-page.case-file .population-card td:last-child{
  font-weight: 500;
  color: rgba(20,20,20,0.65);
  text-align: right;
}
/* Case-file: Sale table values should anchor right and be lighter */
.season-page.case-file .population-card table{
  width: 100%;
}

.season-page.case-file .population-card td:last-child{
  text-align: right;
  color: rgba(20,20,20,0.65);
  font-weight: 500;
}

.season-page.case-file .population-card td:first-child{
  font-weight: 650;
  color: rgba(20,20,20,0.85);
}

  .casefile-page .site-nav{
    display: block !important;   /* force nav visible on case file pages */
  }

  .casefile-page .site-nav .casefile-back{
    display: inline-block;
    margin-left: auto;
    text-align: right;
  }
  .article-body figure{
  display:block;
  margin: 28px auto;
  text-align:center;
}

.article-body figure img{
  display:block;
  margin:0 auto;
}
@media (max-width:700px){

.article-figure-right{
    float:none;
    width:100%;
    margin:24px 0;
}

.article-header h1{
  margin: 0 0 18px;
}

.article-intro{
  font-size: 16px;
  line-height: 1.65;
}
.article-body figure.mobile-stack{
  float:none !important;
  width:100% !important;
  max-width:100% !important;
  margin:24px 0 !important;
  display:block !important;
  text-align:center !important;
}

.article-body figure.mobile-stack img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  margin:0 auto !important;
}
}
}

@media (max-width: 430px){
  .season-year-hero{ font-size: 52px; line-height: 0.95; }
}

@media (max-width: 380px){
  .season-year-hero{ font-size: 54px; }
}


/* 97–98 Date Search (subtle system tint like audit pill) */
#date-search{
  margin: 20px auto;
  max-width: 760px
}
#date-search .season-card{
  padding: 12px 16px;
  border-radius: 6;
}

#dateInput{
  width: 100%;
  max-width: 760px;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px; /* pill */
  border: 1px solid rgba(46, 88, 64, 0.35); /* soft green-grey */
  background: rgba(46, 88, 64, 0.06);       /* subtle tint */
  font-size: 14px;
  color: rgba(20,20,20,0.85);
}

#dateInput::placeholder{
  color: rgba(20,20,20,0.55);
}

#dateInput:focus{
  outline: none;
  border-color: rgba(46, 88, 64, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 88, 64, 0.10);
  background: rgba(46, 88, 64, 0.08);
}
/* Search block – make thinner + more squared */

#date-search .season-card{
  padding: 10px 18px;   /* thinner */
  border-radius: 6;  /* more square */
}
/* TEMP TEST: reset evidence grid placement on mobile */
.evidence-grid > .evidence-left,
.evidence-grid > .evidence-image,
.evidence-grid > .evidence-caption,
.evidence-grid > .evidence-content{
  grid-column: auto !important;
  grid-row: auto !important;
}
/* =====================================================
   ARTICLE HERO
   ===================================================== */

.article-hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.article-hero-image{
  display: block;
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center 20%;
}

.article-hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  padding-top: 16vh;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}

.article-hero-inner{
  max-width: 900px;
  color: #fff;
}

.article-hero-inner h1{
  margin: 0 0 16px;
  color: #fff;
  max-width: none;
}

.article-hero-deck{
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}
/* =========================================================
   DEV TEST — FINAL CLEAN RAIL LAYOUT
   ========================================================= */

.jersey-rail-test{
  max-width: 1500px;
  margin: 0 auto;
}

.jersey-rail-test .season-index-feature,
.jersey-rail-test .season-rail-section,
.jersey-rail-test .research-note{
  max-width: none;
}
.jersey-rail-test .season-rail-section{
  background: #f3f0ea;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Top intro */
.jersey-rail-test .intro-text{
  max-width: 620px;
  margin: 0 0 26px;
}

/* Top bar: dropdown left, stamp right */
.jersey-rail-test .season-topbar{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin: 0 0 14px;
}

/* Dropdown */
.jersey-rail-test .season-topbar .population-toggle{
  margin: 0;
  flex: 0 0 auto;
}

.jersey-rail-test .season-topbar .population-toggle summary{
  min-width: 240px;
  padding: 10px 40px 10px 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  cursor: pointer;
  list-style: none;
}

.jersey-rail-test .season-topbar .population-toggle summary::after{
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
}

.jersey-rail-test .season-topbar .population-toggle summary::-webkit-details-marker{
  display: none;
}

/* Stamp */
.jersey-rail-test .season-topbar .registry-stamp{
  margin: 0;
  flex: 0 0 auto;
  transform: translateY(2px);
}

/* Divider + heading */
.jersey-rail-test .section-divider{
  margin: 0 0 16px;
}

.jersey-rail-test .rail-heading{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(0,0,0,0.6);
}

/* Rail area */
.jersey-rail-test .season-rail-section{
  margin-top: 0;
  padding-top: 0;
  position: relative;
}

.jersey-rail-test .season-rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 32px 20px 28px;
  max-width: 1500px;
  margin: 0 auto;
}

.jersey-rail-test .season-rail-card{
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.jersey-rail-test .season-rail-thumb{
  width: 100%;
  aspect-ratio: 3 / 4;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.jersey-rail-test .season-rail-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  transition: transform 0.2s ease;

  pointer-events: none;
}

.jersey-rail-test .season-rail-thumb--empty{
  background: #f3f1ec;
  border: 1px solid rgba(0,0,0,0.05);
}

.jersey-rail-test .season-rail-year{
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.jersey-rail-test .season-rail-status{
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 8px;
}

.jersey-rail-test .season-rail-metric{
  font-size: 14px;
  color: var(--ink);
}

.jersey-rail-test .season-rail-card:hover .season-rail-year{
  color: var(--accent-red);
}

.jersey-rail-test .season-rail-card:hover .season-rail-thumb img{
  transform: scale(1.03);
}

@media (max-width: 1100px){
  .jersey-rail-test .season-rail{
    grid-auto-columns: 230px;
  }
}

@media (max-width: 700px){
  .jersey-rail-test .season-rail{
    grid-auto-columns: 72vw;
    gap: 16px;
  }

  .jersey-rail-test .season-rail-thumb{
    margin-bottom: 12px;
  }

  .jersey-rail-test .season-topbar{
    gap: 12px;
  }

  .jersey-rail-test .season-topbar .population-toggle summary{
    min-width: 200px;
  }
}
@media (hover: hover) and (pointer: fine){
  .jersey-rail-test .season-rail-card:hover .season-rail-year{
    color: var(--accent-red);
  }

  .jersey-rail-test .season-rail-card:hover .season-rail-thumb img{
    transform: scale(1.03);
  }
   
}
.jersey-rail-test .season-jump-strip{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
  margin: 6px 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);

  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.jersey-rail-test .season-jump-strip a{
  display: inline-block;
  padding: 0 0 6px;
  color: inherit;
  text-decoration: none;
}
.jersey-rail-test .season-jump-strip a:hover{
  border-bottom: 1px solid rgba(0,0,0,0.85);
}
.jersey-rail-test .season-rail-card:target{
  outline: none;
  box-shadow: none;
  border: none;
}
.jersey-rail-test .research-actions{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 80px 0 80px;
  flex-wrap: wrap;
}

.jersey-rail-test .research-box{
  display: inline-block;
  padding: 14px 26px;
  border: 1px solid rgba(0,0,0,0.2);
  text-decoration: none;

  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);

  width: 260px;
  text-align: center;
}

.jersey-rail-test .research-box:hover{
  border-color: rgba(0,0,0,0.8);
  color: rgba(0,0,0,0.9);
}
.sneaker-index .season-rail-thumb{
  aspect-ratio: 4 / 3;
}
.methodology-page h3{
  margin-top: 52px;
  margin-bottom: 14px;
  color: rgba(0,0,0,0.95);
}
@media (max-width: 900px){
  .home-research-feature-copy::before{
    display: none;
  }
}
/* ===== ARCHIVE INDEX — ISOLATED PORTRAIT CARDS ===== */

.archive-grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.archive-card{
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: #f7f7f5;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-card:hover{
  transform: translateY(-2px);
  border-color: rgba(157,15,15,0.28);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.archive-card-image{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ece8e1;
}

.archive-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.archive-card:hover .archive-card-image img{
  transform: scale(1.02);
}

.archive-card-body{
  padding: 16px 18px 18px;
}

.archive-card-title{
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(0,0,0,0.92);
}

.archive-card-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.62);
}

@media (max-width: 900px){
  .archive-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .archive-card-image{
    aspect-ratio: 4 / 3;
  }
}
/* ===== ARCHIVE SCROLL ROW ===== */

.archive-scroll{
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 0 32px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  scroll-padding-left: 32px;
}

.archive-scroll::-webkit-scrollbar{
  display: none;
}

/* CARD */
.archive-card{
  flex: 0 0 260px;   /* card width */
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: #f7f7f5;
  overflow: hidden;
  scroll-snap-align: start;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* IMAGE */
.archive-card-image{
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.archive-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.archive-card-body{
  padding: 14px 16px 16px;
}

.archive-card-title{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.9);
}

.archive-card-text{
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.5;
}
/* ===== ARCHIVE BAND ===== */

.archive-band{
  margin-top: 48px;
  padding: 48px 0 56px;
  background: #f3f0ea;
}

.archive-band .archive-grid{
  max-width: 1200px;
  margin: 0;
  padding: 0 32px;
}
.archive-band{
  margin-top: 48px;
  padding: 48px 0 56px;
  background: #f0ede6;
  overflow: hidden;
}