body.fv-showcase-page {
  --sc-primary: #325de6;
  --sc-primary-dark: #1739a6;
  --sc-teal: #12b8a6;
  --sc-lime: #a3e635;
  --sc-sun: #f59e0b;
  --sc-ink: #111827;
  --sc-ink-soft: #374151;
  --sc-muted: #6b7280;
  --sc-line: #dfe6f2;
  --sc-page: #f4f7fb;
  --sc-card: #ffffff;
  --sc-dark: #111827;
  --sc-warm: #fff7ed;
  --sc-blue-soft: #eef4ff;
  --sc-mint-soft: #e9fbf7;
  --sc-star: #f5b942;
  --sc-radius: 18px;
  --sc-radius-lg: 28px;
  --sc-shadow: 0 18px 55px rgba(15, 23, 42, .11);
  --sc-shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
  --sc-container: 1180px;
  --sc-ease: cubic-bezier(.2, .8, .2, 1);

  margin: 0;
  padding: 0;
  background: var(--sc-page);
}

body.fv-showcase-page .main-header,
body.fv-showcase-page header.main-header,
body.fv-showcase-page .main-footer,
body.fv-showcase-page footer.main-footer,
body.fv-showcase-page .bottom-user-menu {
  display: none !important;
}

body.fv-showcase-page .main {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fv-sc {
  --sc-primary: #325de6;
  --sc-primary-dark: #1739a6;
  --sc-teal: #12b8a6;
  --sc-lime: #a3e635;
  --sc-sun: #f59e0b;
  --sc-ink: #111827;
  --sc-ink-soft: #374151;
  --sc-muted: #6b7280;
  --sc-line: #dfe6f2;
  --sc-page: #f4f7fb;
  --sc-card: #ffffff;
  --sc-dark: #111827;
  --sc-warm: #fff7ed;
  --sc-blue-soft: #eef4ff;
  --sc-mint-soft: #e9fbf7;
  --sc-star: #f5b942;
  --sc-radius: 18px;
  --sc-radius-lg: 28px;
  --sc-shadow: 0 18px 55px rgba(15, 23, 42, .11);
  --sc-shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
  --sc-container: 1180px;
  --sc-ease: cubic-bezier(.2, .8, .2, 1);

  min-height: 100vh;
  overflow-x: hidden;
  color: var(--sc-ink);
  background: var(--sc-page);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.fv-sc *,
.fv-sc *::before,
.fv-sc *::after {
  box-sizing: border-box;
}

.fv-sc img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.fv-sc a {
  color: inherit;
}

.fv-sc-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.fv-sc-container {
  width: min(100% - 32px, var(--sc-container));
  margin: 0 auto;
}

.fv-sc-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background .2s var(--sc-ease), color .2s var(--sc-ease), box-shadow .2s var(--sc-ease), border-color .2s var(--sc-ease);
}

.fv-sc-topbar.is-scrolled {
  background: rgba(255, 255, 255, .94);
  color: var(--sc-ink);
  border-bottom-color: rgba(229, 231, 235, .9);
  box-shadow: 0 10px 32px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.fv-sc-topbar__inner {
  width: min(100% - 32px, var(--sc-container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fv-sc-topbar__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: inherit !important;
}

.fv-sc-topbar__logo,
.fv-sc-topbar__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--sc-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
}

.fv-sc-topbar__logo {
  display: block;
  flex: 0 0 40px;
  padding: 5px;
  object-fit: contain;
}

.fv-sc-topbar__mark {
  background: linear-gradient(135deg, #ffffff 0%, var(--sc-blue-soft) 100%);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.fv-sc-topbar__name {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.fv-sc-topbar__nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.fv-sc-topbar__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: .85;
  color: inherit !important;
  transition: opacity .15s var(--sc-ease);
}

.fv-sc-topbar__link:hover {
  opacity: 1;
}

/* Active section in nav — soft pill that follows scroll position via JS. */
.fv-sc-topbar__link {
  position: relative;
  padding: 6px 12px;
  border-radius: 999px;
  transition: opacity .15s var(--sc-ease), background .25s var(--sc-ease), color .25s var(--sc-ease);
}

.fv-sc-topbar__link.is-active {
  opacity: 1;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
}

.fv-sc-topbar.is-scrolled .fv-sc-topbar__link.is-active {
  color: var(--sc-primary) !important;
  background: rgba(50, 93, 230, .12);
  backdrop-filter: none;
}

/* Coach placeholder — letter avatar when staff photo is missing. Avoids
   leaking the admin upload UI from the img() helper. */
.fv-sc-coach__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sc-blue-soft) 0%, var(--sc-mint-soft) 100%);
  color: var(--sc-primary);
  font-size: 64px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.fv-sc-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s var(--sc-ease), background .2s var(--sc-ease), color .2s var(--sc-ease), border-color .2s var(--sc-ease), box-shadow .2s var(--sc-ease);
}

.fv-sc-cta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.fv-sc-cta:hover {
  transform: translateY(-1px);
}

.fv-sc-cta--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.fv-sc-cta--lg {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.fv-sc-cta--xl {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
}

.fv-sc-cta--block {
  width: 100%;
}

.fv-sc-cta--solid {
  color: #ffffff !important;
  background: var(--sc-primary);
  box-shadow: 0 16px 34px rgba(50, 93, 230, .25);
}

.fv-sc-cta--solid:hover {
  background: var(--sc-primary-dark);
}

.fv-sc-cta--light {
  color: var(--sc-ink) !important;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.fv-sc-cta--ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.fv-sc-cta--outline {
  color: var(--sc-primary) !important;
  background: #ffffff;
  border-color: rgba(50, 93, 230, .22);
}

.fv-sc-topbar:not(.is-scrolled) .fv-sc-cta--solid {
  color: var(--sc-ink) !important;
  background: #ffffff;
  box-shadow: none;
}

body.fv-showcase-page .fv-sc-topbar:not(.is-scrolled) .fv-sc-cta.fv-sc-cta--solid,
body.fv-showcase-page .fv-sc-topbar:not(.is-scrolled) .fv-sc-cta.fv-sc-cta--solid:visited,
body.fv-showcase-page .fv-sc-topbar:not(.is-scrolled) .fv-sc-cta.fv-sc-cta--solid:hover,
body.fv-showcase-page .fv-sc-topbar:not(.is-scrolled) .fv-sc-cta.fv-sc-cta--solid:focus,
body.fv-showcase-page .fv-sc .fv-sc-cta.fv-sc-cta--light,
body.fv-showcase-page .fv-sc .fv-sc-cta.fv-sc-cta--light:visited,
body.fv-showcase-page .fv-sc .fv-sc-cta.fv-sc-cta--light:hover,
body.fv-showcase-page .fv-sc .fv-sc-cta.fv-sc-cta--light:focus {
  color: var(--sc-ink) !important;
}

body.fv-showcase-page .fv-sc-topbar.is-scrolled .fv-sc-cta.fv-sc-cta--solid,
body.fv-showcase-page .fv-sc-topbar.is-scrolled .fv-sc-cta.fv-sc-cta--solid:visited,
body.fv-showcase-page .fv-sc-topbar.is-scrolled .fv-sc-cta.fv-sc-cta--solid:hover,
body.fv-showcase-page .fv-sc-topbar.is-scrolled .fv-sc-cta.fv-sc-cta--solid:focus {
  color: #ffffff !important;
}

.fv-sc-hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 0 54px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  overflow: hidden;
  isolation: isolate;
}

.fv-sc-hero--has-image {
  background-image: var(--fv-sc-hero-image);
  background-position: center;
  background-size: cover;
}

.fv-sc-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, .86) 0%, rgba(3, 7, 18, .48) 46%, rgba(3, 7, 18, .3) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, .36) 0%, rgba(3, 7, 18, .16) 42%, rgba(3, 7, 18, .84) 100%);
}

