:root {
  --bg-dark: #0a0a0a;
  --bg-dark-alt: #111111;
  --bg-light: #f3f3f3;
  --bg-light-card: #ffffff;
  --text-dark: #111111;
  --text-light: #ffffff;
  --muted-dark: #555555;
  --muted-light: #d8d8d8;
  --accent: #c1121f;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(0, 0, 0, 0.08);
  --shadow-dark: 0 22px 50px rgba(0, 0, 0, 0.4);
  --shadow-light: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--bg-dark);
  color: var(--text-light);
}

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

section {
  padding: 4.5rem 0;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* alternating sections */

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(193, 18, 31, 0.14), transparent 24%),
    linear-gradient(180deg, #090909 0%, #101010 40%, #0b0b0b 100%);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000; /* pure black */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.logo img {
  height: 50px; /* bigger logo */
  width: auto;
}

.logo .accent {
  color: var(--accent);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-light);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted-light);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-light);
}

/* HERO */

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.dark-eyebrow {
  color: var(--muted-dark);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  font-size: 1.08rem;
  color: var(--text-light);
}

.hero-links,
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-links {
  margin-bottom: 2rem;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: 0.25s ease;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-strip {
  font-size: 0.95rem;
  color: var(--muted-light);
}

.hero-strip strong {
  color: var(--text-light);
}

.hero-image {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 16s infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.2),
    rgba(8, 8, 8, 0.65)
  );
}

.hero-slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1200&q=80');
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1518604666860-9ed391f76460?auto=format&fit=crop&w=1200&q=80');
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1547347298-4074fc3086f0?auto=format&fit=crop&w=1200&q=80');
  animation-delay: 8s;
}

.hero-slide:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1200&q=80');
  animation-delay: 12s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* SECTION HEAD */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about-card {
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.light-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-light);
  color: var(--text-dark);
}

.about-card h3 {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.about-card p {
  margin-bottom: 1rem;
  font-size: 1.03rem;
  line-height: 1.8;
}

.about-card ul {
  margin: 0.4rem 0 1.2rem 1.3rem;
}

.about-card li {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

/* SERVICES */

#services {
  padding: 5rem 0;
}

.services-section {
  text-align: center;
}

.services-header {
  margin-bottom: 2.5rem;
}

.services-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.services-header h2 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
}

.services-header h2 span {
  color: var(--accent);
}

.services-intro {
  max-width: 950px;
  margin: 0 auto 4rem;
}

.services-intro h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  color: var(--text-light);
}

.services-intro p {
  max-width: 920px;
  margin: 0 auto 1rem;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-closing {
  margin-top: 2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  height: 100%;
}

.dark-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.service-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.service-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 32ch;
  margin: 0 auto;
}



/* TEAM SECTION */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--bg-light-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}




/* CONTACT */

.contact-layout {
  max-width: 720px;
  display: grid;
  gap: 1.2rem;
  font-size: 1.05rem;
}

.contact-layout p,
.contact-details,
.contact-details strong,
.section-light h2,
.section-light p,
.section-light div,
.section-light li,
.section-light h3 {
  color: var(--text-dark);
}

.contact-details {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 1rem;
}

#contact .eyebrow {
  color: var(--muted-light);
}

#contact .section-head h2 {
  color: var(--text-light);
}

#contact .contact-layout p,
#contact .contact-details div {
  color: var(--muted-light);
}

#contact .contact-details strong {
  color: var(--text-light);
}

/* FOOTER */

.footer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted-light);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .services-cards {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 380px;
  }

  .service-card p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .about-card,
  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .service-icon {
    width: 95px;
    height: 95px;
    font-size: 2.3rem;
  }

  .logo {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
  }

   .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
  }
  
  @media (max-width: 720px) {
  .site-header {
    padding-top: 0.75rem;
  }
   .logo {
    font-size: 1.5rem;
  }

  .logo img {
    height: 42px;
  }
}
}


/* ATHLETES PAGE */

.athletes-hero {
  padding: 5.5rem 0 3rem;
}

.athletes-head {
  align-items: flex-start;
}

.athletes-head h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.athletes-head p {
  max-width: 700px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.athletes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.athlete-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.athlete-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.athlete-content {
  padding: 1.5rem;
}

.athlete-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.athlete-content h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.athlete-content p {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.athlete-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.athlete-socials a {
  color: var(--text-dark);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: 0.25s ease;
}

.athlete-socials a:hover,
.athlete-socials a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

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

  .athlete-card img {
    height: 260px;
  }
}