/* =========================================================
   PITCH'D SPORT — page-specific additions
   Extends the shared design tokens in /style.css
   ========================================================= */

/* ---- Hero (full-bleed photo, centered content) ---- */
.sport-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: clamp(7rem, 14vw, 10rem);
  overflow: hidden;
}
.sport-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sport-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: 0.55;
}
.sport-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.75) 55%, var(--color-bg) 100%);
}
.sport-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.sport-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}
.sport-hero h1 {
  font-size: var(--text-hero);
  color: var(--color-text);
  max-width: 14ch;
  margin-bottom: var(--space-6);
}
.sport-hero-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-10);
  font-weight: 300;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.stat-pill {
  background: rgba(245, 244, 240, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  min-width: 168px;
}
.stat-pill-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-1);
}
.stat-pill-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ---- Stat callouts inside the problem section ---- */
.problem-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .problem-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.problem-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-2);
}

/* ---- Model cards: tag chips ---- */
.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.model-tag {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: rgba(245, 244, 240, 0.06);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: 0.3em 0.75em;
}

/* ---- Case studies ---- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  margin-top: var(--space-8);
}
@media (min-width: 760px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.case-card {
  background: var(--color-bg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}
.case-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.case-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}
.case-stat {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 600;
  display: block;
}
.case-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---- Team headshots reused from leader-card, smaller ratio ---- */
.sport-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-top: var(--space-10);
}
@media (min-width: 760px) {
  .sport-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.network-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.network-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-right: var(--space-4);
}
.network-tag {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: 0.3em 0.85em;
}

/* ---- Contact dual CTA ---- */
.sport-contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.btn-secondary {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

/* ---- Sport logo (two-line lockup, overrides .brand img default) ---- */
.brand img.sport-logo {
  height: 34px;
  width: auto;
}
@media (min-width: 768px) {
  .brand img.sport-logo {
    height: 38px;
  }
}
.brand img.sport-logo-footer {
  height: 30px;
}
