/* ── RADIONICE HERO ──────────────────────────── */
.rpage-hero {
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.rpage-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.rpage-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
}
.rpage-hero__title {
  font-size: 72px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin: 0;
}

/* ── SEASON SECTIONS ────────────────────────── */
.season {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.season--1 {
  background-color: #fff;
  background-image: url('assets/bg%20final.svg');
  background-position: bottom center;
  padding-bottom: 160px;
}
.season--2 {
  background-color: #fee8a3;
  background-image: url('assets/bg%20final_1.svg');
  background-position: top center;
  padding-top: 160px;
}

.season__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.season__inner--reverse {
  flex-direction: row-reverse;
}

.season__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.season__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.season__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.season__desc {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── PHOTO ──────────────────────────────────── */
.season__photos {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.season__photo-wrap {
  width: 360px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}
.season__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .rpage-hero__title { font-size: 48px; }

  .season { padding: 60px 0; }
  .season--1 { padding-bottom: 100px; }
  .season--2 { padding-top: 100px; }

  .season__inner,
  .season__inner--reverse {
    flex-direction: column;
    gap: 40px;
  }
  .season__photos {
    flex: none;
    width: 100%;
  }
  .season__photo-wrap { width: 100%; height: 240px; }
  .season__title { font-size: 36px; }
}
