:root {
  --black: #020403;
  --graphite: #07100c;
  --graphite-2: #0b1711;
  --graphite-3: #101d16;
  --green: #00c853;
  --green-deep: #009b40;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.1);
  --line: rgba(0, 200, 83, 0.24);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, var(--black) 0%, var(--graphite) 45%, var(--black) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section,
footer {
  scroll-margin-top: var(--header-h);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 99;
  transform: translateY(-140%);
  background: var(--green);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(2, 4, 3, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(2, 4, 3, 0.64);
  border-color: rgba(0, 200, 83, 0.16);
}

.brand {
  width: clamp(120px, 11vw, 168px);
  display: inline-flex;
  align-items: center;
  margin-top: -8px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: -4px;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--green);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(0, 200, 83, 0.24);
  margin-top: -8px;
}

.btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 20px;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) clamp(18px, 5vw, 80px) 62px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("assets/hero-campo.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.26) 36%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-field-lines {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 42%;
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.4) 48% 49%, transparent 49%),
    linear-gradient(0deg, transparent 0 58%, rgba(255, 255, 255, 0.24) 58% 59%, transparent 59%),
    linear-gradient(90deg, transparent 0 10%, rgba(0, 200, 83, 0.42) 10% 10.4%, transparent 10.4% 89.6%, rgba(0, 200, 83, 0.42) 89.6% 90%, transparent 90%);
}

.hero-content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.65rem, 6.7vw, 6.2rem);
  line-height: 0.96;
  font-weight: 750;
  letter-spacing: 0;
  max-width: 1080px;
}

.hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.internal-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 58px) clamp(18px, 5vw, 80px) clamp(58px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.internal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 200, 83, 0.18), transparent 36%, rgba(0, 0, 0, 0.68)),
    url("assets/hero-campo.png") center / cover no-repeat;
  transform: scale(1.02);
}

.internal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.38) 48% 49%, transparent 49%),
    linear-gradient(0deg, transparent 0 58%, rgba(255, 255, 255, 0.2) 58% 59%, transparent 59%),
    linear-gradient(90deg, transparent 0 10%, rgba(0, 200, 83, 0.38) 10% 10.4%, transparent 10.4% 89.6%, rgba(0, 200, 83, 0.38) 89.6% 90%, transparent 90%);
}

.internal-hero-content {
  width: min(940px, 100%);
  color: var(--white);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.76);
}

.internal-hero h1 {
  margin: 18px 0;
  max-width: 900px;
  font-size: clamp(2.45rem, 5.7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.internal-hero p {
  width: min(780px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.internal-hero-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 760;
}

.internal-hero .btn {
  margin-top: 18px;
}

.btn {
  min-width: 180px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(0, 200, 83, 0.25);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(0, 200, 83, 0.76);
  background: rgba(2, 4, 3, 0.4);
}

.btn-dark {
  color: var(--white);
  border-color: rgba(0, 200, 83, 0.38);
  background: rgba(2, 4, 3, 0.74);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.12);
}

.btn-outline:hover,
.btn-dark:hover {
  border-color: var(--green);
  box-shadow: 0 18px 42px rgba(0, 200, 83, 0.18);
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(0, 200, 83, 0.08) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(0, 200, 83, 0.04) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    var(--black);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 200, 83, 0.08), transparent 22%, transparent 78%, rgba(0, 200, 83, 0.08));
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

.section h2,
.site-footer h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4.6vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.women-copy p,
.footer-brand p,
.footer-contact p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.carousel-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 14px 0 28px;
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}

.carousel-track {
  --card-w: 340px;
  display: flex;
  gap: 22px;
  width: max-content;
  animation: carouselScroll 44s linear infinite;
}

.carousel-shell:hover .carousel-track {
  animation-play-state: paused;
}

.feature-card {
  position: relative;
  flex: 0 0 var(--card-w);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--card-image) center / cover no-repeat;
  box-shadow: var(--shadow);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 200, 83, 0.16), transparent 48%);
}

.feature-card::after,
.poster-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 3px;
  background: var(--green);
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 280ms ease;
}

.feature-card > div {
  position: relative;
  z-index: 1;
}