.fv-sc-hero__content {
  width: min(100% - 36px, var(--sc-container));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.fv-sc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fv-sc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fv-sc-hero__title {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: 54px;
  line-height: .94;
  font-weight: 950;
  letter-spacing: 0;
}

.fv-sc-hero__subtitle {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.fv-sc-hero__meta,
.fv-sc-hero__meta span {
  display: flex;
  align-items: center;
}

.fv-sc-hero__meta {
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 800;
}

.fv-sc-hero__meta span {
  gap: 7px;
}

.fv-sc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

/* Reveal-on-scroll: keep sections visible by default (SEO + no-JS + screenshots)
   and only apply a subtle slide-in when the JS observer flags is-in-view. */
@media (prefers-reduced-motion: no-preference) {
  html.fv-sc-js-ready .fv-sc-quickbar:not(.is-in-view),
  html.fv-sc-js-ready .fv-sc-section:not(.is-in-view),
  html.fv-sc-js-ready .fv-sc-final:not(.is-in-view) {
    opacity: 0;
    transform: translateY(22px);
  }
  .fv-sc-quickbar,
  .fv-sc-section,
  .fv-sc-final {
    transition: opacity .65s var(--sc-ease), transform .65s var(--sc-ease);
  }
}

.fv-sc-quickbar {
  padding: 18px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--sc-blue-soft) 100%);
  border-bottom: 1px solid var(--sc-line);
}

.fv-sc-quickbar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fv-sc-quickbar__item {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(50, 93, 230, .1);
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  gap: 3px;
}

.fv-sc-quickbar__item span {
  color: var(--sc-muted);
  font-size: 12px;
  font-weight: 850;
}

.fv-sc-quickbar__item strong {
  color: var(--sc-ink);
  font-size: 15px;
  font-weight: 950;
}

.fv-sc-section {
  padding: 76px 0;
}

