/* ── Season Pass page ─────────────────────────────────────────── */

.sp-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sp-hero { min-height: 520px; }
}

@media (min-width: 1024px) {
  .sp-hero { min-height: 580px; }
}

.sp-hero-media {
  position: absolute;
  inset: 0;
}

.sp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.sp-hero-title {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.sp-hero-title h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

.sp-intro h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #00666d;
}

.sp-intro .sp-tagline {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #191c1e;
}

.sp-intro .sp-lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.65;
  color: #3e494a;
}

.sp-check-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #191c1e;
}

.sp-check-list .sp-check {
  flex-shrink: 0;
  color: #00666d;
  font-size: 22px;
  line-height: 1;
  margin-top: 1px;
}

.sp-intro .sp-cta-label {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #191c1e;
}

.sp-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  background: #f7be1d;
  color: #251a00;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(247, 190, 29, 0.35);
  transition: background 200ms ease, transform 150ms ease;
}

.sp-btn-gold:hover {
  background: #fdc425;
}

.sp-overlap-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 72px;
}

.sp-overlap {
  position: relative;
  min-height: 380px;
}

@media (min-width: 768px) {
  .sp-overlap { min-height: 420px; }
}

.sp-overlap-panel {
  position: relative;
  z-index: 1;
  background: #00666d;
  color: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  margin-top: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .sp-overlap-panel {
    margin-top: 56px;
    width: 56%;
    padding: 52px 44px;
    text-align: left;
  }
}

.sp-overlap-panel h2 {
  margin: 0 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.sp-overlap-panel p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.95;
}

.sp-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: #f7be1d;
  color: #251a00;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease;
}

.sp-btn-book:hover {
  background: #fdc425;
}

.sp-overlap-media {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 40, 45, 0.22);
  background: #000;
  margin-top: -24px;
}

.sp-overlap-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .sp-overlap-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    margin-top: 0;
  }

  .sp-overlap-media img {
    height: 100%;
    min-height: 400px;
    aspect-ratio: auto;
  }
}

.sp-benefits-section {
  padding: 48px 32px 80px;
  background: #fff;
}

.sp-benefits-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.sp-benefits-header h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #00666d;
}

.sp-benefits-header p {
  margin: 0;
  font-size: 1rem;
  color: #3e494a;
}

.sp-benefits-carousel {
  max-width: 1280px;
  margin: 0 auto;
}

.sp-benefit-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 40, 45, 0.1);
  border: 1px solid #eef1f3;
  height: 100%;
}

.sp-benefit-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sp-benefit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-benefit-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
  text-align: center;
}

.sp-benefit-card-body h3 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #00666d;
  line-height: 1.35;
}

.sp-benefit-card-body p {
  margin: 0 0 24px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #3e494a;
}

.sp-benefit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #00666d;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease;
}

.sp-benefit-cta:hover {
  background: #004f55;
}

.sp-benefits-carousel .carousel-viewport {
  overflow: visible;
}

@media (min-width: 1100px) {
  .sp-benefits-carousel .carousel-track {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transform: none !important;
  }

  .sp-benefits-carousel .carousel-slide {
    width: auto !important;
    flex: none !important;
  }

  .sp-benefits-carousel .carousel-btn {
    display: none;
  }
}
