/* ============================================================
   LEVEL 4 COLLECTIVE — manufacturers' sales representation
   Bold streetwear-athletic. Archivo (headings) + Inter (body).
   Palette: white / off-white / near-black / athletic red accent.
============================================================ */
:root {
  --bg:       #FFFFFF;
  --bg-alt:   #F4F4F2;
  --ink:      #111111;
  --ink-2:    #444444;
  --ink-3:    #6E6E6E;   /* muted — passes WCAG AA on white (4.54:1) */
  --accent:   #E4002B;   /* athletic red — CTAs, kickers, hovers */
  --dark:     #111111;   /* near-black band sections */
  --line:     rgba(17, 17, 17, 0.14);
  --line-soft:rgba(17, 17, 17, 0.07);
  --line-light: rgba(255, 255, 255, 0.14);

  --display: "Archivo", "Inter", system-ui, sans-serif;
  --condensed: "Anton", "Archivo Black", "Impact", system-ui, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw:    1320px;
  --gutter:  clamp(20px, 5vw, 80px);
  --section-y: clamp(44px, 5.5vw, 82px);
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================ ACCESSIBILITY */
/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Override on dark sections — focus ring must stay visible on dark bg */
.section--dark a:focus-visible,
.section--dark button:focus-visible,
.footer a:focus-visible,
.history a:focus-visible {
  outline-color: #ffffff;
}

/* Skip-to-content: first element in body, hidden until focused by keyboard */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 400;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============================================================ TYPE SCALE */
.kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.kicker--light { color: rgba(255, 255, 255, 0.5); }
.kicker--red   { color: var(--accent); }

.h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 14px;
}
.h2--light  { color: #ffffff; }
.h2--anton  {
  font-family: var(--condensed);
  font-weight: 400; /* Anton is a single-weight face; 400 renders correctly */
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
  margin-top: 20px;
}
.lead--light { color: rgba(255, 255, 255, 0.75); }

/* Reps section featured standfirst — Marc's team claim (2026-06-22). Larger than
   the body/lead, full espresso on the light alt section, confident weight. */
.reps__lead {
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  max-width: 46ch;
  margin-top: 18px;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--ink);
  padding: 1.1em 2.2em;
  border-radius: 2px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #ffffff; transform: translateY(-2px); }

/* ============================================================ ANCHOR SCROLL OFFSET — keeps headings clear of fixed nav */
section[id] { scroll-margin-top: 100px; }

/* ============================================================ SECTION SHELLS */
.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.section {
  background: var(--bg);
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--dark);
}

