.gym-blacklight-page {
  padding: 0;
}

.gym-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gym-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gym-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
}

.gym-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.gym-hero-content h1 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.gym-hero-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.gym-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px 56px;
  text-align: center;
}

.gym-intro p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.gym-setup {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.gym-setup-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--sand);
}

.gym-setup-card:last-child {
  border-bottom: 1px solid var(--sand);
}

.gym-setup-card:nth-child(even) .gym-setup-info {
  order: 2;
}

.gym-setup-card:nth-child(even) .gym-setup-diagram {
  order: 1;
}

.gym-setup-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b44dff;
  margin-bottom: 8px;
}

.gym-setup-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.gym-setup-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gym-setup-specs {
  margin-bottom: 20px;
}

.gym-setup-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.gym-setup-spec svg {
  width: 18px;
  height: 18px;
  stroke: #b44dff;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.gym-setup-spec span {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
}

.gym-setup-price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.gym-setup-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.gym-setup-btn:hover {
  background: var(--accent-hover);
}

.gym-setup-diagram svg {
  width: 100%;
  height: auto;
}

.gym-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.gym-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 36px 48px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 6px;
}

.gym-cta-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
}

.gym-cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.gym-cta-btn:hover {
  background: var(--accent-hover);
}

.gym-cta-btn--dark {
  background: #2c2c2c;
}

.gym-cta-btn--dark:hover {
  background: #444;
}

@media (max-width: 768px) {
  .gym-hero {
    height: 300px;
  }

  .gym-hero-content h1 {
    font-size: 36px;
  }

  .gym-intro {
    padding: 48px 24px 40px;
  }

  .gym-setup {
    padding: 0 24px 56px;
  }

  .gym-setup-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .gym-setup-card:nth-child(even) .gym-setup-info {
    order: 1;
  }

  .gym-setup-card:nth-child(even) .gym-setup-diagram {
    order: 2;
  }

  .gym-setup-title {
    font-size: 26px;
  }

  .gym-cta {
    padding: 0 24px 56px;
  }

  .gym-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 24px;
  }
}