.feature-card span,
.poster-number {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-card h3,
.poster-card h3 {
  margin: 8px 0 10px;
  font-size: 1.5rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.feature-card p,
.poster-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.feature-card:hover,
.poster-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(0, 200, 83, 0.62);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(0, 200, 83, 0.22);
}

.feature-card:hover::after,
.poster-card:hover::after {
  transform: scaleX(1);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.women-section {
  background:
    linear-gradient(120deg, rgba(0, 200, 83, 0.09), transparent 38%),
    var(--black);
}

.women-card {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius);
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 100%) 0 0 / 82px 82px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%) 0 0 / 82px 82px,
    var(--green);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.women-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 58%);
}

.women-copy,
.women-image {
  position: relative;
  z-index: 1;
}

.women-copy h2 {
  color: var(--black);
  max-width: 720px;
}

.women-copy p {
  color: rgba(0, 0, 0, 0.74);
  max-width: 700px;
  font-weight: 650;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.82);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.women-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.women-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.women-card:hover .women-image img {
  transform: scale(1.07);
}

.championship-section {
  background:
    linear-gradient(90deg, rgba(0, 200, 83, 0.1), transparent 18%, transparent 82%, rgba(0, 200, 83, 0.1)),
    var(--black);
}

.poster-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.poster-card {
  position: relative;
  min-height: clamp(500px, 54vw, 650px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--poster-image) center / cover no-repeat;
  box-shadow: var(--shadow);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 200, 83, 0.12), transparent 46%);
}

.poster-card > * {
  position: relative;
  z-index: 1;
}

.section-support {
  margin-top: 14px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.competition-detail-section .poster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.competition-detail-section .poster-card {
  min-height: clamp(440px, 38vw, 560px);
}

.poster-number {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 83, 0.72);
  background: rgba(0, 0, 0, 0.54);
}

.split-layout,
.hours-layout {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.bar-section .split-layout {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.bar-section .split-image {
  width: min(55vw, 760px);
  justify-self: start;
  margin-left: calc(((min(1240px, 100vw) - 100vw) / 2) - clamp(72px, 6vw, 96px));
}

.split-image,
.hours-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.24);
  background: var(--graphite-2);
  box-shadow: var(--shadow);
}

.split-image::after,
.hours-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.split-image img,
.hours-image img {
  width: 100%;
  min-height: 560px;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}

.bar-section .split-image img {
  width: 100%;
  object-position: center top;
}

.membership-section {
  padding-block: clamp(58px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(0, 200, 83, 0.08), transparent 24%, transparent 76%, rgba(0, 200, 83, 0.08)),
    var(--black);
}

.membership-layout {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.78fr) minmax(300px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.membership-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.membership-copy p {
  color: var(--muted);
}

.membership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.membership-subtitle {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 720;
}

.membership-savings {
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 2px;
  padding: 14px 16px;
  display: block;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.7);
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.96), rgba(0, 200, 83, 0.66)),
    var(--green);
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 200, 83, 0.22), 0 0 0 6px rgba(0, 200, 83, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.membership-savings:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 200, 83, 0.28), 0 0 0 8px rgba(0, 200, 83, 0.11);
}

.membership-savings strong,
.membership-savings span {
  display: block;
}

.membership-savings strong {
  color: var(--black);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1;
  font-weight: 950;
}

.membership-savings span {
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.28);
  background: var(--graphite-2);
  box-shadow: var(--shadow);
}

.membership-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 200, 83, 0.12), transparent 52%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.membership-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 820ms ease;
}

.membership-image:hover img {
  transform: scale(1.06);
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.membership-benefit {
  min-height: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.membership-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 83, 0.72);
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.06);
}

.benefit-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.13);
  border: 1px solid rgba(0, 200, 83, 0.45);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
}

.membership-benefit h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.12;
}

.membership-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.events-rental-section {
  padding-block: clamp(68px, 8vw, 104px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 200, 83, 0.08), transparent 20%, transparent 80%, rgba(0, 200, 83, 0.08)),
    var(--black);
}