.section__head {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section__head .kicker { display: block; margin-bottom: 4px; }
.section__head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head.centered .lead { margin-left: auto; margin-right: auto; }

/* ============================================================ NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: #FFFFFF;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.1);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 52px; width: auto; display: block; }
/* White logo over the dark hero; swap to the dark logo once the nav goes solid */
/* No nav logo over the dark hero (the big hero logo carries the brand there);
   the dark logo reserves its space invisibly, then appears once the bar goes white */
.nav__logo--white { display: none; }
.nav__logo--dark { display: block; visibility: hidden; }
.nav.scrolled .nav__logo--dark { visibility: visible; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

/* Transparent-over-hero state: light nav contents while at the top of the page */
.nav:not(.scrolled) .nav__links a,
.nav:not(.scrolled) .nav__email { color: rgba(255, 255, 255, 0.82); }
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__email:hover { color: #ffffff; }
.nav:not(.scrolled) .soc { color: rgba(255, 255, 255, 0.75); border-color: rgba(255, 255, 255, 0.32); }
.nav:not(.scrolled) .soc:hover { color: #ffffff; border-color: #ffffff; }
.nav:not(.scrolled) .nav__burger span { background: #ffffff; }

.nav__utility {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__email {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav__email:hover { color: var(--accent); }

/* Social icon placeholders (non-interactive — no href, not <a>) */
.nav__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-3);
  transition: color .25s ease, border-color .25s ease;
}
.soc:hover { color: var(--ink); border-color: var(--accent); }
.soc svg { width: 14px; height: 14px; }
/* Dark-background variant (founder section, footer) */
.soc--light { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.72); }
.soc--light:hover { color: #fff; border-color: #fff; }
/* Flex row for any cluster of soc boxes */
.social-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Burger button */
.nav__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.nav__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger span:first-child { top: 3px; }
.nav__burger span:last-child { bottom: 3px; }
.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
  border-top: 1px solid var(--line-soft);
}
.nav__mobile a {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile-email {
  font-family: var(--sans) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--ink-2);
  padding: 14px var(--gutter) !important;
  border-bottom: none !important;
}
.nav__mobile.open {
  max-height: 80vh;
  padding: 6px 0 20px;
}

/* ============================================================ HERO */
.hero {
  display: flex;
  flex-wrap: nowrap;
  min-height: 100svh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Left: solid near-black text panel */
.hero__panel {
  flex: 0 0 48%;
  max-width: 48%;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: clamp(112px, 16vh, 182px) clamp(28px, 4vw, 72px) clamp(40px, 6vh, 72px);
}
.hero__panel-content {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}
/* Brand logo above the headline (white, on the dark panel) */
.hero__logo {
  width: clamp(160px, 18vw, 210px);
  height: auto;
  display: block;
  margin-bottom: clamp(22px, 3.5vh, 36px);
}
/* Right: full-bleed photo */
.hero__photo {
  flex: 1 1 52%;
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* Kicker: red rule + label */
.hero__kicker-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vh, 30px);
}
.hero__kicker-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.hero__kicker-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Headline (condensed display) */
.hero__h1 {
  font-family: "Anton", var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 clamp(20px, 3vh, 30px);
}

/* Sub copy */
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 46ch;
  margin: 0 0 clamp(30px, 4.5vh, 46px);
}

/* CTA row */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(40px, 8vh, 90px);
}

/* Now-representing strip */
.hero__now-rep {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__now-rep-label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero__now-rep-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
  display: block;
}
.hero__now-rep-brands {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__now-rep-brands strong {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Hero button variants */
.btn--red {
  background: var(--accent);
  color: #ffffff;
  border: 1.5px solid var(--accent);
}
.btn--red:hover { background: #c40026; border-color: #c40026; transform: translateY(-2px); }
.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover { background: #ffffff; color: var(--ink); border-color: #ffffff; transform: translateY(-2px); }

/* Stack the split hero on narrow screens */
@media (max-width: 820px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero__photo { order: -1; flex: none; width: 100%; height: 46vh; }
  .hero__photo img { position: relative; }
  .hero__panel {
    flex: none;
    max-width: 100%;
    padding: clamp(40px, 8vh, 64px) var(--gutter) clamp(48px, 8vh, 64px);
  }
  .hero__panel-content { margin-left: 0; max-width: 100%; }
}

/* Load-in animations — elements start hidden only when JS is ready to animate them */
body.will-animate .hero__kicker-row,
body.will-animate .hero__h1,
body.will-animate .hero__sub,
body.will-animate .hero__cta,
body.will-animate .hero__now-rep {
  opacity: 0;
  transform: translateY(24px);
}
body.loaded .hero__kicker-row { animation: rise 0.9s var(--ease) 0.1s forwards; }
body.loaded .hero__h1         { animation: rise 0.9s var(--ease) 0.22s forwards; }
body.loaded .hero__sub        { animation: rise 0.9s var(--ease) 0.34s forwards; }
body.loaded .hero__cta        { animation: rise 0.9s var(--ease) 0.44s forwards; }
body.loaded .hero__now-rep    { animation: rise 0.9s var(--ease) 0.54s forwards; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============================================================ WHAT WE DO — intro + photo, then numbered capability index */
.kicker--rule {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.kicker--rule::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.what__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(44px, 5.5vw, 76px);
}
.what__intro .h2 { margin-top: 16px; }
.what__intro .lead { max-width: 46ch; }
.what__intro .lead strong { color: var(--ink); font-weight: 700; }
.what__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.what__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.what__photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 32px 20px 16px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
}
.what__photo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.what__index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 3.5vw, 48px);
}
.what__item + .what__item {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 3vw, 48px);
}
.what__item-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.what__num {
  font-family: "Anton", var(--condensed);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1;
  color: var(--accent);
}
.what__item-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.2;
}
.what__item-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ============================================================ WHO WE REPRESENT */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.brand-card {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.1);
}

/* Light card variant — official logos displayed on white/off-white */
.brand-card--light {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-top: 3px solid var(--accent);
  align-items: stretch;
}
.brand-card__inner {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Logo display area — centered with breathing room */
.brand-card__logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 36px) 0 clamp(28px, 3.5vw, 44px);
}