.fv-sc-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.fv-sc-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(50, 93, 230, .1);
  color: var(--sc-primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fv-sc-h2,
.fv-sc-final h2 {
  margin: 0;
  color: var(--sc-ink);
  font-size: 34px;
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: 0;
}

.fv-sc-accent-word {
  color: var(--sc-primary);
}

.fv-sc-prose {
  color: var(--sc-ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.fv-sc-prose p {
  margin: 0;
}

.fv-sc-prose p + p,
.fv-sc-prose p + .fv-sc-prose__checks,
.fv-sc-prose__checks + p,
.fv-sc-prose p + ul,
.fv-sc-prose p + ol,
.fv-sc-prose ul + p,
.fv-sc-prose ol + p,
.fv-sc-prose blockquote + p {
  margin-top: 18px;
}

.fv-sc-prose h2,
.fv-sc-prose h3 {
  margin: 24px 0 10px;
  color: var(--sc-ink);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.fv-sc-prose h2 {
  font-size: 24px;
}

.fv-sc-prose h3 {
  font-size: 20px;
}

.fv-sc-prose strong,
.fv-sc-prose b {
  color: var(--sc-ink);
  font-weight: 900;
}

.fv-sc-prose a {
  color: var(--sc-primary);
  font-weight: 900;
  text-decoration: none;
}

.fv-sc-prose a:hover {
  text-decoration: underline;
}

.fv-sc-prose ul:not(.fv-sc-prose__checks),
.fv-sc-prose ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--sc-ink);
}

.fv-sc-prose ul:not(.fv-sc-prose__checks) li,
.fv-sc-prose ol li {
  margin: 8px 0;
  padding-left: 4px;
}

.fv-sc-prose blockquote {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--sc-primary);
  border-radius: 0 18px 18px 0;
  background: var(--sc-blue-soft);
  color: var(--sc-ink);
  font-weight: 800;
}

.fv-sc-prose__checks {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px;
  border: 1px solid rgba(18, 184, 166, .22);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--sc-mint-soft) 100%);
  display: grid;
  gap: 10px;
}

.fv-sc-prose__checks li {
  position: relative;
  min-height: 30px;
  padding-left: 42px;
  color: var(--sc-ink);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 850;
}

.fv-sc-prose__checks li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sc-teal);
  box-shadow: 0 8px 18px rgba(18, 184, 166, .22);
}

.fv-sc-prose__checks li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 11px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.fv-sc-about {
  display: grid;
  gap: 28px;
}

.fv-sc-about__body {
  display: grid;
  gap: 24px;
}

.fv-sc-amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fv-sc-amenity {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(50, 93, 230, .14);
  border-radius: 14px;
  background: #ffffff;
  color: var(--sc-ink-soft);
  font-size: 14px;
  font-weight: 850;
}

.fv-sc-amenity svg {
  width: 17px;
  height: 17px;
  color: var(--sc-teal);
  flex: 0 0 17px;
}

.fv-sc-section--highlights {
  padding-top: 0;
}

.fv-sc-highlight-grid {
  display: grid;
  gap: 14px;
}

.fv-sc-highlight {
  padding: 22px;
  border: 1px solid var(--sc-line);
  border-radius: var(--sc-radius);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}

.fv-sc-highlight__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--sc-primary), var(--sc-teal));
}

.fv-sc-highlight:nth-child(2) .fv-sc-highlight__icon {
  background: linear-gradient(135deg, var(--sc-teal), var(--sc-lime));
}

.fv-sc-highlight:nth-child(3) .fv-sc-highlight__icon {
  background: linear-gradient(135deg, var(--sc-sun), var(--sc-primary));
}

.fv-sc-highlight h3,
.fv-sc-step h3,
.fv-sc-coach h3,
.fv-sc-pack h3 {
  margin: 0;
  color: var(--sc-ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
}

.fv-sc-highlight p,
.fv-sc-step p,
.fv-sc-coach p,
.fv-sc-pack p,
.fv-sc-muted {
  margin: 9px 0 0;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.fv-sc-section--experience {
  background: #ffffff;
}

.fv-sc-experience {
  display: grid;
  gap: 28px;
  align-items: start;
}

.fv-sc-steps {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.fv-sc-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--sc-line);
  border-radius: 18px;
  background: var(--sc-page);
}

.fv-sc-step > span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--sc-ink);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.fv-sc-schedule-card {
  padding: 22px;
  border-radius: var(--sc-radius-lg);
  background: var(--sc-dark);
  color: #ffffff;
  box-shadow: var(--sc-shadow);
}

.fv-sc-schedule-card__head {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.fv-sc-schedule-card__head span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fv-sc-schedule-card__head strong {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
}

.fv-sc-schedule-list {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.fv-sc-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fv-sc-schedule-row span {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 850;
}

.fv-sc-schedule-row strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-align: right;
}

.fv-sc-gallery {
  position: relative;
  display: grid;
  gap: 14px;
}

.fv-sc-gallery__stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--sc-radius-lg);
  background: #dbe5f3;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sc-shadow);
}

