: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-strong: #E45A9B;
  --plum: rgba(228, 90, 155, 0.14);
  --charcoal: rgba(185, 170, 177, 0.22);
  --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.34;
  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;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--pink);
}

.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;
  letter-spacing: 0;
}

.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 {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  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.96) 0%, rgba(36, 23, 29, 0.78) 38%, rgba(228, 90, 155, 0.08) 66%, rgba(36, 23, 29, 0.74) 100%),
    linear-gradient(0deg, rgba(36, 23, 29, 0.98) 0%, rgba(36, 23, 29, 0.08) 38%, rgba(36, 23, 29, 0.72) 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;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  font-weight: 600;
}

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

.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;
}

.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: 104px 0;
}

.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);
}

.intro-grid,
.method-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

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

.intro p,
.method-head p,
.section-lead,
.opening-card p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 600;
}

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

.effect-grid,
.info-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

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

.effect-grid article,
.info-grid article {
  min-height: 220px;
  padding: 22px;
}

.effect-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--pink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

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

article p,
.price-card p,
.faq p {
  color: var(--muted);
}

.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(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.review-card {
  min-height: 300px;
  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);
}

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

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

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

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

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

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

.trainer-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.trainer-card img {
  object-fit: cover;
  object-position: center 22%;
}

.trainer-card img.klaudia-photo {
  object-position: center 18%;
}

.trainer-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(228, 90, 155, 0.32), rgba(234, 213, 222, 0.08)),
    var(--plum);
  color: var(--pink-strong);
  font-family: Inter, system-ui, sans-serif;
  font-size: 6rem;
  font-weight: 900;
}

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

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

.trainer-bio h3 {
  color: var(--pink);
}

.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;
}

.first-time {
  text-align: center;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
}

.bestrong-pricing .section-lead {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

.price-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.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

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

.price-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);
}

.app-showcase {
  padding-top: 0;
}

.app-showcase-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 28%, rgba(228, 90, 155, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(36, 23, 29, 0.96), rgba(36, 23, 29, 0.82));
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.app-showcase-copy p {
  max-width: 60ch;
}

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

.app-effect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

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

.effect-grid h3,
.info-grid h3,
.trainer-card h3,
.review-card h3 {
  min-height: 2.55em;
  line-height: 1.12;
}

.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-strong);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

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

.location {
  padding-top: 88px;
  padding-bottom: 88px;
}

.opening-card {
  min-height: 420px;
  padding: clamp(28px, 6vw, 70px);
  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 h2 {
  max-width: 900px;
}

.opening-card p {
  max-width: 660px;
}

.opening-card.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 {
  color: #24171D;
}

.faq {
  padding-top: 40px;
}

.intro + .app-showcase {
  padding-top: 36px;
}

.location + .faq {
  padding-top: 56px;
}

.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;
}

.planning-placeholder {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(100%, 980px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
  background: var(--charcoal);
  border: 1px dashed rgba(228, 90, 155, 0.72);
  border-radius: 8px;
}

.planning-placeholder.ivory-outline {
  background: linear-gradient(135deg, rgba(247, 241, 244, 0.98), rgba(234, 213, 222, 0.94));
  border: 1px solid rgba(247, 241, 244, 0.52);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.planning h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.planning-placeholder.ivory-outline p {
  color: rgba(52, 31, 42, 0.82);
}

.planning-placeholder.ivory-outline .button.primary {
  color: #24171D;
}

.planning-placeholder.ivory-outline .button.ghost {
  color: #6F6066;
  border-color: rgba(52, 31, 42, 0.16);
  background: rgba(255, 255, 255, 0.28);
}

.planning-placeholder.ivory-outline .button.ghost:hover,
.planning-placeholder.ivory-outline .button.ghost:focus-visible {
  color: #24171D;
  border-color: rgba(52, 31, 42, 0.34);
  background: rgba(255, 255, 255, 0.48);
}

.planning-placeholder p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 700;
}

.planning-widget {
  overflow: hidden;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-radius: 8px;
}

.planning-widget iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
  background: transparent;
}

.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) {
  .intro-grid,
  .app-showcase-layout,
  .method-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .effect-grid,
  .info-grid,
  .price-grid,
  .gallery-grid,
  .testimonial-grid,
  .pass-card,
  .trainer-grid {
    grid-template-columns: 1fr;
  }

  .pass-card {
    min-height: 0;
  }

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

  .gallery-grid img,
  .trainer-card img,
  .trainer-placeholder {
    height: 300px;
  }

  .trainer-card {
    min-height: 0;
  }

  .app-showcase-visual {
    min-height: 420px;
    background-position: center top;
  }

  .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-overlay {
    background:
      linear-gradient(90deg, rgba(36, 23, 29, 0.96), rgba(36, 23, 29, 0.72)),
      linear-gradient(0deg, rgba(36, 23, 29, 0.98), rgba(36, 23, 29, 0.18) 55%, rgba(36, 23, 29, 0.82));
  }

  .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%;
  }

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

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

  .section {
    padding: 72px 0;
  }

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

  .effect-grid article,
  .info-grid article {
    min-height: 0;
  }

  .effect-grid span {
    margin-bottom: 24px;
  }
}

/* Spójne uproszczenie całego serwisu. */
[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 *,
body *::before,
body *::after {
  border-color: transparent !important;
}

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

@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);
}

.hero {
  background:
    radial-gradient(circle at 76% 26%, rgba(228, 90, 155, 0.22), transparent 34%),
    radial-gradient(circle at 18% 82%, 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);
}

.pass-card,
.opening-card,
.app-showcase-layout {
  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));
}

.app-showcase-visual {
  background: var(--ivory-soft);
}

.question-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(228, 90, 155, 0.1);
  border: 1px solid rgba(228, 90, 155, 0.36);
  border-radius: 999px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.question-cta strong {
  color: var(--pink);
}

.question-cta:hover,
.question-cta:focus-visible {
  color: #24171D;
  background: var(--pink);
  transform: translateY(-2px);
}

.question-cta:hover strong,
.question-cta:focus-visible strong {
  color: inherit;
}

@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 .pass-card {
  background:
    radial-gradient(circle at top right, rgba(228, 90, 155, 0.15), transparent 34%),
    rgba(247, 241, 244, 0.07);
  border-color: var(--pink);
}

.dark .pass-card.featured {
  background:
    radial-gradient(circle at top right, rgba(228, 90, 155, 0.24), transparent 38%),
    rgba(228, 90, 155, 0.15);
}

/* 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));
  }
}
