:root {
  --bg: #F7F1F4;
  --bg-soft: #EAD5DE;
  --ink: #24171D;
  --ink-dark: #24171D;
  --muted: #6F6066;
  --muted-dark: rgba(111, 96, 102, 0.72);
  --line: transparent;
  --pink: #E45A9B;
  --pink-hot: #E45A9B;
  --plum: rgba(228, 90, 155, 0.14);
  --charcoal: #FFFFFF;
  --ivory: #F7F1F4;
  --ivory-soft: #EAD5DE;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(247, 241, 244, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 244, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor summary,
  html.has-custom-cursor .button,
  html.has-custom-cursor .nav-cta,
  html.has-custom-cursor [role="button"] {
    cursor: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 180ms ease,
    width 220ms ease,
    height 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

.site-cursor-dot {
  width: 18px;
  height: 22px;
  background: var(--pink);
  clip-path: polygon(0 0, 0 78%, 27% 59%, 44% 100%, 59% 93%, 42% 55%, 75% 55%);
  filter:
    drop-shadow(0 1px 0 rgba(247, 241, 244, 0.9))
    drop-shadow(0 0 5px rgba(36, 23, 29, 0.35));
}

.site-cursor-dot.is-visible {
  opacity: 1;
}

.site-cursor-dot.is-hover {
  width: 20px;
  height: 24px;
  background: #24171D;
  filter:
    drop-shadow(0 1px 0 rgba(247, 241, 244, 0.95))
    drop-shadow(0 0 7px rgba(228, 90, 155, 0.5));
}

.site-cursor-dot.is-active {
  width: 15px;
  height: 18px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 92px;
  height: 52px;
  gap: 8px;
  padding: 0 16px;
  color: #24171D;
  background: var(--pink);
  border: 1px solid rgba(228, 90, 155, 0.8);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(228, 90, 155, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: #EAD5DE;
  box-shadow: 0 0 34px rgba(234, 213, 222, 0.38);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.scroll-top span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  background: rgba(36, 23, 29, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(36, 23, 29, 0.9);
  border-color: rgba(247, 241, 244, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--pink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  background: var(--pink);
  color: #24171D;
  box-shadow: 0 10px 24px rgba(228, 90, 155, 0.2);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  color: #24171D;
  background: #EAD5DE;
  box-shadow: 0 10px 28px rgba(111, 96, 102, 0.16);
  transform: translateY(-1px);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: #24171D;
  background: #EAD5DE;
}

.button.ghost {
  border: 1px solid rgba(247, 241, 244, 0.28);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: #EAD5DE;
  border-color: #EAD5DE;
  background: rgba(234, 213, 222, 0.08);
  transform: translateY(-1px);
}

.hero,
.page-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.page-hero {
  min-height: 72svh;
}

.home-hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(228, 90, 155, 0.22), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(234, 213, 222, 0.12), transparent 34%),
    linear-gradient(135deg, #24171D 0%, #24171D 52%, #24171D 100%);
}

.page-hero {
  background:
    radial-gradient(circle at 76% 26%, rgba(228, 90, 155, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(234, 213, 222, 0.09), transparent 34%),
    linear-gradient(135deg, #24171D 0%, #24171D 58%, #24171D 100%);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 23, 29, 0.97) 0%, rgba(36, 23, 29, 0.78) 42%, rgba(228, 90, 155, 0.08) 70%, rgba(36, 23, 29, 0.78) 100%),
    linear-gradient(0deg, rgba(36, 23, 29, 0.98) 0%, rgba(36, 23, 29, 0.08) 42%, rgba(36, 23, 29, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 118px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 230ms;
}

.kicker,
.section-label,
.badge {
  margin: 0 0 18px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Inter, system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 1080px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 900;
  text-shadow: none;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.4vw, 5.5rem);
  font-weight: 900;
}

.home-hero h1 span:last-child {
  color: var(--pink);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-copy,
.section-lead,
.split p,
.opening-card p,
.contact-card p,
article p {
  color: var(--muted);
  font-weight: 600;
}

.hero-copy,
.section-lead {
  max-width: 680px;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-hero .hero-actions {
  margin-top: 38px;
}

.simple-hero .hero-copy {
  max-width: 760px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(247, 241, 244, 0.05);
  border: 1px solid rgba(247, 241, 244, 0.14);
  border-radius: 6px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-link:hover,
.social-link:focus-visible {
  color: #EAD5DE;
  background: rgba(228, 90, 155, 0.08);
  border-color: rgba(234, 213, 222, 0.44);
  transform: translateY(-1px);
}

.opening-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  background: var(--pink);
  color: #24171D;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 900;
  text-decoration: none;
}

.opening-strip:hover {
  color: #24171D;
}

.opening-strip[data-static-strip] {
  align-items: stretch;
}

.opening-strip[data-static-strip] > span,
.opening-strip[data-static-strip] > strong {
  flex: 1 1 0;
  text-align: center;
}

.opening-strip > span,
.opening-strip > strong {
  padding: 22px 24px;
}

.opening-strip-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 22px 0;
  animation: stripScroll 26s linear infinite;
}

.opening-strip-track > * {
  flex-shrink: 0;
  padding: 0 24px;
  position: relative;
}

.opening-strip-track > *:not(:last-child)::after {
  content: "\2726";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: rgba(36, 23, 29, 0.6);
}

@keyframes stripScroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

[id] {
  scroll-margin-top: 112px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.choice-card {
  overflow: hidden;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choice-card-featured {
  background: var(--plum);
  border-color: rgba(228, 90, 155, 0.5);
}

.choice-card-copy {
  padding: clamp(26px, 4vw, 42px);
}

.choice-card-copy h3 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.choice-card-copy p:not(.badge) {
  color: var(--muted);
  font-weight: 600;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-copy p {
  color: var(--muted);
  font-weight: 600;
}

.home-schedule-frame iframe {
  min-height: 680px;
}

.home-trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.home-trainer-card {
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-trainer-card > img,
.home-trainer-placeholder {
  width: 100%;
  height: 360px;
}

.home-trainer-card > img {
  object-fit: cover;
}

.home-trainer-card:first-child > img {
  object-position: center 22%;
}

.home-trainer-placeholder {
  display: grid;
  place-items: center;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  background:
    radial-gradient(circle at center, rgba(228, 90, 155, 0.18), transparent 52%),
    var(--bg-soft);
}

.home-trainer-card > div:last-child {
  padding: 26px;
}

.home-trainer-card h3 {
  color: var(--pink);
  font-size: 2rem;
}

.home-trainer-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.trainer-bio .trainer-role {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.trainer-bio p {
  color: var(--muted);
  font-weight: 600;
}

.trainer-bio .trainer-signoff {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

.trainer-instagram {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px 20px;
  background: rgba(228, 90, 155, 0.08);
  border: 1px solid rgba(228, 90, 155, 0.44);
  border-radius: 6px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.trainer-instagram:hover,
.trainer-instagram:focus-visible {
  background: rgba(228, 90, 155, 0.16);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.trainer-instagram span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trainer-instagram strong {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
}

.pricing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.pricing-choice {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pricing-choice.featured {
  background: var(--plum);
  border-color: rgba(228, 90, 155, 0.64);
}

.pricing-choice:hover,
.pricing-choice:focus-visible {
  transform: translateY(-3px);
  border-color: var(--pink);
}

.pricing-choice > span {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

.pricing-choice h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.pricing-choice p:not(.badge) {
  color: var(--muted);
  font-weight: 600;
}

.pricing-choice > strong {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
}

.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.studio-address {
  margin-top: 34px;
  color: var(--muted);
}

.studio-address strong {
  color: var(--ink);
}

.contact-link-grid {
  display: grid;
  gap: 12px;
}

.dark {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.grid-3,
.grid-4,
.price-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.grid-3,
.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.price-card,
.contact-card,
.opening-card,
.faq details {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card {
  min-height: 230px;
  padding: 24px;
}

.card .number {
  display: block;
  margin-bottom: 54px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

.price-card,
.contact-card {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  padding: 30px;
}

.price-group {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.price-group-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.price-group-header .section-label {
  margin-bottom: 0;
}

.price-group-header h3 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.price-group-header p:last-child {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.online-group {
  margin-top: 64px;
}

.price-card.featured,
.contact-card.featured {
  background: var(--plum);
  border-color: rgba(228, 90, 155, 0.72);
  box-shadow: inset 0 0 0 1px rgba(228, 90, 155, 0.16), 0 0 36px rgba(228, 90, 155, 0.16);
}

.price {
  margin: 8px 0 18px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 1rem;
}

.price-card .button,
.contact-card .button {
  margin-top: auto;
}

.bestrong-pricing {
  overflow: hidden;
}

.pass-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.pass-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 180px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(105deg, rgba(36, 23, 29, 0.98), rgba(36, 23, 29, 0.96) 52%, rgba(228, 90, 155, 0.18)),
    var(--charcoal);
  border: 2px solid var(--pink);
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(228, 90, 155, 0.12);
}

.pass-card.featured {
  background:
    linear-gradient(105deg, rgba(36, 23, 29, 0.98), rgba(36, 23, 29, 0.96) 52%, rgba(228, 90, 155, 0.28)),
    var(--plum);
}

.pass-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  text-transform: uppercase;
}

.pass-card p:not(.badge):not(.pass-price) {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.pass-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
  border: 2px solid var(--pink);
  border-radius: 8px;
}

.pass-price {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  white-space: nowrap;
}

.pass-price span {
  display: block;
  margin-top: 8px;
  color: var(--pink-hot);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.pricing-footnote {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  color: var(--muted);
  font-weight: 700;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 18px;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(228, 90, 155, 0.55);
}

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--pink);
}

.image-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.single-photo {
  padding-top: 0;
  padding-bottom: 0;
}

.single-photo img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  filter: saturate(0.95) contrast(1.06);
}

.training-gallery {
  padding-top: 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
  gap: 10px;
  margin-top: 34px;
}

.gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.08);
}

.gallery-grid img:nth-child(even) {
  margin-top: 42px;
}

.testimonials h2 {
  max-width: 980px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.review-card {
  min-height: 320px;
  padding: 26px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  margin-bottom: 22px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card h3 {
  color: var(--ink);
}

.review-card p:last-child {
  color: var(--muted);
}

.reviews-actions {
  margin-top: 28px;
}

.ivory-panel,
.ivory-surface {
  color: var(--ink-dark);
}

.ivory-panel .section-label,
.ivory-surface .section-label {
  color: #6F6066;
}

.ivory-panel h2,
.ivory-surface h2,
.ivory-surface h3,
.ivory-panel h3 {
  color: var(--ink-dark);
}

.ivory-panel p,
.ivory-surface p {
  color: var(--muted-dark);
}

.ivory-panel {
  padding: clamp(28px, 5vw, 42px);
  background: linear-gradient(135deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.94));
  border: 1px solid rgba(247, 241, 244, 0.42);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.opening-card {
  min-height: 380px;
  padding: clamp(28px, 6vw, 70px);
  background: linear-gradient(90deg, rgba(36, 23, 29, 0.96), rgba(36, 23, 29, 0.82), rgba(36, 23, 29, 0.72));
}

.opening-card.text-only {
  background:
    linear-gradient(105deg, rgba(36, 23, 29, 0.98), rgba(36, 23, 29, 0.94), rgba(228, 90, 155, 0.18)),
    var(--charcoal);
}

.opening-card.ivory-surface,
.opening-card.text-only.ivory-surface {
  background: linear-gradient(135deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.96));
  border: 1px solid rgba(247, 241, 244, 0.48);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.opening-card.ivory-surface .button.primary,
.opening-card.text-only.ivory-surface .button.primary {
  color: #24171D;
}

.opening-card p {
  max-width: 660px;
  font-size: 1.12rem;
}

.partners {
  padding-top: 0;
  text-align: center;
}

.partners h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.partner-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(620px, 100%);
  max-width: 100%;
  margin: 34px auto 0;
  padding: 28px 32px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(36, 23, 29, 0.82), rgba(36, 23, 29, 0.52));
  border: 1px solid rgba(228, 90, 155, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(247, 241, 244, 0.03);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.partner-logo-slot:hover,
.partner-logo-slot:focus-visible {
  border-color: rgba(234, 213, 222, 0.4);
  background: linear-gradient(135deg, rgba(36, 23, 29, 0.9), rgba(36, 23, 29, 0.66));
  transform: translateY(-1px);
}

.partner-logo-slot img {
  width: min(470px, 100%);
  max-height: 150px;
  object-fit: contain;
}

.legal-page {
  max-width: 980px;
}

.legal-hero {
  min-height: 58svh;
}

.legal-actions {
  margin-top: 48px;
}

.legal-document {
  margin-top: 46px;
  padding: clamp(26px, 5vw, 54px);
  color: var(--ink);
  background: rgba(36, 23, 29, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-document h2,
.legal-document h3,
.legal-document h4 {
  color: var(--pink);
  line-height: 1.06;
}

.legal-document h2 {
  margin: 54px 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  margin: 38px 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-document h4 {
  margin: 26px 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-document p {
  max-width: 78ch;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.card h3,
.price-card h3,
.review-card h3,
.contact-card h3 {
  min-height: 2.55em;
  line-height: 1.12;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.faq p {
  margin: 16px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  background: var(--plum);
  border: 1px solid rgba(228, 90, 155, 0.62);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(228, 90, 155, 0.14);
}

.contact-panel a {
  color: var(--pink);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list div {
  padding: 18px;
  background: rgba(247, 241, 244, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-hub {
  display: grid;
  gap: 12px;
}

.hub-link {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  background: rgba(247, 241, 244, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-link:hover {
  transform: translateY(-2px);
  background: rgba(228, 90, 155, 0.1);
  border-color: rgba(228, 90, 155, 0.72);
}

.hub-link span {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-link strong {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.05;
}

.hub-link.featured {
  background: var(--pink);
  color: #24171D;
  border-color: var(--pink);
  box-shadow: 0 0 32px rgba(228, 90, 155, 0.24);
}

.hub-link.featured:hover,
.hub-link.featured:focus-visible {
  background: #EAD5DE;
  border-color: #EAD5DE;
  box-shadow: 0 0 34px rgba(234, 213, 222, 0.38);
}

.hub-link.featured span,
.hub-link.featured strong {
  color: #24171D;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
  align-items: stretch;
}

.schedule-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(36, 23, 29, 0.98), rgba(36, 23, 29, 0.92)),
    var(--charcoal);
  border: 1px solid rgba(228, 90, 155, 0.34);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(228, 90, 155, 0.12);
}

.schedule-stack {
  display: grid;
  gap: 12px;
}

.schedule-intro {
  padding-top: 0;
  padding-bottom: 28px;
}

.schedule-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.schedule-story,
.schedule-app-card {
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.schedule-story {
  background:
    radial-gradient(circle at top right, rgba(228, 90, 155, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(36, 23, 29, 0.96), rgba(36, 23, 29, 0.82));
}

.schedule-story-app {
  padding: 0;
  overflow: hidden;
}

.schedule-story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.schedule-story-copy {
  padding: clamp(28px, 4vw, 42px);
  min-width: 0;
}

.schedule-story .section-lead {
  max-width: 60ch;
}

.schedule-story-visual {
  margin: 0;
  min-height: 100%;
  background: #24171D;
}

.schedule-story-visual-home {
  background-image: none;
}

.schedule-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.schedule-points div {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(36, 23, 29, 0.44);
  border: 1px solid rgba(247, 241, 244, 0.12);
  border-radius: 8px;
}

.schedule-points strong {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.schedule-points span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.schedule-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.schedule-link-box {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(247, 241, 244, 0.04);
  border: 1px solid rgba(247, 241, 244, 0.12);
  border-radius: 8px;
}

.schedule-link-box span {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-link-box strong {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.schedule-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-tags li {
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(247, 241, 244, 0.05);
  border: 1px solid rgba(247, 241, 244, 0.12);
  border-radius: 999px;
}

.schedule-stack-compact {
  max-width: 720px;
  margin: 0 auto;
}

.schedule-note {
  min-height: 0;
  padding: 26px;
}

.schedule-note h3 {
  min-height: 0;
}

.schedule-note p {
  margin-bottom: 0;
}

.schedule-frame {
  overflow: hidden;
  background: rgba(36, 23, 29, 0.78);
  border: 1px solid rgba(228, 90, 155, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.schedule-frame iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: transparent;
}

.current-schedule {
  padding: clamp(18px, 3vw, 30px);
}

.schedule-toolbar {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
}

.schedule-toolbar > div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.schedule-toolbar span {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-toolbar strong {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.schedule-toolbar button,
.schedule-today {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  background: rgba(247, 241, 244, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.schedule-toolbar button {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.schedule-toolbar button:hover,
.schedule-toolbar button:focus-visible,
.schedule-today:hover,
.schedule-today:focus-visible {
  color: var(--pink);
  background: rgba(228, 90, 155, 0.1);
  border-color: var(--pink);
}

.schedule-today {
  display: block;
  min-height: 40px;
  margin: 16px auto 0;
  padding: 0 16px;
}

.schedule-today[hidden] {
  display: none;
}

.schedule-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.schedule-swipe-hint {
  display: none;
}

.schedule-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px 18px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.schedule-status.is-error {
  color: var(--pink-hot);
}

.schedule-day {
  min-width: 0;
  padding: 10px;
  background: rgba(247, 241, 244, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.schedule-day.is-today {
  background: rgba(228, 90, 155, 0.08);
  border-color: rgba(228, 90, 155, 0.72);
}

.schedule-day-heading {
  display: grid;
  gap: 2px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--line);
}

.schedule-day-heading strong {
  overflow: hidden;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.schedule-day-heading span {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
}

.schedule-event {
  margin-top: 10px;
  padding: 12px;
  background: var(--charcoal);
  border: 1px solid rgba(247, 241, 244, 0.12);
  border-radius: 6px;
}

.schedule-event.is-past {
  opacity: 1;
}

.schedule-event-time {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.86rem;
}

.schedule-event h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.12;
}

.schedule-event > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-event-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.schedule-event-meta a {
  color: var(--pink);
  font-weight: 900;
}

.schedule-empty {
  margin: 16px 4px 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.schedule-embed-section {
  padding-top: 0;
}

/* Give framed sections breathing room where cards and surfaces stack too tightly. */
.local-seo + .schedule-intro {
  padding-top: 36px;
}

.dark + .single-photo {
  padding-top: 28px;
}

.single-photo + .dark {
  padding-top: 28px;
}

.section + .partners {
  padding-top: 44px;
}

.schedule-intro + .schedule-embed-section {
  padding-top: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.2fr) auto;
  gap: 32px;
  align-items: end;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
}

.copyright {
  margin: 0;
}

.credit-link {
  color: var(--pink);
  font-weight: 900;
}

.credit-link:hover,
.credit-link:focus-visible {
  color: #EAD5DE;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .split,
  .contact-layout,
  .home-contact,
  .choice-grid,
  .home-trainer-grid,
  .pricing-choice-grid,
  .section-heading-row,
  .schedule-layout,
  .schedule-intro-grid,
  .schedule-app-layout,
  .site-footer,
  .price-group-header,
  .grid-3,
  .grid-4,
  .price-grid,
  .image-band,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    gap: 24px;
    align-items: start;
  }

  .home-trainer-card > img,
  .home-trainer-placeholder {
    height: 340px;
  }

  .price-group {
    margin-top: 34px;
    padding-top: 24px;
  }

  .price-group-header {
    gap: 14px;
    align-items: start;
  }

  .price-group-header h3 {
    font-size: 2rem;
  }

  .pass-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .schedule-points {
    grid-template-columns: 1fr;
  }

  .schedule-story-layout {
    grid-template-columns: 1fr;
  }

  .schedule-story-visual {
    min-height: 420px;
    background-position: center top;
  }

  .pass-price {
    justify-self: start;
  }

  .schedule-frame iframe {
    min-height: 680px;
  }

  .schedule-week-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 14px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--pink) rgba(247, 241, 244, 0.1);
    scrollbar-width: thin;
  }

  .schedule-day {
    flex: 0 0 min(82vw, 340px);
    padding: 14px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .schedule-status {
    flex: 0 0 100%;
  }

  .schedule-swipe-hint {
    display: block;
    margin: 18px 0 -8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
  }

  .schedule-week-grid::-webkit-scrollbar {
    height: 6px;
  }

  .schedule-week-grid::-webkit-scrollbar-track {
    background: rgba(247, 241, 244, 0.1);
    border-radius: 999px;
  }

  .schedule-week-grid::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 999px;
  }

  .schedule-event h3 {
    min-height: 0;
    font-size: 1.05rem;
  }

  .image-band img,
  .single-photo img,
  .split img,
  .gallery-grid img {
    height: 320px;
  }

  .gallery-grid img:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    margin-top: 10px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero-bg {
    object-position: 70% center;
  }

  .hero-content {
    padding: 132px 0 150px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .opening-strip {
    font-size: 1rem;
  }

  .opening-strip-track {
    gap: 28px;
    padding: 16px 0;
  }

  .section {
    padding: 72px 0;
  }

  .dark {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card,
  .price-card,
  .contact-card,
  .pricing-choice {
    min-height: 0;
  }

  .home-trainer-card > img,
  .home-trainer-placeholder {
    height: 300px;
  }

  .schedule-panel,
  .schedule-note {
    padding: 24px;
  }

  .schedule-frame iframe {
    min-height: 620px;
  }

  .card .number {
    margin-bottom: 24px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/* Uproszczenie wizualne: bez obrysów i drobnych etykiet. */
[hidden] {
  display: none !important;
}

.kicker,
.section-label,
.badge {
  display: none !important;
}

.hero-content > *,
.reveal-in,
.reveal-in.is-visible {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

body * {
  border-color: transparent !important;
}

body *::before,
body *::after {
  border-color: transparent !important;
}

.section,
.site-footer,
.price-group,
.schedule-event-heading {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.home-choice .choice-card::after {
  display: none;
}

.home-hero .button.ghost {
  color: #24171D;
  background: #FFFFFF;
  border: 0;
  box-shadow: 0 12px 30px rgba(36, 23, 29, 0.1);
}

.home-hero .button.ghost:hover,
.home-hero .button.ghost:focus-visible {
  color: #24171D;
  background: #FFFFFF;
  border: 0;
  transform: translateY(-2px);
}

.pricing-cta {
  display: grid;
  justify-items: start;
  max-width: 880px;
  gap: 24px;
}

.pricing-cta h2,
.pricing-cta p {
  margin: 0;
}

.pricing-cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.all-pricing-page {
  --ink: #24171D;
  --muted: #6F6066;
  --charcoal: rgba(247, 241, 244, 0.82);
  --plum: rgba(228, 90, 155, 0.12);
  color: var(--ink);
  background: #F7F1F4;
}

.all-pricing-page main {
  display: flex;
  flex-direction: column;
}

.all-pricing-page .page-hero {
  order: 0;
}

.all-pricing-page #bestrong {
  order: 1;
}

.all-pricing-page #personalne {
  order: 2;
}

.all-pricing-page .page-hero,
.all-pricing-page .pricing-page-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(228, 90, 155, 0.18), transparent 34%),
    linear-gradient(145deg, #F7F1F4, #EAD5DE);
}

.all-pricing-page .pricing-page-section {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
}

.all-pricing-page .pricing-page-bestrong {
  background:
    radial-gradient(circle at 12% 10%, rgba(228, 90, 155, 0.16), transparent 30%),
    linear-gradient(145deg, #EAD5DE, #F7F1F4);
}

.all-pricing-page .price-card,
.all-pricing-page .pass-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: rgba(247, 241, 244, 0.82);
  border: 0;
  box-shadow: 0 20px 46px rgba(36, 23, 29, 0.08);
}

.all-pricing-page .price-card {
  min-height: 390px;
}

.all-pricing-page .price-card.featured,
.all-pricing-page .pass-card.featured {
  background:
    radial-gradient(circle at 92% 8%, rgba(228, 90, 155, 0.2), transparent 38%),
    rgba(247, 241, 244, 0.92);
  box-shadow: 0 22px 50px rgba(228, 90, 155, 0.13);
}

.all-pricing-page .pass-card h3,
.all-pricing-page .pass-card p:not(.pass-price),
.all-pricing-page .pass-note {
  color: var(--ink);
}

.all-pricing-page .pass-card .pass-price {
  color: var(--pink);
}

.all-pricing-page .pass-note {
  padding: 0;
  border: 0;
}

.all-pricing-page .button.ghost {
  color: var(--ink);
  background: #FFFFFF;
  border: 0;
  box-shadow: 0 10px 26px rgba(36, 23, 29, 0.08);
}

.all-pricing-page .button.ghost:hover,
.all-pricing-page .button.ghost:focus-visible {
  color: var(--ink);
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .pricing-cta {
    gap: 20px;
  }

  .all-pricing-page .price-card {
    min-height: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-content > *,
  .reveal-in {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Jasna paleta 2026 — głównym tłem jest #F7F1F4. */
body::before {
  background-image:
    linear-gradient(rgba(36, 23, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 23, 29, 0.025) 1px, transparent 1px);
}

.site-header {
  background: rgba(247, 241, 244, 0.84);
}

.site-header.is-scrolled {
  background: rgba(247, 241, 244, 0.95);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(36, 23, 29, 0.12);
}

.home-hero,
.page-hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(228, 90, 155, 0.22), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(234, 213, 222, 0.72), transparent 38%),
    linear-gradient(135deg, #F7F1F4 0%, #EAD5DE 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 241, 244, 0.96), rgba(247, 241, 244, 0.74) 54%, rgba(228, 90, 155, 0.08)),
    linear-gradient(0deg, rgba(247, 241, 244, 0.96), rgba(247, 241, 244, 0.18) 52%, rgba(234, 213, 222, 0.7));
}

.dark {
  background: var(--ivory-soft);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--ink);
  border-color: var(--pink);
  background: rgba(228, 90, 155, 0.12);
}

.contact-list div,
.hub-link,
.schedule-link-box,
.schedule-tags li,
.schedule-toolbar button,
.schedule-today,
.schedule-day {
  background: rgba(36, 23, 29, 0.035);
  border-color: var(--line);
}

.pass-card,
.opening-card,
.opening-card.text-only,
.schedule-panel,
.schedule-story {
  background:
    radial-gradient(circle at top right, rgba(228, 90, 155, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.72));
}

.pass-card.featured {
  background:
    radial-gradient(circle at top right, rgba(228, 90, 155, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.9));
}

.schedule-story-visual,
.schedule-frame {
  background: var(--ivory-soft);
}

.schedule-points div {
  background: rgba(185, 170, 177, 0.22);
  border-color: var(--line);
}

.schedule-event {
  border-color: var(--line);
}

@media (max-width: 920px) {
  .main-nav {
    background: rgba(247, 241, 244, 0.98);
  }
}

@media (max-width: 640px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(247, 241, 244, 0.97), rgba(247, 241, 244, 0.72)),
      linear-gradient(0deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.44));
  }
}

/* Kontrastowe sekcje porządkują jasną paletę i zapobiegają zlewaniu się kart. */
.dark {
  --ink: #F7F1F4;
  --muted: #B9AAB1;
  --line: transparent;
  --charcoal: rgba(247, 241, 244, 0.07);
  --plum: rgba(228, 90, 155, 0.15);
  color: var(--ink);
  background: #24171D;
}

.dark .schedule-frame,
.dark .schedule-toolbar button,
.dark .schedule-today,
.dark .schedule-day {
  background: rgba(247, 241, 244, 0.045);
  border-color: var(--line);
}

.dark .schedule-day.is-today {
  background: rgba(228, 90, 155, 0.12);
  border-color: var(--pink);
}

.dark .schedule-event,
.dark .pricing-choice {
  background: var(--charcoal);
  border-color: var(--line);
}

.dark .pricing-choice.featured {
  background: var(--plum);
  border-color: rgba(228, 90, 155, 0.68);
}

.dark .button.ghost:hover,
.dark .button.ghost:focus-visible {
  color: var(--ivory);
  border-color: var(--pink);
  background: rgba(228, 90, 155, 0.16);
}

/* Nawigacja: kapsuła na desktopie i dolny dock na telefonie. */
.site-header {
  width: min(var(--max), calc(100% - 32px));
  padding: 8px 10px 8px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(36, 23, 29, 0.1);
}

.main-nav {
  gap: 4px;
}

.main-nav a:not(.nav-cta) {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible,
.main-nav a:not(.nav-cta)[aria-current="page"] {
  color: var(--pink);
  background: rgba(228, 90, 155, 0.09);
}

.nav-cta {
  min-height: 44px;
  border-radius: 999px;
}

@media (max-width: 920px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .site-header,
  .site-header.is-scrolled {
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 60;
    width: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand {
    min-height: 48px;
    padding: 0 18px;
    color: #24171D;
    background: rgba(247, 241, 244, 0.94);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(36, 23, 29, 0.12);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    align-items: stretch;
    padding: 8px;
    color: #6F6066;
    background: rgba(247, 241, 244, 0.96);
    border: 1px solid transparent;
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(36, 23, 29, 0.2);
    backdrop-filter: blur(20px);
  }

  .main-nav a,
  .main-nav a:not(.nav-cta),
  .main-nav .nav-cta {
    display: grid;
    min-width: 0;
    min-height: 52px;
    place-content: center;
    padding: 6px 3px;
    color: #6F6066;
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    font-size: 0;
    line-height: 1;
    text-align: center;
  }

  .main-nav a::before {
    content: "";
    width: 20px;
    height: 20px;
    margin: 0 auto 7px;
    background: currentColor;
    -webkit-mask: var(--dock-icon) center / contain no-repeat;
    mask: var(--dock-icon) center / contain no-repeat;
  }

  .main-nav a:nth-child(1) {
    --dock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7v10M18 7v10M3 10v4M21 10v4M6 12h12'/%3E%3C/svg%3E");
  }

  .main-nav a:nth-child(2) {
    --dock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  }

  .main-nav a:nth-child(3) {
    --dock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0M16 11l2 2 4-4'/%3E%3C/svg%3E");
  }

  .main-nav a:nth-child(4) {
    --dock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3.83V3H4v7h.83l9.58 9.59a2 2 0 0 0 2.82 0l3.36-3.36a2 2 0 0 0 0-2.82Z'/%3E%3Ccircle cx='7.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  }

  .main-nav a:nth-child(5) {
    --dock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
  }

  .main-nav a::after {
    color: currentColor;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: -0.01em;
  }

  .main-nav a:nth-child(1)::after { content: "1:1"; }
  .main-nav a:nth-child(2)::after { content: "BeStrong"; }
  .main-nav a:nth-child(3)::after { content: "Trenerki"; }
  .main-nav a:nth-child(4)::after { content: "Cennik"; }
  .main-nav a:nth-child(5)::after { content: "Kontakt"; }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a[aria-current="page"] {
    color: var(--pink);
    background: rgba(228, 90, 155, 0.09);
  }

  .main-nav .nav-cta,
  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible,
  .main-nav .nav-cta[aria-current="page"] {
    color: #24171D;
    background: var(--pink);
    transform: none;
  }

  .scroll-top {
    right: 16px;
    bottom: calc(94px + env(safe-area-inset-bottom));
  }
}

/* Jasnoróżowe sekcje grafiku i cennika na stronie głównej. */
.home-bestrong.dark,
.home-pricing.dark {
  --ink: #24171D;
  --muted: #6F6066;
  --line: transparent;
  --charcoal: rgba(247, 241, 244, 0.72);
  --plum: rgba(228, 90, 155, 0.12);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 4%, rgba(228, 90, 155, 0.22), transparent 34%),
    linear-gradient(135deg, #EAD5DE 0%, #F1DDE6 48%, #F7F1F4 100%);
}

.home-bestrong.dark h2,
.home-bestrong.dark h3,
.home-bestrong.dark .schedule-toolbar strong {
  color: var(--ink);
}

.home-bestrong.dark .schedule-frame,
.home-bestrong.dark .schedule-toolbar button,
.home-bestrong.dark .schedule-today,
.home-bestrong.dark .schedule-day {
  color: var(--ink);
  background: rgba(247, 241, 244, 0.7);
  border-color: var(--line);
}

.home-bestrong.dark .schedule-day.is-today {
  background: rgba(228, 90, 155, 0.12);
  border-color: var(--pink);
}

.home-bestrong.dark .schedule-event {
  color: var(--ink);
  background: rgba(247, 241, 244, 0.9);
  border-color: transparent;
}

.home-bestrong.dark .button.ghost {
  color: var(--ink);
  border-color: rgba(36, 23, 29, 0.28);
}

.home-bestrong.dark .button.ghost:hover,
.home-bestrong.dark .button.ghost:focus-visible {
  color: #F7F1F4;
  background: #24171D;
  border-color: #24171D;
}

/* Asymetryczne karty wyboru treningu. */
.home-choice .choice-grid {
  gap: 28px;
  align-items: stretch;
  padding: 8px 0 0;
}

.home-choice .choice-card {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.76));
  border: 1px solid transparent;
  border-radius: 56px 12px 56px 12px;
  box-shadow: 0 24px 60px rgba(36, 23, 29, 0.09);
}

.home-choice .choice-card::before {
  content: "01";
  position: absolute;
  top: -42px;
  right: 24px;
  z-index: -1;
  color: #24171D;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(9rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  opacity: 0.055;
}

.home-choice .choice-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 56px;
  width: 134px;
  height: 8px;
  background: var(--pink);
  transform: skewX(-34deg);
}

.home-choice .choice-card-featured {
  margin-top: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(228, 90, 155, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.92));
  border-color: rgba(228, 90, 155, 0.48);
  border-radius: 56px 12px 56px 12px;
}

.home-choice .choice-card-featured::before {
  content: "02";
  right: 24px;
  left: auto;
  color: var(--pink);
  opacity: 0.1;
}

.home-choice .choice-card-featured::after {
  right: 56px;
  left: auto;
  transform: skewX(-34deg);
}

.home-choice .choice-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 470px;
  padding: clamp(30px, 4vw, 48px);
}

.home-choice .choice-card-copy .badge {
  align-self: flex-start;
  padding: 8px 12px;
  background: rgba(247, 241, 244, 0.78);
  border: 1px solid rgba(228, 90, 155, 0.22);
  border-radius: 999px;
}

.home-choice .choice-card-copy h3 {
  margin-top: auto;
  max-width: 11ch;
  letter-spacing: -0.055em;
}

.home-choice .choice-card-copy p:not(.badge) {
  max-width: 620px;
}

.home-choice .choice-card-copy .hero-actions {
  margin-top: 26px;
}

@media (max-width: 920px) {
  .home-choice .choice-grid {
    gap: 20px;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .home-choice .choice-card,
  .home-choice .choice-card-featured {
    min-height: 450px;
    border-radius: 42px 10px 42px 10px;
  }

  .home-choice .choice-card-copy {
    min-height: 450px;
    padding: 28px 24px;
  }

  .home-choice .choice-card::before {
    top: -20px;
    right: 18px;
    font-size: 8rem;
  }

  .home-choice .choice-card-featured::before {
    right: 18px;
    left: auto;
  }
}

/* Wyraźne, ale lekkie oddzielenie dnia od listy zajęć. */
.schedule-day-heading {
  margin: -2px -2px 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #FCECF4 0%, #FFFFFF 82%);
  border: 0 !important;
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 10px 24px rgba(228, 90, 155, 0.1);
}

.schedule-event {
  margin-top: 0;
}

.schedule-event + .schedule-event {
  margin-top: 12px;
}

.schedule-day.is-today .schedule-day-heading {
  background: linear-gradient(135deg, rgba(228, 90, 155, 0.24), #FFFFFF 82%);
  box-shadow: 0 12px 26px rgba(228, 90, 155, 0.16);
}

/* Zwarty hero na stronie grafiku — bez pustej przestrzeni przed treścią. */
.schedule-page .page-hero {
  min-height: 0;
}

.schedule-page .page-hero .hero-content {
  padding-top: 156px;
  padding-bottom: 52px;
}

.schedule-page .schedule-story .button.primary:hover,
.schedule-page .schedule-story .button.primary:focus-visible {
  color: var(--ink);
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(36, 23, 29, 0.1);
}

.schedule-page .schedule-points div {
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(36, 23, 29, 0.06);
}

.schedule-page .schedule-visit-section {
  padding-top: 32px;
  padding-bottom: 64px;
}

.schedule-visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 34px 10px 34px 10px;
  box-shadow: 0 24px 54px rgba(36, 23, 29, 0.1);
}

.schedule-visit-action,
.schedule-visit-address {
  min-height: 330px;
  padding: clamp(30px, 5vw, 56px);
}

.schedule-visit-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--pink);
  transition: background 180ms ease;
}

.schedule-visit-action:hover,
.schedule-visit-action:focus-visible {
  background: #FFFFFF;
}

.schedule-visit-action h2,
.schedule-visit-address h2 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.schedule-visit-action strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
}

.schedule-visit-address {
  background:
    radial-gradient(circle at 92% 8%, rgba(228, 90, 155, 0.14), transparent 34%),
    #FFFFFF;
}

.schedule-visit-address address {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.08;
}

.schedule-visit-address p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Jaśniejsze powierzchnie — biel zamiast przygaszonej szarości. */
.home-choice .choice-card,
.home-trainer-card,
.contact-list div,
.hub-link,
.schedule-link-box,
.schedule-tags li,
.schedule-toolbar button,
.schedule-today,
.schedule-day,
.schedule-event,
.all-pricing-page .price-card,
.all-pricing-page .pass-card {
  background: #FFFFFF;
}

.home-choice .choice-card:not(.choice-card-featured) {
  background:
    radial-gradient(circle at 90% 7%, rgba(228, 90, 155, 0.18), transparent 25%),
    #FFFFFF;
}

.home-choice .choice-card-featured,
.home-choice .choice-card-featured:hover,
.home-choice .choice-card-featured:focus-within {
  background:
    radial-gradient(circle at 88% 10%, rgba(228, 90, 155, 0.2), transparent 34%),
    #FCECF4;
}

.home-bestrong.dark .schedule-day {
  background: #FFFFFF;
}

.home-bestrong.dark .schedule-day.is-today {
  background: #FCECF4;
}

.home-bestrong.dark .schedule-event,
.schedule-page .schedule-points div {
  background: #FFFFFF;
}

@media (max-width: 920px) {
  .schedule-visit-panel {
    grid-template-columns: 1fr;
  }

  .schedule-visit-action,
  .schedule-visit-address {
    min-height: 0;
  }

  .schedule-visit-action {
    gap: 54px;
  }
}

@media (max-width: 640px) {
  .schedule-page .page-hero .hero-content {
    padding-top: 126px;
    padding-bottom: 38px;
  }

  .schedule-visit-panel {
    grid-template-columns: 1fr;
    border-radius: 28px 8px 28px 8px;
  }

  .schedule-visit-action,
  .schedule-visit-address {
    min-height: 0;
    padding: 30px 24px;
  }

  .schedule-visit-action {
    gap: 54px;
  }
}

/* Prywatna oferta partnerska: Zapolski × Be Strong. */
.partner-offer-page .kicker,
.partner-offer-page .section-label {
  display: block !important;
}

.partner-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  min-height: 92svh;
  padding: 164px max(16px, calc((100vw - var(--max)) / 2)) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(228, 90, 155, 0.32), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #F7F1F4 0%, #EAD5DE 100%);
}

.partner-hero::after {
  content: "PARTNERSTWO";
  position: absolute;
  right: -0.04em;
  bottom: -0.2em;
  z-index: -1;
  color: rgba(228, 90, 155, 0.1);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(5.5rem, 15vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.partner-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.partner-hero-copy h1 span {
  display: inline;
}

.partner-hero-copy .partner-x {
  margin: 0 0.12em;
  color: var(--pink);
}

.partner-value {
  padding: clamp(28px, 4vw, 46px);
  color: #F7F1F4;
  background: #24171D;
  border-radius: 48px 8px 48px 8px;
  box-shadow: 0 28px 70px rgba(36, 23, 29, 0.18);
}

.partner-value span,
.partner-term-note span {
  display: block;
  margin-bottom: 18px;
  color: #E45A9B;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-value strong {
  display: block;
  margin-bottom: 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.9;
}

.partner-value p,
.partner-term-note p {
  margin-bottom: 0;
  color: #B9AAB1;
  font-weight: 600;
}

.partner-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

.partner-intro h2 {
  font-size: clamp(2.6rem, 5.5vw, 5.3rem);
}

.partner-intro-copy {
  padding-top: 36px;
}

.partner-intro-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.partner-exchange .section-heading-copy {
  color: #B9AAB1;
  font-weight: 600;
}

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

.partner-side {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(247, 241, 244, 0.065);
  border-radius: 8px 46px 8px 46px;
}

.partner-side-featured {
  background: rgba(228, 90, 155, 0.16);
  border-radius: 46px 8px 46px 8px;
}

.partner-side-label {
  margin-bottom: 14px;
  color: #E45A9B !important;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-side h3 {
  margin-bottom: 36px;
  color: #F7F1F4;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.partner-benefit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-benefit-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(247, 241, 244, 0.16) !important;
}

.partner-benefit-list li > span {
  color: #E45A9B;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.partner-benefit-list strong {
  color: #F7F1F4;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
}

.partner-benefit-list p {
  margin: 6px 0 0;
  color: #B9AAB1;
  font-weight: 600;
}

.partner-terms {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.partner-term-number {
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.09em;
}

.partner-term-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.partner-term-copy > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-weight: 600;
}

.partner-term-note {
  padding: 30px;
  color: #F7F1F4;
  background: #24171D;
  border-radius: 8px 34px 8px 34px;
}

.partner-term-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.partner-cta {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 88% 12%, rgba(228, 90, 155, 0.24), transparent 30%),
    #EAD5DE;
}

.partner-cta h2 {
  max-width: 940px;
}

.partner-cta > p:not(.section-label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

@media (max-width: 920px) {
  .partner-hero,
  .partner-intro,
  .partner-side-grid,
  .partner-terms {
    grid-template-columns: 1fr;
  }

  .partner-hero {
    min-height: 0;
    padding-top: 142px;
  }

  .partner-value {
    max-width: 560px;
  }

  .partner-intro-copy {
    padding-top: 0;
  }

  .partner-term-number {
    margin-bottom: -18px;
  }

  .partner-offer-page .main-nav a:nth-child(1)::after { content: "Oferta"; }
  .partner-offer-page .main-nav a:nth-child(2)::after { content: "Zakres"; }
  .partner-offer-page .main-nav a:nth-child(3)::after { content: "12 mies."; }
  .partner-offer-page .main-nav a:nth-child(4)::after { content: "Kontakt"; }
}

@media (max-width: 640px) {
  .partner-hero {
    padding-bottom: 68px;
  }

  .partner-hero-copy h1 span {
    display: block;
  }

  .partner-hero-copy .partner-x {
    margin: 0;
  }

  .partner-value,
  .partner-side,
  .partner-side-featured {
    border-radius: 30px 8px 30px 8px;
  }

  .partner-side-grid {
    gap: 14px;
  }

  .partner-benefit-list li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }
}