.fv-sc-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .35s var(--sc-ease), transform .5s var(--sc-ease);
  pointer-events: none;
}

.fv-sc-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fv-sc-gallery__slide img {
  height: 100%;
  object-fit: cover;
}

.fv-sc-gallery__controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.fv-sc-gallery__btn,
.fv-sc-gallery__count {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(17, 24, 39, .58);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.fv-sc-gallery__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s var(--sc-ease), background .2s var(--sc-ease);
}

.fv-sc-gallery__btn:hover {
  transform: translateY(-1px);
  background: rgba(17, 24, 39, .75);
}

.fv-sc-gallery__btn svg {
  width: 18px;
  height: 18px;
}

.fv-sc-gallery__count {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 950;
}

.fv-sc-gallery__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(84px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.fv-sc-gallery__thumb {
  min-width: 84px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #dbe5f3;
  cursor: pointer;
  opacity: .68;
  transition: opacity .2s var(--sc-ease), border-color .2s var(--sc-ease), transform .2s var(--sc-ease);
}

.fv-sc-gallery__thumb.is-active,
.fv-sc-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--sc-primary);
  transform: translateY(-1px);
}

.fv-sc-gallery__thumb img {
  height: 100%;
  object-fit: cover;
}

.fv-sc-section--team,
.fv-sc-section--reviews,
.fv-sc-section--faq {
  background: #ffffff;
}

.fv-sc-team,
.fv-sc-reviews,
.fv-sc-packs {
  display: grid;
  gap: 16px;
}

.fv-sc-coach,
.fv-sc-review,
.fv-sc-pack {
  border: 1px solid var(--sc-line);
  border-radius: var(--sc-radius-lg);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}

.fv-sc-coach__photo {
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
}

.fv-sc-coach__photo img {
  height: 100%;
  object-fit: cover;
}

.fv-sc-coach__body {
  padding: 20px;
}

.fv-sc-coach__role,
.fv-sc-coach__body span,
.fv-sc-pack__meta {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 183, 166, .12);
  color: #08786d;
  font-size: 12px;
  font-weight: 950;
}

.fv-sc-section--pricing {
  background: linear-gradient(135deg, #101827 0%, #172554 60%, #0f766e 100%);
  color: #ffffff;
}

.fv-sc-section--pricing .fv-sc-h2 {
  color: #ffffff;
}

.fv-sc-section--pricing .fv-sc-eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

.fv-sc-pack {
  position: relative;
  padding: 24px;
  color: var(--sc-ink);
}

.fv-sc-pack--featured {
  border-color: rgba(50, 93, 230, .42);
  box-shadow: 0 24px 70px rgba(50, 93, 230, .22);
}

.fv-sc-pack__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sc-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.fv-sc-pack__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 8px;
}

