:root {
  --red: #D0021B;
  --red-light: #FF1F35;
  --red-pale: #FFF0F1;
  --black: #0D0D0D;
  --gray-900: #1A1A1A;
  --gray-700: #3D3D3D;
  --gray-300: #C4C4C4;
  --gray-100: #F2F2F2;
  --gray-50: #F8F8F8;
  --white: #FFFFFF;
  --silver: #9E9E9E;
  --border: #E8E8E8;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo img { height: 48px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-logo-text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-900);
}

.nav-logo-text span:first-child {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.btn-nav {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
}

.btn-nav:hover { background: var(--red-light) !important; color: white !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

/* hero::after removed — right column now uses photo */

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  display: block;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray-700);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gray-900); color: var(--black); transform: translateY(-1px); }

.hero-right {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 520px;
  border-radius: 6px;
  overflow: hidden;
}

/* ── HERO PHOTO CROSSFADE ── */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
}

.hero-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}

.hero-photo-wrap img.active {
  opacity: 1;
  z-index: 2;
}

/* ── SECTION BASE ── */
.section {
  padding: 6rem 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-family: 'DM Sans', sans-serif;
}

/* ── SERVICES ── */
.services-section {
  background: var(--gray-50);
  padding: 6rem 0;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon-wrap .material-icons-round,
.skill-icon .material-icons-round {
  font-size: 2rem;
  color: var(--red);
}

.service-card h3,
.skill-card h3,
.team-info h3,
.research-card h3,
.audience-card h3,
.booking-step h4,
.contact-form h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.badge-soon {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFECB5;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── AUDIENCE ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}

.audience-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.75rem;
}


.audience-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* ── STORIES ── */
.stories-section {
  background: var(--black);
  padding: 6rem 0;
}

.stories-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.stories-inner .section-title { color: white; }
.stories-inner .section-eyebrow { color: #FF6B6B; }
.stories-inner .section-eyebrow::before { background: #FF6B6B; }
.stories-inner .section-sub { color: var(--gray-300); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
}

.quote-mark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.5;
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.story-card p {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.story-tag {
  font-size: 1rem;
  font-weight: 500;
  color: var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  width: 100%;
  letter-spacing: 0;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.team-card:has(.btn-read-more):hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(208, 2, 27, 0.08);
  transform: translateY(-3px);
  cursor: pointer;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.team-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-200, #E0E0E0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.team-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 500;
}

.team-info {
  padding: 1.25rem 1.25rem 1.5rem;
}


.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.team-linkedin {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A66C2;
  text-decoration: none;
  transition: opacity 0.2s;
}
.team-linkedin:hover { opacity: 0.75; }
.team-linkedin svg {
  width: 14px;
  height: 14px;
  fill: #0A66C2;
  flex-shrink: 0;
}

/* ── RESEARCH ── */
.research-section {
  background: var(--gray-50);
  padding: 6rem 0;
}

.research-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.research-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.research-card:has(.btn-read-more):hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(208, 2, 27, 0.08);
  transform: translateY(-3px);
  cursor: pointer;
}

.research-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.research-tag::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--red);
}


.research-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E7D32;
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

/* ── RESEARCH MODAL ── */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
}
.btn-read-more:hover { gap: 0.5rem; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: white;
  border-radius: 4px;
  padding: 3rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black); }
.modal-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.modal-tag::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--red);
}
#modal-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A66C2;
  text-decoration: none;
  transition: opacity 0.2s;
}
.modal-linkedin:hover { opacity: 0.75; }
.modal-linkedin svg {
  width: 14px;
  height: 14px;
  fill: #0A66C2;
  flex-shrink: 0;
}
#modal-body {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.modal-overlay.team-mode .free-badge { display: none; }

/* ── CONTACT ── */
.contact-section {
  padding: 6rem 0;
}

.contact-inner-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--gray-900);
  transition: border-color 0.2s, background 0.2s;
  background: white;
}

.contact-opt:hover {
  border-color: var(--red);
  background: var(--red-pale);
}

.opt-icon {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.opt-icon .material-icons-round {
  font-size: 2rem;
  color: var(--red);
}

.opt-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.1rem;
}

.opt-text span {
  font-size: 1rem;
  color: var(--gray-700);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
}

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--black);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,2,27,0.06);
}

.form-group textarea { resize: vertical; min-height: 96px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 3.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img { height: 144px; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-copy {
  font-size: 0.78rem;
  color: var(--silver);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-left { animation: fadeUp 0.65s ease both; }

/* ── BOOKING ── */
.booking-section {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.booking-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.booking-embed {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Cal.com embed — lock to container width, strip all borders/shadows */
#cal-inline {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 600px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
#cal-inline iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
}
/* Remove wrapper border Cal.com injects and lock its width */
[data-cal-namespace] {
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  box-shadow: none !important;
}

.booking-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.25rem;
  max-width: 560px;
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.booking-note-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}

/* ── BOOKING STEPS ── */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 2.5rem auto;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
}
.booking-step {
  flex: 1;
  min-width: 160px;
  text-align: left;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.step-icon {
  margin: 0 0 0.75rem;
  display: flex;
  justify-content: flex-start;
}
.step-icon .material-icons-round {
  font-size: 2rem;
  color: var(--red);
}
.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.booking-step p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 400;
}
.step-arrow {
  font-size: 1.25rem;
  color: var(--red);
  padding: 0 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .step-arrow { display: none; }
  .booking-step { min-width: 140px; }
}

/* ── EXPERTISE ── */
.expertise-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.expertise-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Sports Row */
.sports-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.sport-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 2.5rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 4px;
  flex: 1;
  min-width: 140px;
}
.sport-emoji {
  font-size: 3rem;
  line-height: 1;
}
.sport-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--black);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.skill-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.skill-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: none;
}
.skill-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 400;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .sports-row { gap: 1rem; }
  .skills-grid { grid-template-columns: 1fr; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 5% 4rem; }
  .hero-right { min-height: 280px; border-radius: 4px; }
  .services-grid,
  .stories-grid,
  .research-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}