/* Mitchell & Ness — native 288x49; cap around 250px wide */
.brand-card__logo--mn {
  width: clamp(180px, 28vw, 250px);
  height: auto;
  display: block;
}

/* Outerstuff — native 115x70; cap around 100px wide */
.brand-card__logo--os {
  width: clamp(80px, 12vw, 100px);
  height: auto;
  display: block;
}

/* Descriptor text on light cards */
.brand-card__desc {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
}
.brand-card__desc--dark {
  color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(16px, 2vw, 24px);
  max-width: none;
}
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: clamp(20px, 2.5vw, 30px);
  padding: 1em 1.9em;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}
.brand-card__cta:hover { background: #c40026; transform: translateY(-2px); gap: 0.9em; }

/* ============================================================ REPS */
.reps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
/* Each grid cell wraps a flip card + optional social row beneath */
.rep-cell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Social row sits below the flip card; left-aligned, light section */
.rep-card__social { margin: 0; }
/* Flip card: signature front, rep's jersey on the back */
.rep-card {
  display: block;
  position: relative;
  aspect-ratio: 1.3 / 1;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}
.rep-card__inner {
  position: absolute;
  inset: 0;
}
.rep-card__front,
.rep-card__back {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.45s var(--ease);
}
/* Signature shows at rest; jersey fades in on hover */
.rep-card__front { opacity: 1; z-index: 2; }
.rep-card__back { opacity: 0; z-index: 1; }
.rep-card:hover .rep-card__front,
.rep-card:focus-visible .rep-card__front { opacity: 0; }
.rep-card:hover .rep-card__back,
.rep-card:focus-visible .rep-card__back { opacity: 1; }
/* Front face — signature card */
.rep-card__front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.6vw, 36px);
  background: var(--bg);
  border: 1.5px solid var(--line);
}
.rep-card--featured .rep-card__front {
  background: var(--ink);
  border-color: var(--ink);
}
.rep-card__rule {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent);
  margin-bottom: clamp(16px, 2vw, 26px);
}
.rep-card__name {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 8px;
}
.rep-card--featured .rep-card__name { color: #ffffff; }
.rep-card__territory {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.rep-card--featured .rep-card__territory { color: rgba(255, 255, 255, 0.6); }
.rep-card__email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(16px, 2.4vw, 30px);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-3);
}
.rep-card__email svg { width: 15px; height: 15px; flex-shrink: 0; }
.rep-card--featured .rep-card__email { color: rgba(255, 255, 255, 0.55); }
/* Back face — the rep's jersey, cropped to fill */
.rep-card__back {
  background: #f2f2f2;
}
.rep-card__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
  transform-origin: center top;
  transition: transform 0.6s var(--ease);
}
.rep-card:hover .rep-card__back img,
.rep-card:focus-visible .rep-card__back img { transform: scale(1.05); }

/* 6th card — "Contact Us" CTA with a branded back instead of a jersey */
.rep-card__back--contact {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.rep-card__back--contact .rep-card__back-logo {
  width: clamp(120px, 16vw, 168px);
  height: auto;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}
.rep-card__back-label {
  font-family: "Anton", var(--condensed);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ============================================================ FOUNDER / BIO (dark band) */
.bio {
  display: grid;
  grid-template-columns: 1.5fr 0.82fr;
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
}
.bio__portrait {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.bio__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.1em;
  max-width: 62ch;
}
.bio__copy p:last-child { margin-bottom: 0; }
.bio__copy .bio__lead { color: rgba(255, 255, 255, 0.92); }
.bio__timeline {
  list-style: none;
  margin: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 30px);
}
.bio__milestone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bio__milestone::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.bio__year {
  font-family: "Anton", var(--condensed);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffffff;
}
.bio__event {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}
/* "As featured in Inc." credit */
.bio__credit { margin-top: clamp(20px, 2.5vw, 30px); margin-bottom: 0; }
.bio__credit a {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.bio__credit a:hover { color: #ffffff; border-color: var(--accent); }
/* Heritage artifacts — framed period photos beside the bio */
.bio__artifacts {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 28px);
}
.bio__artifact {
  margin: 0;
  background: #ffffff;
  padding: 8px;
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.bio__artifact img { width: 100%; height: auto; display: block; border-radius: 1px; }
.bio__artifact figcaption {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 4px 2px;
}
@media (max-width: 820px) {
  .bio { grid-template-columns: 1fr; }
}

.reps__contact {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 3vw, 36px);
}
.reps__contact a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.reps__contact a:hover { border-color: var(--accent); }

/* ============================================================ HISTORY (dark band) */
.history__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}
.history__copy .kicker { margin-bottom: 4px; }
.history__copy .h2 { margin-bottom: 24px; }
.history__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}
.history__stat-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.history__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

