/* Off-season screen — centered, balanced composition */

.season-page {
  min-height: 100dvh;
  margin: 0;
  color: #f4fafc;
  font-family: var(--font-body);
  background: #0b3a4a;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.season-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.season-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  filter: saturate(0.82) brightness(0.68);
  animation: season-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}

.season-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 32, 44, 0.62) 0%, rgba(7, 32, 44, 0.42) 45%, rgba(7, 32, 44, 0.78) 100%),
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(29, 195, 219, 0.14) 0%, transparent 65%);
}

.season-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes season-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.07) translate3d(-0.8%, 0.5%, 0); }
}

.season-header {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: clamp(1.25rem, 3vh, 2rem) 1.25rem 0;
}

.season-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  animation: season-rise 0.9s ease-out both;
}

.season-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.season-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.season-main {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vh, 2.5rem) 1.35rem;
}

.season-eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.88);
  animation: season-rise 0.9s ease-out 0.08s both;
}

.season-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.35);
  animation: season-rise 0.95s ease-out 0.14s both;
}

.season-lead {
  margin: 0 auto 1.5rem;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(236, 254, 255, 0.92);
  max-width: 28rem;
  text-wrap: pretty;
  animation: season-rise 0.95s ease-out 0.22s both;
}

.season-divider {
  width: 3.25rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.95), transparent);
  animation: season-rise 0.9s ease-out 0.28s both;
}

.season-body,
.season-closing {
  margin: 0 auto 0.85rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226, 242, 247, 0.88);
  max-width: 28rem;
  text-wrap: pretty;
  animation: season-rise 0.95s ease-out 0.34s both;
}

.season-closing {
  margin-bottom: 2rem;
  font-weight: 500;
  color: #fff;
  animation-delay: 0.4s;
}

.season-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
  animation: season-rise 0.95s ease-out 0.48s both;
}

.season-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 11.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.season-cta:active {
  transform: scale(0.98);
}

.season-cta-primary {
  color: #083344;
  background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 45%, #06b6d4 100%);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.35);
}

.season-cta-primary:hover {
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.45);
}

.season-cta-secondary {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.season-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.season-hint {
  margin: 0 auto;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(186, 230, 253, 0.78);
  max-width: 24rem;
  text-wrap: pretty;
  animation: season-rise 0.95s ease-out 0.55s both;
}

.season-footer {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.25rem;
  padding: 0 1.25rem clamp(1.35rem, 3.5vh, 2rem);
  font-size: 0.85rem;
  color: rgba(186, 230, 253, 0.7);
  text-align: center;
  animation: season-rise 0.9s ease-out 0.6s both;
}

.season-footer p {
  margin: 0;
}

.season-footer a {
  color: rgba(207, 250, 254, 0.92);
  text-decoration: none;
}

.season-footer a:hover {
  text-decoration: underline;
}

@keyframes season-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .season-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .season-cta {
    width: 100%;
    min-width: 0;
  }

  .season-footer {
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .season-bg-img,
  .season-brand,
  .season-eyebrow,
  .season-title,
  .season-lead,
  .season-divider,
  .season-body,
  .season-closing,
  .season-actions,
  .season-hint,
  .season-footer {
    animation: none !important;
  }
}