.events-rental-heading {
  width: min(980px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.events-rental-heading .section-kicker {
  margin-inline: auto;
}

.events-rental-heading h2 {
  margin: 12px auto 14px;
  max-width: 960px;
  font-size: clamp(2rem, 4.5vw, 4.35rem);
  line-height: 1;
}

.events-rental-heading p {
  max-width: 840px;
  margin: 0 auto;
  color: var(--muted);
}

.events-rental-heading .events-rental-subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
}

.event-chips {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.event-chip,
.event-dot,
.event-arrow {
  border: 1px solid rgba(0, 200, 83, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.event-chip {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: var(--radius);
  font-weight: 850;
  text-transform: uppercase;
}

.event-chip:hover,
.event-chip.is-active {
  border-color: rgba(0, 200, 83, 0.72);
  background: var(--green);
  color: var(--black);
}

.event-carousel-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.event-carousel-window {
  overflow: hidden;
  padding: 22px 0 28px;
}

.event-track {
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.event-card {
  position: relative;
  flex: 0 0 clamp(250px, calc((100% - 44px) / 3), 330px);
  aspect-ratio: 4 / 5;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--graphite-2);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.44);
  opacity: 0.48;
  transform: scale(0.88);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    border-color 560ms ease,
    box-shadow 560ms ease;
}

.event-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 200, 83, 0.66);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(0, 200, 83, 0.18);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 720ms ease;
}

.event-card:hover img,
.event-card.is-active:hover img {
  transform: scale(1.06);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 200, 83, 0.16), transparent 44%);
}

.event-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
}

.event-card-content span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(0, 200, 83, 0.14);
  border: 1px solid rgba(0, 200, 83, 0.4);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card-content h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.event-card-content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.event-card-content .btn {
  min-height: 40px;
  min-width: 0;
  padding: 11px 13px;
  font-size: 0.84rem;
}

.event-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.event-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 83, 0.72);
  background: rgba(0, 200, 83, 0.12);
}

.event-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
}

.event-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.event-dot.is-active {
  width: 28px;
  background: var(--green);
  border-color: var(--green);
}

.split-copy h2 {
  max-width: 790px;
}

.split-copy p {
  max-width: 720px;
}

.highlight-list,
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
}

.highlight-list div,
.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.24);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.highlight-list div:hover,
.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 83, 0.68);
  background: rgba(0, 200, 83, 0.08);
}

.icon-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.12);
}

.statement {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: rgba(0, 200, 83, 0.08);
  color: var(--white);
  border-radius: var(--radius);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.mini-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 950;
}

.hours-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: stretch;
}