/* ============================================================ MEDIA BANDS (full-bleed photo strips) */
.media-band {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* collapse inline gap below img */
}
.media-band img {
  width: 100%;
  height: clamp(380px, 58vh, 640px);
  object-fit: cover;
  display: block;
}
/* Thinner divider band, clipped between sections (tall enough to read the logos) */
.media-band--thin img { height: clamp(240px, 32vh, 380px); }
/* Big hangers band: raise the crop so the Mitchell & Ness mark sits higher */
.media-band:not(.media-band--thin) img { object-position: center 64%; }

/* ============================================================ PRODUCT GALLERY */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}
.product-grid figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
}
.product-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.product-grid figure:hover img {
  transform: scale(1.03);
}

/* ============================================================ SHOWROOM HERITAGE */
.heritage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.heritage__copy .kicker { display: block; margin-bottom: 4px; }
.heritage__copy .h2 { margin-bottom: 0; }

/* Showroom photo panel */
.heritage__media {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
}
.heritage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1020px) {
  .heritage__inner { grid-template-columns: 1fr; }
  .heritage__media { max-width: 480px; }
}

/* ============================================================ CONTACT */
.contact__inner {
  max-width: 680px;
}
.contact__inner .kicker { margin-bottom: 4px; }
.contact__inner .h2 { margin-bottom: 20px; }
.contact__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--ink-2);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.contact__email {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  transition: color 0.3s;
}
.contact__email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.contact__email:hover { color: var(--accent); }
.contact__email:hover::after { width: 100%; }

/* ============================================================ FOOTER */
.footer {
  background: var(--dark);
  padding: clamp(24px, 3.5vw, 40px) var(--gutter);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { display: inline-flex; align-items: center; }
.footer__logo {
  height: 42px;
  width: auto;
  display: block;
}
.footer__nav {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}
.footer__nav a:hover { color: #ffffff; }
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* ============================================================ SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__utility { display: none; }
  .nav__burger { display: block; }
  .nav__mobile { display: flex; }

  .what__top { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 44px); }
  .what__index { grid-template-columns: 1fr; gap: 0; }
  .what__item + .what__item {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: clamp(22px, 3vw, 30px);
    margin-top: clamp(22px, 3vw, 30px);
  }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: clamp(200px, 50vw, 280px); }
  .reps-grid { grid-template-columns: repeat(2, 1fr); }
  .history__inner { grid-template-columns: 1fr; gap: 36px; }
  .history__stat { align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .reps-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__nav { justify-content: flex-start; }
  .contact__email { font-size: clamp(1.2rem, 5vw, 1.8rem); }
}
@media (max-width: 400px) {
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.will-animate .hero__kicker-row,
  body.will-animate .hero__h1,
  body.will-animate .hero__sub,
  body.will-animate .hero__cta,
  body.will-animate .hero__now-rep,
  .hero__kicker-row,
  .hero__h1,
  .hero__sub,
  .hero__cta,
  .hero__now-rep {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .brand-card:hover {
    transform: none;
  }
  /* No fade/zoom animation under reduced motion (hover still reveals, instantly) */
  .rep-card__front,
  .rep-card__back,
  .rep-card__back img { transition: none; }
  .rep-card:hover .rep-card__back img,
  .rep-card:focus-visible .rep-card__back img { transform: none; }
}
