body {
  background: var(--black-deep);
}

.offer-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: var(--border-gold);
  backdrop-filter: blur(10px);
}

.offer-header-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.offer-nav {
  display: flex;
  gap: 18px;
}

.offer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.offer-nav a.is-active {
  color: var(--gold-light);
}

.offer-page {
  min-height: 100vh;
}

.offer-wrap {
  width: min(100%, 1080px);
}

.offer-hero {
  padding-top: 82px;
}

.offer-hero .offer-wrap {
  display: grid;
  row-gap: 22px;
}

/* Tighten spacing between hero jumpbar and first content section on Zajęcia sportowe page */
.offer-hero.section {
  padding-bottom: 24px;
}

.offer-hero + .section {
  padding-top: 24px;
}

.offer-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.86rem;
  font-weight: 700;
}

.offer-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.2;
}

.offer-lead {
  margin: 0 0 14px;
  color: rgba(244, 244, 242, 0.88);
  line-height: 1.75;
  font-size: 1.05rem;
}

.offer-jumpbar {
  margin: 0 auto 4px;
  display: flex;
  width: fit-content;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-inline: auto;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.25);
  background: linear-gradient(90deg, rgba(167, 144, 88, 0.95) 0%, rgba(207, 177, 99, 0.98) 50%, rgba(167, 144, 88, 0.95) 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.offer-jumpbar a {
  text-decoration: none;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.offer-jumpbar a:hover {
  background: rgba(10, 10, 10, 0.14);
  border-color: rgba(10, 10, 10, 0.3);
  transform: translateY(-1px);
}

.offer-page section[id] {
  scroll-margin-top: 120px;
}

.offer-block {
  margin-bottom: 18px;
}

.offer-block h2,
.offer-block h3 {
  margin-bottom: 12px;
  color: var(--gold-light);
}

.offer-block--silver {
  position: relative;
  background:
    linear-gradient(120deg, rgba(30, 33, 40, 0.95) 0%, rgba(48, 53, 62, 0.92) 34%, rgba(168, 176, 188, 0.28) 50%, rgba(48, 53, 62, 0.92) 66%, rgba(30, 33, 40, 0.95) 100%),
    linear-gradient(180deg, rgba(16, 18, 22, 0.98) 0%, rgba(9, 10, 13, 0.99) 100%);
  border-color: rgba(160, 169, 184, 0.42);
  box-shadow:
    0 0 24px rgba(214, 222, 238, 0.1),
    0 12px 24px rgba(170, 178, 194, 0.13),
    inset 0 1px 0 rgba(235, 240, 248, 0.18),
    inset 0 -1px 0 rgba(75, 82, 94, 0.34);
}

.offer-block--silver::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(236, 242, 252, 0.26), transparent 46%),
    radial-gradient(circle at 82% 70%, rgba(205, 214, 230, 0.18), transparent 54%);
  opacity: 0.82;
}

.offer-block p {
  margin: 0 0 14px;
  color: rgba(244, 244, 242, 0.9);
  line-height: 1.74;
}

.offer-block .offer-head-description {
  margin: 0 auto 14px;
  max-width: 70ch;
  text-align: center;
}

.offer-note {
  margin-bottom: 0 !important;
  color: #fff;
}

.offer-list {
  margin: 0 0 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.offer-list li {
  color: rgba(244, 244, 242, 0.92);
  line-height: 1.6;
}

.offer-section-title {
  margin: 0 0 18px;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-card {
  padding: 22px;
}

.location-card h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
}

.location-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.offer-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 24px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(244, 244, 242, 0.9);
}

.offer-cta {
  text-align: center;
  padding: clamp(24px, 4vw, 40px);
}

.offer-cta h2 {
  margin: 0 0 12px;
}

.offer-cta p {
  margin: 0 0 12px;
  color: rgba(244, 244, 242, 0.9);
}

.offer-cta-btn {
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 980px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-two-col,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .offer-header-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .offer-nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }

  .offer-page {
    padding-top: 96px;
  }

  .offer-hero {
    padding-top: 80px;
    padding-bottom: 0px;
  }

  .offer-lead {
    margin-bottom: 0;
  }

  .offer-jumpbar {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
    border-radius: 14px;
    margin: 26px auto 8px;
    max-width: 100%;
  }

  .offer-jumpbar a {
    flex: 1 1 calc(50% - 6px);
    min-width: 130px;
    text-align: center;
    white-space: normal;
    font-size: 0.71rem;
    padding: 6px 10px;
  }

  .offer-page section[id] {
    scroll-margin-top: 158px;
  }

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