:root {
  --bg: #080707;
  --bg-soft: #120f11;
  --ink: #fff7fb;
  --ink-dark: #1c1519;
  --muted: #d7c4ce;
  --muted-dark: rgba(28, 21, 25, 0.72);
  --line: rgba(255, 247, 251, 0.16);
  --pink: #ff2f9f;
  --pink-hot: #ff74c7;
  --plum: #2a101d;
  --charcoal: #171416;
  --ivory: #f3ede8;
  --ivory-soft: #ebe2db;
  --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(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 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,
.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,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 196, 228, 0.56);
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(255, 47, 159, 0.16);
  backdrop-filter: blur(4px);
}

.site-cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 47, 159, 0.42);
}

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

.site-cursor.is-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 47, 159, 0.72);
  background: rgba(255, 47, 159, 0.08);
  box-shadow: 0 0 36px rgba(255, 47, 159, 0.22);
}

.site-cursor-dot.is-hover {
  background: #ffc4e4;
}

.site-cursor.is-active {
  width: 28px;
  height: 28px;
}

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

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #160b11;
  background: var(--pink);
  border: 1px solid rgba(255, 47, 159, 0.8);
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(255, 47, 159, 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: #ffc4e4;
  box-shadow: 0 0 34px rgba(255, 196, 228, 0.38);
}

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

.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(8, 7, 7, 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(8, 7, 7, 0.9);
  border-color: rgba(255, 247, 251, 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: #160b11;
  box-shadow: 0 0 28px rgba(255, 47, 159, 0.34);
  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: #160b11;
  background: #ffc4e4;
  box-shadow: 0 0 34px rgba(255, 196, 228, 0.42);
  transform: translateY(-1px);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: #160b11;
  background: #ffc4e4;
}

.button.ghost {
  border: 1px solid rgba(255, 247, 251, 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: #ffc4e4;
  border-color: #ffc4e4;
  background: rgba(255, 196, 228, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.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(255, 47, 159, 0.22), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(255, 116, 199, 0.12), transparent 34%),
    linear-gradient(135deg, #080707 0%, #120f11 52%, #2a101d 100%);
}

.page-hero {
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 47, 159, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 116, 199, 0.09), transparent 34%),
    linear-gradient(135deg, #080707 0%, #120f11 58%, #2a101d 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(8, 7, 7, 0.97) 0%, rgba(8, 7, 7, 0.78) 42%, rgba(255, 47, 159, 0.08) 70%, rgba(8, 7, 7, 0.78) 100%),
    linear-gradient(0deg, rgba(8, 7, 7, 0.98) 0%, rgba(8, 7, 7, 0.08) 42%, rgba(8, 7, 7, 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(--pink);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 900;
  text-shadow: 0 0 38px rgba(255, 47, 159, 0.28);
}

h1 span {
  display: block;
}

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

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: 70px;
}

.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(255, 247, 251, 0.05);
  border: 1px solid rgba(255, 247, 251, 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: #ffc4e4;
  background: rgba(255, 47, 159, 0.08);
  border-color: rgba(255, 116, 199, 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: #170d13;
  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: #170d13;
}

.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(23, 13, 19, 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;
}

.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(255, 47, 159, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 47, 159, 0.16), 0 0 36px rgba(255, 47, 159, 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(8, 7, 7, 0.98), rgba(23, 20, 22, 0.96) 52%, rgba(255, 47, 159, 0.18)),
    var(--charcoal);
  border: 2px solid var(--pink);
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(255, 47, 159, 0.12);
}

.pass-card.featured {
  background:
    linear-gradient(105deg, rgba(8, 7, 7, 0.98), rgba(42, 16, 29, 0.96) 52%, rgba(255, 47, 159, 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(255, 47, 159, 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: #b45584;
}

.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(243, 237, 232, 0.98), rgba(235, 226, 219, 0.94));
  border: 1px solid rgba(243, 237, 232, 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(18, 15, 17, 0.96), rgba(42, 16, 29, 0.82), rgba(18, 15, 17, 0.72)),
    url("assets/sanderka-barbell.jpg") center right / cover;
}

.opening-card.text-only {
  background:
    linear-gradient(105deg, rgba(18, 15, 17, 0.98), rgba(42, 16, 29, 0.94), rgba(255, 47, 159, 0.18)),
    var(--charcoal);
}

.opening-card.ivory-surface,
.opening-card.text-only.ivory-surface {
  background: linear-gradient(135deg, rgba(243, 237, 232, 0.98), rgba(231, 220, 214, 0.96));
  border: 1px solid rgba(243, 237, 232, 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: #1a1016;
}

.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(18, 15, 17, 0.82), rgba(42, 16, 29, 0.52));
  border: 1px solid rgba(255, 47, 159, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 251, 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(255, 116, 199, 0.4);
  background: linear-gradient(135deg, rgba(18, 15, 17, 0.9), rgba(42, 16, 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(8, 7, 7, 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(255, 47, 159, 0.62);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(255, 47, 159, 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(255, 247, 251, 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(255, 247, 251, 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(255, 47, 159, 0.1);
  border-color: rgba(255, 47, 159, 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: #160b11;
  border-color: var(--pink);
  box-shadow: 0 0 32px rgba(255, 47, 159, 0.24);
}

.hub-link.featured:hover,
.hub-link.featured:focus-visible {
  background: #ffc4e4;
  border-color: #ffc4e4;
  box-shadow: 0 0 34px rgba(255, 196, 228, 0.38);
}

.hub-link.featured span,
.hub-link.featured strong {
  color: #160b11;
}

.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(18, 15, 17, 0.98), rgba(42, 16, 29, 0.92)),
    var(--charcoal);
  border: 1px solid rgba(255, 47, 159, 0.34);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(255, 47, 159, 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(255, 47, 159, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(18, 15, 17, 0.96), rgba(42, 16, 29, 0.82));
}

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

.schedule-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  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:
    radial-gradient(circle at 88% 82%, rgba(255, 47, 159, 0.22), transparent 26%),
    url("assets/bestrong-app.png") left center / cover no-repeat,
    #050505;
}

.schedule-story-visual-home {
  background-image:
    radial-gradient(circle at 88% 82%, rgba(255, 47, 159, 0.22), transparent 26%),
    url("assets/bestrong-app.png");
}

.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(8, 7, 7, 0.44);
  border: 1px solid rgba(255, 247, 251, 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(255, 247, 251, 0.04);
  border: 1px solid rgba(255, 247, 251, 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(255, 247, 251, 0.05);
  border: 1px solid rgba(255, 247, 251, 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(8, 7, 7, 0.78);
  border: 1px solid rgba(255, 47, 159, 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;
}

.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: #ffc4e4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 7, 7, 0.96);
    border: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .split,
  .contact-layout,
  .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;
  }

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

  .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 {
    min-height: 0;
  }

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

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

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

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

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

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