.fv-sc-pack__price strong {
  color: var(--sc-ink);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.fv-sc-pack__price span {
  color: var(--sc-muted);
  font-size: 15px;
  font-weight: 900;
}

.fv-sc-pack .fv-sc-cta {
  margin-top: 18px;
}

.fv-sc-rating-pill {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
}

.fv-sc-rating-pill strong {
  font-size: 24px;
  font-weight: 950;
}

.fv-sc-rating-pill span {
  color: var(--sc-muted);
  font-size: 13px;
  font-weight: 850;
}

.fv-sc-review {
  margin: 0;
  padding: 24px;
}

.fv-sc-review blockquote {
  margin: 0;
  color: var(--sc-ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.fv-sc-review figcaption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sc-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fv-sc-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--sc-star);
}

.fv-sc-stars svg {
  width: 15px;
  height: 15px;
}

.fv-sc-faq {
  display: grid;
  gap: 28px;
}

.fv-sc-faq__intro {
  padding: 24px;
  border: 1px solid rgba(50, 93, 230, .14);
  border-radius: var(--sc-radius-lg);
  background:
    linear-gradient(135deg, var(--sc-blue-soft) 0%, #ffffff 58%, var(--sc-mint-soft) 100%);
}

.fv-sc-faq__intro p {
  margin: 16px 0 18px;
  color: var(--sc-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.fv-sc-faq__list {
  display: grid;
  gap: 12px;
}

.fv-sc-faq__item {
  border: 1px solid rgba(50, 93, 230, .13);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
  transition: border-color .2s var(--sc-ease), box-shadow .2s var(--sc-ease);
}

.fv-sc-faq__item[open] {
  border-color: rgba(18, 184, 166, .34);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
}

.fv-sc-faq__item summary {
  position: relative;
  cursor: pointer;
  padding: 18px 58px 18px 20px;
  color: var(--sc-ink);
  font-size: 15px;
  font-weight: 950;
  list-style: none;
}

.fv-sc-faq__item summary::-webkit-details-marker {
  display: none;
}

.fv-sc-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sc-blue-soft);
  color: var(--sc-primary);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.fv-sc-faq__item[open] summary::after {
  content: "-";
  background: var(--sc-mint-soft);
  color: #04766b;
}

.fv-sc-faq__item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.fv-sc-contact {
  display: grid;
  gap: 16px;
}

.fv-sc-loc__info {
  padding: 24px;
  border-radius: var(--sc-radius-lg);
  background: #ffffff;
  border: 1px solid var(--sc-line);
  display: grid;
  gap: 18px;
}

.fv-sc-contact__head {
  display: grid;
  gap: 5px;
  padding-bottom: 2px;
}

.fv-sc-contact__head span {
  color: var(--sc-primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fv-sc-contact__head strong {
  color: var(--sc-ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 950;
}

.fv-sc-loc__row {
  display: grid;
  gap: 3px;
}

.fv-sc-loc__row span {
  color: var(--sc-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fv-sc-loc__row strong,
.fv-sc-loc__row a {
  color: var(--sc-ink);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.fv-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sc-primary);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.fv-sc-link svg {
  width: 15px;
  height: 15px;
}

.fv-sc-contact-form {
  position: relative;
  padding: 24px;
  border-radius: var(--sc-radius-lg);
  background: #ffffff;
  border: 1px solid rgba(50, 93, 230, .14);
  box-shadow: var(--sc-shadow-soft);
  display: grid;
  gap: 18px;
}

.fv-sc-contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.fv-sc-contact-form__head {
  display: grid;
  gap: 8px;
}

.fv-sc-contact-form__head .fv-sc-eyebrow {
  margin-bottom: 0;
}

.fv-sc-contact-form__head h3 {
  margin: 0;
  color: var(--sc-ink);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 950;
}

.fv-sc-contact-form__head p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.6;
}

.fv-sc-contact-form__grid {
  display: grid;
  gap: 14px;
}

.fv-sc-field {
  display: grid;
  gap: 7px;
}

.fv-sc-field span,
.fv-sc-check span {
  color: var(--sc-ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.fv-sc-field input,
.fv-sc-field textarea {
  width: 100%;
  border: 1px solid var(--sc-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--sc-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  transition: border-color .2s var(--sc-ease), box-shadow .2s var(--sc-ease), background .2s var(--sc-ease);
}

.fv-sc-field input {
  min-height: 48px;
  padding: 0 15px;
}

.fv-sc-field textarea {
  min-height: 128px;
  padding: 14px 15px;
  resize: vertical;
}

.fv-sc-field input:focus,
.fv-sc-field textarea:focus {
  border-color: rgba(50, 93, 230, .55);
  box-shadow: 0 0 0 4px rgba(50, 93, 230, .1);
  background: #fbfdff;
}

.fv-sc-field textarea::placeholder {
  color: #9aa5b8;
}

.fv-sc-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.fv-sc-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sc-primary);
}

.fv-sc-check span {
  color: var(--sc-muted);
  line-height: 1.55;
}

.fv-sc-contact-form__actions {
  display: grid;
  gap: 12px;
}

.fv-sc-contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.fv-sc-contact-feedback {
  min-height: 22px;
  color: var(--sc-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.fv-sc-contact-feedback.is-success {
  color: #047857;
}

.fv-sc-contact-feedback.is-error {
  color: #b42318;
}

.fv-sc-contact-feedback.is-loading {
  color: var(--sc-primary);
}

.fv-sc-loc__map {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--sc-radius-lg);
  border: 1px solid var(--sc-line);
  background: #e5e7eb;
  box-shadow: var(--sc-shadow-soft);
}

.fv-sc-loc__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.fv-sc-final {
  padding: 86px 0;
  background: linear-gradient(135deg, #111827 0%, #1739a6 58%, #12b8a6 100%);
  color: #ffffff;
  text-align: center;
}

.fv-sc-final .fv-sc-eyebrow {
  background: rgba(255, 255, 255, .16);
  color: #ffffff;
}

.fv-sc-final h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
}

.fv-sc-final p {
  max-width: 560px;
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.fv-sc-foot {
  padding: 32px 0 88px;
  background: #0b1120;
  color: rgba(255, 255, 255, .72);
}

.fv-sc-foot__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-sc-foot__brand,
.fv-sc-foot__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.fv-sc-foot__brand strong {
  color: #ffffff;
  font-weight: 950;
}

.fv-sc-foot__links a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

/* Mobile booking bar reserves space at the bottom of the page so the last
   content section never sits underneath it. */
body.fv-showcase-page .fv-sc {
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  body.fv-showcase-page .fv-sc {
    padding-bottom: 0;
  }
}

.fv-sc-mobile-book {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  min-height: 62px;
  padding: 10px 18px;
  border-radius: 22px;
  background: var(--sc-primary);
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(50, 93, 230, .36);
  text-decoration: none;
  display: grid;
  gap: 2px;
}

.fv-sc-mobile-book span {
  font-size: 12px;
  font-weight: 850;
  opacity: .82;
}

.fv-sc-mobile-book strong {
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer related-city link — subtle internal link that boosts SEO crawl
   graph (showcase -> /studios/{city} hub) and gives visitors an exit path. */
.fv-sc-foot__related {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.fv-sc-foot__related span {
  color: var(--sc-muted);
  font-weight: 600;
}
.fv-sc-foot__related a {
  color: var(--sc-primary);
  font-weight: 800;
  text-decoration: none;
  transition: color .15s var(--sc-ease);
}
.fv-sc-foot__related a:hover {
  color: var(--sc-primary-dark);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .fv-sc-quickbar,
  .fv-sc-section,
  .fv-sc-final,
  .fv-sc *,
  .fv-sc *::before,
  .fv-sc *::after {
    transition: none !important;
    animation: none !important;
  }

  .fv-sc-quickbar,
  .fv-sc-section,
  .fv-sc-final {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 640px) {
  .fv-sc-hero__title {
    font-size: 76px;
  }

  .fv-sc-hero__subtitle {
    font-size: 20px;
  }

  .fv-sc-h2,
  .fv-sc-final h2 {
    font-size: 46px;
  }

  .fv-sc-quickbar__grid,
  .fv-sc-highlight-grid,
  .fv-sc-team,
  .fv-sc-reviews,
  .fv-sc-packs,
  .fv-sc-contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fv-sc-amenity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .fv-sc-container,
  .fv-sc-topbar__inner,
  .fv-sc-hero__content {
    width: min(100% - 64px, var(--sc-container));
  }

  .fv-sc-topbar__nav {
    display: inline-flex;
  }

  .fv-sc-topbar__name {
    max-width: 230px;
  }

  .fv-sc-about,
  .fv-sc-experience,
  .fv-sc-faq {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 54px;
  }

  .fv-sc-contact {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 22px;
    align-items: start;
  }

  .fv-sc-contact-form {
    padding: 30px;
  }

  .fv-sc-contact-form__actions {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .fv-sc-loc__map {
    grid-column: 1 / -1;
  }

  .fv-sc-highlight-grid,
  .fv-sc-packs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fv-sc-team,
  .fv-sc-reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fv-sc-gallery__stage {
    aspect-ratio: 16 / 8.4;
  }

  .fv-sc-gallery__rail {
    grid-auto-columns: minmax(112px, 1fr);
  }

  .fv-sc-gallery__controls {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .fv-sc-loc__map,
  .fv-sc-loc__map iframe {
    min-height: 440px;
  }

  .fv-sc-foot {
    padding-bottom: 38px;
  }

  .fv-sc-foot__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .fv-sc-mobile-book {
    display: none;
  }
}

@media (min-width: 1024px) {
  .fv-sc-hero__title {
    font-size: 108px;
  }

  .fv-sc-hero__subtitle {
    font-size: 22px;
  }

  .fv-sc-h2,
  .fv-sc-final h2 {
    font-size: 56px;
  }

  .fv-sc-quickbar__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fv-sc-section {
    padding: 110px 0;
  }
}

@media (max-width: 430px) {
  .fv-sc-topbar__inner {
    width: calc(100% - 24px);
  }

  .fv-sc-topbar__name {
    max-width: 132px;
  }

  .fv-sc-hero {
    min-height: 92svh;
    padding-top: 100px;
  }

  .fv-sc-hero__actions .fv-sc-cta {
    width: 100%;
  }

  .fv-sc-section {
    padding: 62px 0;
  }
}

/* ============================================================================
 *  DESIGN POLISH PASS — visual upgrades layered on top of the base styles.
 *  Keeps existing structure intact; only sharpens hierarchy and presence.
 * ========================================================================== */

/* ── Hero: bigger CTAs + breathing trust pill ────────────────────────── */
.fv-sc-hero__title {
  font-weight: 900;
  text-shadow: 0 2px 32px rgba(0, 0, 0, .28);
}

.fv-sc-hero__subtitle {
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

.fv-sc-hero__meta {
  display: inline-flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.fv-sc-hero__meta span { gap: 6px; }
.fv-sc-hero__meta svg { color: #f5b942; }

.fv-sc-hero__actions {
  gap: 14px;
  padding-top: 16px;
}
.fv-sc-hero__actions .fv-sc-cta {
  min-height: 58px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 800;
}
.fv-sc-hero__actions .fv-sc-cta--light {
  box-shadow: 0 22px 56px rgba(0, 0, 0, .35);
  letter-spacing: 0;
}
.fv-sc-hero__actions .fv-sc-cta--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

/* Decorative gradient orb behind hero — adds depth without changing layout. */
.fv-sc-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 93, 230, .22) 0%, rgba(50, 93, 230, 0) 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.fv-sc-hero__content { position: relative; z-index: 1; }
.fv-sc-hero__scrim   { z-index: 0; }

/* ── Pricing: dramatic featured card ──────────────────────────────────── */
.fv-sc-section--pricing {
  background:
    radial-gradient(ellipse at top right, rgba(18, 184, 166, .25) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(50, 93, 230, .35) 0%, transparent 50%),
    linear-gradient(180deg, #0a1228 0%, #101a36 100%);
  position: relative;
  overflow: hidden;
}
.fv-sc-section--pricing::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 230, 53, .12) 0%, transparent 70%);
  pointer-events: none;
}

.fv-sc-packs {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 20px;
}

.fv-sc-pack {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
  overflow: visible;
  transition: transform .25s var(--sc-ease), box-shadow .25s var(--sc-ease), border-color .25s var(--sc-ease);
}
.fv-sc-pack:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}
.fv-sc-pack > h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}
.fv-sc-pack > p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Featured card breathing room — also reserves space above for the badge
   so it never clips at the top of the section/viewport. */
.fv-sc-packs { padding-top: 24px; }

.fv-sc-pack--featured {
  background: linear-gradient(160deg, #ffffff 0%, #eef4ff 100%);
  border: 2px solid var(--sc-primary);
  margin-top: 8px;
  box-shadow:
    0 40px 80px rgba(50, 93, 230, .35),
    0 0 0 6px rgba(50, 93, 230, .08);
}
@media (min-width: 768px) {
  .fv-sc-pack--featured {
    transform: scale(1.04);
  }
  .fv-sc-pack--featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow:
      0 50px 100px rgba(50, 93, 230, .42),
      0 0 0 8px rgba(50, 93, 230, .1);
  }
}

.fv-sc-pack__badge {
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--sc-primary) 0%, #4d75ed 100%);
  box-shadow: 0 8px 20px rgba(50, 93, 230, .4);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.fv-sc-pack__price {
  align-items: baseline;
  margin: 24px 0 4px;
}
.fv-sc-pack__price strong {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--sc-ink) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv-sc-pack--featured .fv-sc-pack__price strong {
  background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv-sc-pack__price span {
  font-size: 18px;
  font-weight: 700;
}

.fv-sc-pack__meta {
  align-self: flex-start;
}

.fv-sc-pack .fv-sc-cta {
  margin-top: auto;
  min-height: 50px;
  font-size: 14px;
}

/* ── Coach cards: premium shadows + cleaner photo aspect ────────────── */
.fv-sc-team {
  gap: 22px;
}

.fv-sc-coach {
  border: 0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .04),
    0 4px 16px rgba(15, 23, 42, .06);
  transition: transform .3s var(--sc-ease), box-shadow .3s var(--sc-ease);
}
.fv-sc-coach:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 16px rgba(15, 23, 42, .08),
    0 24px 48px rgba(15, 23, 42, .14);
}

.fv-sc-coach__photo {
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(135deg, #eef4ff 0%, #f5f2eb 100%);
  position: relative;
  overflow: hidden;
}
.fv-sc-coach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--sc-ease);
}
.fv-sc-coach:hover .fv-sc-coach__photo img {
  transform: scale(1.05);
}

.fv-sc-coach__body {
  padding: 22px 22px 26px;
}
.fv-sc-coach__body h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--sc-ink);
}
.fv-sc-coach__role {
  margin: 0;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fv-sc-coach__body > p {
  margin: 14px 0 0;
  color: var(--sc-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ── Reviews: lift + soft gradient ────────────────────────────────────── */
.fv-sc-review {
  padding: 32px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
  border: 1px solid var(--sc-line-soft);
  border-radius: var(--sc-radius-lg);
  transition: transform .25s var(--sc-ease), box-shadow .25s var(--sc-ease);
}
.fv-sc-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .1);
}
.fv-sc-review::before {
  content: "“";
  display: block;
  margin: -10px 0 4px;
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: .7;
  color: var(--sc-primary);
  opacity: .25;
}
.fv-sc-review blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sc-ink);
  font-weight: 500;
}

/* ── Highlights: bigger color-coded icons ─────────────────────────────── */
.fv-sc-highlight {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
  border-radius: var(--sc-radius-lg);
  transition: transform .25s var(--sc-ease), box-shadow .25s var(--sc-ease);
}
.fv-sc-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .1);
}
.fv-sc-highlight__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sc-primary) 0%, #4d75ed 100%);
  box-shadow: 0 12px 24px rgba(50, 93, 230, .3);
  position: relative;
}
.fv-sc-highlight__icon::after {
  content: "";
  position: absolute;
  inset: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.fv-sc-highlight:nth-child(2) .fv-sc-highlight__icon {
  background: linear-gradient(135deg, #12b8a6 0%, #0d9488 100%);
  box-shadow: 0 12px 24px rgba(18, 184, 166, .3);
}
.fv-sc-highlight:nth-child(3) .fv-sc-highlight__icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 12px 24px rgba(245, 158, 11, .3);
}
.fv-sc-highlight h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}
.fv-sc-highlight p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Final CTA: dramatic gradient + decorative orbs ───────────────────── */
.fv-sc-final {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(ellipse at top right, rgba(245, 158, 11, .35) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(18, 184, 166, .3) 0%, transparent 55%),
    linear-gradient(135deg, #1739a6 0%, #325de6 50%, #4d75ed 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.fv-sc-final::before,
.fv-sc-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fv-sc-final::before {
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, .15) 0%, transparent 70%);
}
.fv-sc-final::after {
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
}

.fv-sc-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.fv-sc-final .fv-sc-eyebrow {
  background: rgba(255, 255, 255, .2);
  color: #ffffff;
}
.fv-sc-final h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 720px;
  margin: 0;
}
.fv-sc-final p {
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  max-width: 540px;
  margin: 0 0 12px;
}
.fv-sc-final .fv-sc-cta--light {
  background: #ffffff;
  color: var(--sc-primary) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.fv-sc-final .fv-sc-cta--light:hover {
  background: #ffffff;
  color: var(--sc-primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
}

/* ── Section about: shift the title-side empty space ─────────────────── */
.fv-sc-about {
  align-items: start;
}
.fv-sc-about__intro {
  position: sticky;
  top: 100px;
}
@media (max-width: 899px) {
  .fv-sc-about__intro { position: static; }
}

/* ── Topbar enrich the brand mark ─────────────────────────────────────── */
.fv-sc-topbar__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}
.fv-sc-topbar .fv-sc-cta--solid {
  font-weight: 800;
  letter-spacing: 0;
}

/* ============================================================================
 *  PACKETS + TEAM — second polish pass
 * ========================================================================== */

/* ── Pricing: card structure with features list ────────────────────────── */
.fv-sc-pack {
  padding: 36px 30px 32px;
  gap: 0;
  text-align: left;
}

.fv-sc-pack__head {
  margin-bottom: 24px;
}
.fv-sc-pack__head h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: capitalize;
}
.fv-sc-pack__head p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.fv-sc-pack__price {
  margin: 0 0 6px;
}

.fv-sc-pack__per {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  align-items: center;
  padding: 7px 14px;
  margin: 0 0 22px;
  background: var(--sc-blue-soft);
  color: var(--sc-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.fv-sc-pack--featured .fv-sc-pack__per {
  background: rgba(50, 93, 230, .14);
}

.fv-sc-pack__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--sc-line-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fv-sc-pack__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sc-ink-soft);
  line-height: 1.4;
}
.fv-sc-pack__features svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(18, 184, 166, .14);
  color: #0d8074;
}
.fv-sc-pack--featured .fv-sc-pack__features svg {
  background: rgba(50, 93, 230, .14);
  color: var(--sc-primary);
}

.fv-sc-pack__badge--trial {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, .4);
}

/* ── Team: portrait magazine cards with floating role chip ───────────── */
.fv-sc-section__head--split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  max-width: none;
}
.fv-sc-section__head--split > div { max-width: 720px; }
.fv-sc-section__lead {
  margin: 14px 0 0;
  color: var(--sc-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

.fv-sc-team {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
@media (min-width: 900px) {
  .fv-sc-team {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: stretch;
  }
}

.fv-sc-coach {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .04),
    0 8px 24px rgba(15, 23, 42, .06);
  transition: transform .35s var(--sc-ease), box-shadow .35s var(--sc-ease);
}
.fv-sc-coach:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, .1),
    0 28px 56px rgba(15, 23, 42, .14);
}