.hours-panel {
  height: 100%;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(0, 200, 83, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(135px, 0.88fr) minmax(112px, auto);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 1.08rem;
}

.hours-row strong {
  justify-self: end;
  color: var(--white);
  font-size: 1.13rem;
}

.hours-row em {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(0, 200, 83, 0.13);
  color: var(--green);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
}

.hours-row.closed strong {
  color: rgba(255, 255, 255, 0.54);
}

.hours-panel .btn {
  margin-top: 24px;
  width: 100%;
}

.hours-image img {
  aspect-ratio: 9 / 14;
  height: 100%;
  min-height: auto;
  max-height: 720px;
}

.final-cta-section {
  padding-block: clamp(62px, 7vw, 96px);
}

.final-cta-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(0, 200, 83, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta-card .section-kicker {
  margin-inline: auto;
}

.final-cta-card h2 {
  margin: 14px auto 12px;
  max-width: 820px;
}

.final-cta-card p {
  width: min(700px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.site-footer {
  position: relative;
  padding: clamp(62px, 8vw, 98px) clamp(18px, 5vw, 76px) 28px;
  background:
    linear-gradient(90deg, rgba(0, 200, 83, 0.08) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(0, 200, 83, 0.04) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    var(--black);
  border-top: 1px solid rgba(0, 200, 83, 0.18);
}

.footer-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(240px, 0.82fr) minmax(340px, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.footer-brand img {
  width: min(210px, 68vw);
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 780;
}

.footer-links a,
.footer-contact a {
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green);
}

.footer-contact h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.04;
}

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

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-actions .btn {
  min-width: 0;
}

.map-card {
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 83, 0.35);
  background: var(--graphite-2);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.12) brightness(0.74);
}

.footer-bottom {
  width: min(1240px, 100%);
  margin: 42px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 7px rgba(0, 200, 83, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.5), 0 0 0 9px rgba(0, 200, 83, 0.12);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .poster-grid .poster-card.reveal {
  transform: translateY(36px) scale(0.96);
}

.js .poster-grid .poster-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .poster-grid .poster-card.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.js .poster-grid .poster-card.reveal:nth-child(2) {
  transition-delay: 1.1s;
}

.js .poster-grid .poster-card.reveal:nth-child(3) {
  transition-delay: 2.2s;
}

.js .poster-grid .poster-card.reveal:nth-child(4) {
  transition-delay: 3.3s;
}

.js .poster-grid .poster-card.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1.015);
  transition-delay: 0ms;
}

.js .image-left.reveal {
  transform: translateX(-32px);
}

.js .copy-right.reveal {
  transform: translateX(32px);
}

.js .image-left.reveal.is-visible,
.js .copy-right.reveal.is-visible {
  transform: translateX(0);
}

@keyframes carouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-6 * (var(--card-w) + 22px)));
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    margin-top: 0;
    padding: 14px;
    border: 1px solid rgba(0, 200, 83, 0.22);
    border-radius: var(--radius);
    background: rgba(2, 4, 3, 0.94);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-card {
    min-height: 500px;
  }

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

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 128px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    align-items: end;
    padding-bottom: 70px;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(2.35rem, 12vw, 4.45rem);
  }

  .hero p {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .internal-hero {
    min-height: 72svh;
    padding-inline: 16px;
    padding-bottom: 62px;
  }

  .internal-hero-content {
    text-align: left;
  }

  .internal-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4.3rem);
  }

  .btn {
    width: 100%;
  }

  .carousel-shell {
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 4px;
    mask-image: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-track {
    --card-w: min(82vw, 360px);
    animation: none;
  }

  .feature-card {
    scroll-snap-align: center;
    min-height: 430px;
  }

  .competition-detail-section .poster-grid {
    grid-template-columns: 1fr;
  }

  .women-card,
  .split-layout,
  .membership-layout,
  .hours-layout {
    grid-template-columns: 1fr;
  }

  .academy-section .split-copy {
    display: contents;
  }

  .academy-section .split-layout {
    row-gap: 18px;
  }

  .academy-section .section-kicker {
    order: 1;
  }

  .academy-section .split-copy h2 {
    order: 2;
  }

  .academy-section .split-copy > p {
    order: 3;
  }

  .academy-section .split-image {
    order: 4;
  }

  .academy-section .highlight-list {
    order: 5;
  }

  .academy-section .split-copy .btn {
    order: 6;
  }

  .membership-copy {
    order: 1;
  }

  .membership-image {
    order: 2;
  }

  .membership-benefits {
    order: 3;
  }

  .membership-savings {
    width: 100%;
    margin-top: 18px;
  }

  .membership-image img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 480px;
    object-position: center top;
    transform: none;
  }

  .events-rental-heading {
    text-align: left;
  }

  .events-rental-heading .section-kicker {
    margin-inline: 0;
  }

  .event-chips {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .event-chip {
    flex: 0 0 auto;
  }

  .event-carousel-shell {
    grid-template-columns: 1fr;
  }

  .event-carousel-window {
    padding: 14px 0 22px;
    overflow: hidden;
  }

  .event-track {
    gap: 16px;
  }

  .event-card {
    flex-basis: min(82vw, 350px);
    min-height: 430px;
  }

  .event-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(2, 4, 3, 0.64);
    backdrop-filter: blur(10px);
  }

  .event-arrow:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .event-arrow-prev {
    left: 4px;
  }

  .event-arrow-next {
    right: 4px;
  }

  .js .image-left.reveal,
  .js .copy-right.reveal {
    transform: translateY(28px);
  }

  .js .image-left.reveal.is-visible,
  .js .copy-right.reveal.is-visible {
    transform: translateY(0);
  }

  .women-card {
    padding: 22px;
  }

  .women-image img {
    aspect-ratio: 4 / 3;
  }

  .reverse-mobile .split-image {
    order: 2;
  }

  .reverse-mobile .split-copy {
    order: 1;
  }

  .bar-section .split-image {
    width: 100%;
    margin-left: 0;
  }

  .split-image img,
  .hours-image img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .bar-section .split-image img {
    aspect-ratio: 4 / 5;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .section {
    padding-inline: 16px;
  }

  .site-header {
    height: 72px;
  }

  .brand {
    width: 118px;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .section-kicker {
    margin-inline: 0;
  }

  .section h2,
  .site-footer h2 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .highlight-list,
  .mini-card-grid,
  .membership-benefits {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-basis: calc(100vw - 64px);
    min-height: 470px;
  }

  .event-card-content {
    padding: 17px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hours-row strong {
    justify-self: start;
  }

  .poster-card {
    min-height: 520px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
