:root {
  --ink: #11101a;
  --ink-soft: #242231;
  --paper: #f7f5fb;
  --white: #ffffff;
  --purple: #6f2cff;
  --purple-dark: #4e16c8;
  --pink: #ff3fab;
  --cyan: #31d8ff;
  --gold: #ffca58;
  --muted: #6c6877;
  --border: rgba(17, 16, 26, 0.12);
  --shadow: 0 24px 70px rgba(23, 15, 51, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.section-padding {
  padding: 7rem 0;
}

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

.text-primary-brand {
  color: var(--purple) !important;
}

.site-header {
  padding: 0.45rem 0;
  background: rgba(15, 13, 25, 0.83);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(15, 13, 25, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--white);
  line-height: 0.78;
  text-transform: uppercase;
}

.brand-big {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-copy {
  padding-left: 0.58rem;
  color: rgba(255, 255, 255, 0.76);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  line-height: 1.08;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.btn {
  border-radius: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-lg {
  padding: 0.95rem 1.55rem;
}

.btn-brand {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 30px rgba(111, 44, 255, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-dark), #dc238f);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 10, 22, 0.97) 0%, rgba(12, 10, 22, 0.86) 48%, rgba(12, 10, 22, 0.45) 100%),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=88") center/cover no-repeat;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, transparent 55%, rgba(12, 10, 22, 0.9)),
    radial-gradient(circle at 75% 35%, transparent 0 25%, rgba(12, 10, 22, 0.5) 70%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.26;
}

.hero-glow-one {
  top: 17%;
  left: -7rem;
  background: var(--purple);
}

.hero-glow-two {
  right: 10%;
  bottom: 8%;
  background: var(--pink);
}

.hero-section h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-size: clamp(4.2rem, 9.6vw, 8.5rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-section h1 span {
  color: var(--cyan);
  text-shadow: 4px 4px 0 rgba(255, 63, 171, 0.8);
}

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions .btn-outline-light:hover {
  color: var(--ink);
}

.proof-item {
  padding-left: 1rem;
  border-left: 3px solid var(--pink);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.hero-card {
  padding: 2.2rem;
  background: rgba(17, 15, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--cyan);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.card-kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: " →";
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  width: 28px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.7s infinite;
}

@keyframes scrollCue {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.services-section {
  background:
    radial-gradient(circle at 0% 30%, rgba(111, 44, 255, 0.08), transparent 32%),
    var(--paper);
}

.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(26, 18, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-content {
  position: relative;
  padding: 1.75rem;
}

.service-number {
  position: absolute;
  top: -1.25rem;
  right: 1.4rem;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border: 5px solid var(--white);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.service-content h3 {
  margin-bottom: 0.65rem;
  font-size: 2.05rem;
  text-transform: uppercase;
}

.service-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.picnic-banner {
  margin-top: 1rem;
  padding: 2.5rem;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(78, 22, 200, 0.96), rgba(255, 63, 171, 0.88)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=85") center/cover;
  box-shadow: var(--shadow);
}

.picnic-banner h3 {
  font-size: 3.4rem;
  text-transform: uppercase;
}

.picnic-banner p,
.picnic-banner .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.mission-section {
  padding-top: 0;
}

.mission-panel {
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 12, 24, 0.98), rgba(33, 22, 55, 0.94)),
    url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1700&q=85") center/cover;
  box-shadow: var(--shadow);
}

.mission-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.mission-copy {
  color: rgba(255, 255, 255, 0.71);
  font-size: 1.06rem;
}

.events-section {
  background: var(--white);
}

.section-side-copy {
  max-width: 520px;
  margin: 0;
  font-size: 1.02rem;
}

.event-list {
  border-top: 1px solid var(--border);
}

.event-row {
  display: grid;
  grid-template-columns: 70px minmax(250px, 0.7fr) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s ease, background 0.25s ease;
}

.event-row:hover {
  padding-inline: 1.25rem;
  background: rgba(111, 44, 255, 0.035);
}

.event-row > span {
  color: var(--purple);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.event-row h3 {
  margin: 0;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.event-row p {
  margin: 0;
}

.planning-section {
  background:
    radial-gradient(circle at 100% 60%, rgba(255, 63, 171, 0.09), transparent 28%),
    var(--paper);
}

.planning-image-wrap {
  position: relative;
}

.planning-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 2px solid var(--purple);
}

.planning-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  z-index: 2;
  padding: 1.3rem 1.7rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 20px 45px rgba(35, 18, 76, 0.3);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.lead-copy {
  color: var(--muted);
  font-size: 1.07rem;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.benefit-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.benefit-item h3 {
  margin-bottom: 0.15rem;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  font-size: 0.9rem;
}

.areas-section {
  color: var(--white);
  background: var(--ink);
}

.areas-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 95% 0%, rgba(49, 216, 255, 0.16), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(255, 63, 171, 0.18), transparent 30%),
    var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.areas-panel p {
  color: rgba(255, 255, 255, 0.62);
}

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

.area-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.area-card span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(49, 216, 255, 0.45);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.area-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.area-card-cta {
  background: linear-gradient(135deg, rgba(111, 44, 255, 0.8), rgba(255, 63, 171, 0.7));
}


.reviews-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(111, 44, 255, 0.08), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(255, 63, 171, 0.08), transparent 26%),
    var(--paper);
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  box-shadow: 0 15px 40px rgba(26, 18, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-quote {
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

.review-author {
    margin-top: 1.25rem;
}

.review-author strong {
    display: block;
    font-weight: 700;
    color: var(--ink);
}

.review-author span {
    color: var(--muted);
    font-size: .9rem;
}

.review-initials {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  color: var(--ink);
  font-size: 0.93rem;
}

.review-author span {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 14, 27, 0.97), rgba(39, 20, 71, 0.94)),
    url("https://images.unsplash.com/photo-1507501336603-6e31db2be093?auto=format&fit=crop&w=1800&q=85") center/cover fixed;
}

.contact-section h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.contact-intro {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.contact-points {
  display: grid;
  gap: 1.35rem;
  margin-top: 2.4rem;
}

.contact-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}

.contact-points span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(49, 216, 255, 0.45);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.contact-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-points strong {
  color: var(--white);
}

.form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-label {
  margin-bottom: 0.42rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-label span {
  color: var(--muted);
  font-weight: 500;
}

.form-control,
.form-select {
  min-height: 54px;
  border-color: #d8d4df;
  border-radius: 0.15rem;
  background-color: #fbfafc;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.2rem rgba(111, 44, 255, 0.14);
}

.form-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: var(--white);
  background: #0a0910;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-tagline {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.footer-links a,
.footer-email {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
}

.alert {
  border-radius: 0.15rem;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 5.5rem 0;
  }

  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    background: rgba(10, 9, 16, 0.98);
  }

  .hero-section {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero-card {
    max-width: 620px;
  }

  .event-row {
    grid-template-columns: 45px 1fr;
    gap: 0.6rem 1rem;
  }

  .event-row p {
    grid-column: 2;
  }

  .planning-image-wrap {
    max-width: 720px;
    margin-inline: auto;
  }

  .planning-image-wrap img {
    min-height: 500px;
  }

  .contact-section {
    background-attachment: scroll;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 2.8rem;
  }

  .hero-section h1 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .service-card img {
    height: 215px;
  }

  .picnic-banner {
    padding: 2rem 1.4rem;
  }

  .picnic-banner h3 {
    font-size: 2.8rem;
  }

  .event-row {
    grid-template-columns: 36px 1fr;
    padding: 1.5rem 0;
  }

  .event-row h3 {
    font-size: 1.9rem;
  }

  .planning-image-wrap::before {
    inset: -10px 10px 10px -10px;
  }

  .planning-image-wrap img {
    min-height: 390px;
  }

  .image-badge {
    right: 0;
    bottom: 1rem;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Sports Games page */
.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-card-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.sports-page-hero {
  position: relative;
  padding: 12.5rem 0 6rem;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(12, 10, 22, 0.96), rgba(12, 10, 22, 0.58)),
    url("/img/sports.avif") center 36% / cover no-repeat;
  isolation: isolate;
}

.sports-page-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(12, 10, 22, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(49, 216, 255, 0.18), transparent 30%);
}

.sports-page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.sports-page-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.sports-catalog-section {
  background:
    radial-gradient(circle at 0% 20%, rgba(111, 44, 255, 0.08), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(255, 63, 171, 0.07), transparent 28%),
    var(--paper);
}

.sports-item-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(26, 18, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sports-item-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.sports-photo-placeholder {
  display: grid;
  width: 100%;
  height: 230px;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(111, 44, 255, 0.88), rgba(255, 63, 171, 0.72)),
    #211b36;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sports-photo-placeholder span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sports-item-content {
  position: relative;
  flex: 1;
  padding: 1.8rem;
}

.sports-item-number {
  position: absolute;
  top: -1.35rem;
  right: 1.35rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border: 5px solid var(--white);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.sports-item-content h2 {
  margin-bottom: 0.7rem;
  padding-right: 3rem;
  font-size: 2rem;
}

.sports-item-content p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.sports-cta-section {
  padding: 5rem 0 8rem;
  background: var(--paper);
}

.sports-cta-panel {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 216, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--purple-dark), #25143f 62%, #171320);
  box-shadow: var(--shadow);
}

.sports-cta-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.sports-cta-panel p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .sports-page-hero {
    padding: 10.5rem 0 5rem;
  }
}

@media (max-width: 767.98px) {
  .sports-page-hero {
    padding: 9rem 0 4.5rem;
  }

  .sports-page-hero h1 {
    font-size: clamp(4.5rem, 23vw, 7rem);
  }

  .sports-page-hero .btn,
  .sports-cta-panel .btn {
    width: 100%;
  }

  .sports-photo-placeholder {
    height: 210px;
  }

  .sports-cta-section {
    padding: 4rem 0 5rem;
  }
}