.fv-sc-coach__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #f5f2eb 100%);
}
.fv-sc-coach__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, .55) 100%);
  pointer-events: none;
  opacity: .9;
  transition: opacity .35s var(--sc-ease);
}
.fv-sc-coach:hover .fv-sc-coach__photo::after { opacity: 1; }
.fv-sc-coach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--sc-ease);
}
.fv-sc-coach:hover .fv-sc-coach__photo img {
  transform: scale(1.06);
}

.fv-sc-coach__role-floating {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  color: var(--sc-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.fv-sc-coach__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fv-sc-coach__body h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--sc-ink);
}
.fv-sc-coach__bio {
  margin: 0 0 16px;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.fv-sc-coach__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
}
.fv-sc-coach__tags span {
  padding: 5px 11px;
  background: var(--sc-blue-soft);
  color: var(--sc-primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.fv-sc-coach__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--sc-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fv-sc-coach__exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sc-muted);
  font-size: 12px;
  font-weight: 700;
}
.fv-sc-coach__exp svg {
  width: 14px;
  height: 14px;
  color: var(--sc-primary);
}
.fv-sc-coach__book {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sc-ink);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s var(--sc-ease), background .2s var(--sc-ease);
}
.fv-sc-coach__book svg { width: 12px; height: 12px; }
.fv-sc-coach__book:hover {
  background: var(--sc-primary);
  transform: translateX(2px);
}

/* Lead coach: shows on the left column in 3-up layout, takes a richer
   photo space and bigger typography. */
@media (min-width: 900px) {
  .fv-sc-coach--lead .fv-sc-coach__photo {
    aspect-ratio: 4 / 5;
  }
  .fv-sc-coach--lead .fv-sc-coach__body h3 {
    font-size: 26px;
  }
}
