.gymful-hero-slideshow {
  --hero-gradient-color: rgba(20, 10, 2, .78);
  --hero-media-fit: cover;
  --hero-button-padding: 18px 32px;
  --hero-thumb-border-color: rgba(255,255,255,.35);
  --hero-thumb-hover-border-color: #C6B04F;
  --hero-thumb-active-border-color: #C6B04F;
  --hero-progress-color: rgba(255,255,255,.88);
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 420px;
  overflow: hidden;
  background: #111;
  display: block;
  isolation: isolate;
  user-select: none;
}

.gymful-hero-slideshow-full-bleed-yes .gymful-hero-slideshow {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gymful-hero-slideshow__list {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gymful-hero-slideshow__slide {
  grid-area: 1 / 1 / -1 / -1;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateX(0);
  will-change: transform, opacity;
  z-index: 1;
}

.gymful-hero-slideshow__slide.is-current {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.gymful-hero-slideshow__media,
.gymful-hero-slideshow__overlay,
.gymful-hero-slideshow__gradient,
.gymful-hero-slideshow__content {
  position: absolute;
  inset: 0;
}

.gymful-hero-slideshow__media {
  overflow: hidden;
  z-index: 1;
  transform: translateX(0);
  will-change: transform;
}

.gymful-hero-slideshow__media-el,
.gymful-hero-slideshow img.gymful-hero-slideshow__media-el,
.gymful-hero-slideshow video.gymful-hero-slideshow__media-el,
.gymful-hero-slideshow iframe.gymful-hero-slideshow__media-el {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: var(--hero-media-fit, cover) !important;
  object-position: var(--hero-object-position, center center) !important;
  border: 0;
}

.gymful-hero-slideshow__poster {
  z-index: 1;
}

.gymful-hero-slideshow__video,
.gymful-hero-slideshow__iframe {
  z-index: 2;
  opacity: 0;
  transition: opacity .45s cubic-bezier(.19, 1, .22, 1);
}

.gymful-hero-slideshow__slide.has-video-loaded .gymful-hero-slideshow__video,
.gymful-hero-slideshow__slide.has-iframe-loaded .gymful-hero-slideshow__iframe {
  opacity: 1;
}

.gymful-hero-slideshow__overlay {
  z-index: 3;
  pointer-events: none;
  background: rgba(12, 7, 2, .18);
}

.gymful-hero-slideshow__gradient {
  z-index: 4;
  top: auto;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(to top, var(--hero-gradient-color), rgba(20,10,2,0));
}

.gymful-hero-slideshow__content {
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  padding: 0 0 80px 88px;
}

.gymful-hero-slideshow__content-inner {
  max-width: 760px;
  pointer-events: auto;
}

.gymful-hero-slideshow__eyebrow {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.2;
  font-weight: 500;
}

.gymful-hero-slideshow__heading {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.25vw, 96px);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
  text-wrap: balance;
}

.gymful-hero-slideshow__text {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.45;
  max-width: 760px;
}

.gymful-hero-slideshow__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.gymful-hero-slideshow__button {
  --hero-btn-color: #111;
  --hero-btn-hover-color: #111;
  --hero-btn-bg: #fff;
  --hero-btn-fill: #C6B04F;
  --hero-btn-border: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none !important;
  color: var(--hero-btn-color) !important;
  background: var(--hero-btn-bg) !important;
  border: 1px solid var(--hero-btn-border) !important;
  border-radius: 999px;
  padding: var(--hero-button-padding, 18px 32px) !important;
  min-height: 52px;
  width: auto !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
  font-weight: 700;
  line-height: 1;
  transition: color .35s cubic-bezier(.19,1,.22,1), border-color .35s cubic-bezier(.19,1,.22,1), transform .35s cubic-bezier(.19,1,.22,1);
}

.gymful-hero-slideshow__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: var(--hero-btn-fill);
  clip-path: circle(0% at 0% 100%);
  pointer-events: none;
  will-change: clip-path;
  transition: clip-path .82s cubic-bezier(.19,1,.22,1);
}

.gymful-hero-slideshow__button:hover,
.gymful-hero-slideshow__button:focus-visible {
  color: var(--hero-btn-hover-color) !important;
  transform: translateY(-1px);
}

.gymful-hero-slideshow__button:hover::before,
.gymful-hero-slideshow__button:focus-visible::before {
  clip-path: circle(155% at 0% 100%);
}

.gymful-hero-slideshow__button-content,
.gymful-hero-slideshow__button-text,
.gymful-hero-slideshow__button-icon {
  position: relative;
  z-index: 3;
}

.gymful-hero-slideshow__button-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gymful-hero-slideshow__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.19,1,.22,1);
}

.gymful-hero-slideshow__button-icon svg {
  display: block;
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.gymful-hero-slideshow__button:hover .gymful-hero-slideshow__button-icon,
.gymful-hero-slideshow__button:focus-visible .gymful-hero-slideshow__button-icon {
  transform: translateX(3px);
}

.gymful-hero-slideshow__nav {
  z-index: 10;
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(55vw, 720px);
  pointer-events: none;
}

.gymful-hero-slideshow__thumb {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 112px;
  aspect-ratio: 1.55;
  padding: 0;
  margin: 0;
  border: 1px solid var(--hero-thumb-border-color, rgba(255,255,255,.35)) !important;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.15) !important;
  color: inherit !important;
  box-shadow: none !important;
  outline: 0 !important;
  cursor: pointer;
  pointer-events: auto;
  transition: border-color .25s ease, transform .25s ease, opacity .25s ease;
}

.gymful-hero-slideshow__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gymful-hero-slideshow__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
  pointer-events: none;
}

.gymful-hero-slideshow__thumb:hover {
  transform: translateY(-2px);
  border-color: var(--hero-thumb-hover-border-color, #C6B04F) !important;
}

.gymful-hero-slideshow__thumb:focus-visible {
  outline: 2px solid var(--hero-thumb-hover-border-color, #C6B04F) !important;
  outline-offset: 3px;
  border-color: var(--hero-thumb-hover-border-color, #C6B04F) !important;
}

.gymful-hero-slideshow__thumb.is-current {
  border-color: var(--hero-thumb-active-border-color, #C6B04F) !important;
}

.gymful-hero-slideshow__thumb-progress {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 4;
  display: block;
  width: 0%;
  height: 3px;
  background: var(--hero-progress-color, rgba(255,255,255,.88)) !important;
  transform-origin: left center;
  pointer-events: none;
}

.gymful-hero-slideshow__thumb:not(.is-current) .gymful-hero-slideshow__thumb-progress {
  width: 0% !important;
}

@media (max-width: 1024px) {
  .gymful-hero-slideshow__content {
    padding: 0 32px 64px 32px;
  }

  .gymful-hero-slideshow__nav {
    right: 24px;
    bottom: 24px;
    max-width: 60vw;
  }

  .gymful-hero-slideshow__thumb {
    width: 92px;
  }
}

@media (max-width: 767px) {
  .gymful-hero-slideshow {
    height: 88svh;
    min-height: 620px;
  }

  .gymful-hero-slideshow__content {
    padding: 0 28px 72px 28px;
  }

  .gymful-hero-slideshow__heading {
    font-size: clamp(56px, 15vw, 92px);
    line-height: .92;
    letter-spacing: .01em;
  }

  .gymful-hero-slideshow__text {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.55;
  }

  .gymful-hero-slideshow__buttons {
    gap: 12px;
    margin-top: 28px;
  }

  .gymful-hero-slideshow__button {
    min-height: 58px;
    padding: var(--hero-button-padding, 18px 24px) !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
    align-self: flex-start !important;
  }

  .gymful-hero-slideshow--hide-thumbs-mobile .gymful-hero-slideshow__nav {
    display: none;
  }

  .gymful-hero-slideshow__nav {
    right: 18px;
    bottom: 18px;
    max-width: calc(100vw - 36px);
  }

  .gymful-hero-slideshow__thumb {
    width: 74px;
  }
}

@media (max-width: 1024px) {
  .gymful-hero-slideshow__media-el {
    object-fit: var(--hero-media-fit, cover) !important;
    object-position: var(--hero-object-position-tablet, var(--hero-object-position, center center));
  }
}

@media (max-width: 767px) {
  .gymful-hero-slideshow__media-el {
    object-fit: var(--hero-media-fit, cover) !important;
    object-position: var(--hero-object-position-mobile, var(--hero-object-position-tablet, var(--hero-object-position, center center)));
  }
}


/* Bottom discover indicator */
.gymful-hero-slideshow__discover {
  z-index: 11;
  position: absolute;
  bottom: var(--hero-discover-bottom, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hero-discover-gap, 6px);
  color: #fff;
  font-family: "Cerebri Sans", Cerebri, "Open Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none !important;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
}

.gymful-hero-slideshow__discover--left {
  left: var(--hero-discover-side, 32px);
}

.gymful-hero-slideshow__discover--center {
  left: 50%;
  transform: translateX(-50%);
}

.gymful-hero-slideshow__discover--right {
  right: var(--hero-discover-side, 32px);
}

.gymful-hero-slideshow__discover-text,
.gymful-hero-slideshow__discover-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gymful-hero-slideshow__discover-icon {
  width: var(--hero-discover-icon-size, 12px);
  height: var(--hero-discover-icon-size, 12px);
  transition: transform .28s cubic-bezier(.19, 1, .22, 1);
}

.gymful-hero-slideshow__discover-icon img,
.gymful-hero-slideshow__discover-icon svg {
  display: block;
  width: var(--hero-discover-icon-size, 12px);
  height: var(--hero-discover-icon-size, 12px);
  object-fit: contain;
}

.gymful-hero-slideshow__discover:hover .gymful-hero-slideshow__discover-icon,
.gymful-hero-slideshow__discover:focus-visible .gymful-hero-slideshow__discover-icon {
  animation: gymfulHeroDiscoverBounce .72s cubic-bezier(.19, 1, .22, 1) infinite alternate;
}

@keyframes gymfulHeroDiscoverBounce {
  from { transform: translateY(-2px); }
  to { transform: translateY(4px); }
}

/* Google review block */
.gymful-hero-slideshow__review {
  z-index: 11;
  position: absolute;
  right: var(--hero-review-right, 32px);
  bottom: var(--hero-review-bottom, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: min(var(--hero-review-max-width, 360px), calc(100% - 64px));
  color: #fff;
  text-align: right;
  pointer-events: none;
}

.gymful-hero-slideshow__review-stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--hero-review-star-gap, 2px);
  margin-bottom: 7px;
}

.gymful-hero-slideshow__review-stars img {
  display: block;
  width: var(--hero-review-star-size, 18px);
  height: auto;
}

.gymful-hero-slideshow__review-text {
  width: 100%;
  max-width: var(--hero-review-text-max-width, 100%);
  margin: 0 0 7px;
  color: #fff;
  font-family: "Cerebri Sans", Cerebri, "Open Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.gymful-hero-slideshow__review-google {
  display: block;
  width: var(--hero-review-google-width, 92px);
  height: auto;
}

@media (max-width: 767px) {
  /* Bottom extras are intentionally disabled on mobile: there is not enough safe space in the hero. */
  .gymful-hero-slideshow__discover,
  .gymful-hero-slideshow__review {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Optional floating location selector */
.gymful-hero-location-selector {
  --gymful-hero-location-panel-width: 500px;
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 48px;
  width: min(var(--gymful-hero-location-panel-width), calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.gymful-hero-location-selector__panel {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    grid-template-rows .65s cubic-bezier(.625, .05, 0, 1),
    opacity .3s ease,
    visibility 0s linear .65s;
}

.gymful-hero-location-selector[data-hero-location-selector-status="active"] .gymful-hero-location-selector__panel {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.gymful-hero-location-selector__panel-inner {
  min-height: 0;
  overflow: hidden;
  transform-origin: bottom center;
}

.gymful-hero-location-selector__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gymful-hero-location-selector__item {
  position: relative;
  isolation: isolate;
  min-height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 18px 18px 28px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.19, 1, .22, 1);
}

.gymful-hero-location-selector__item:hover,
.gymful-hero-location-selector__item:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.gymful-hero-location-selector__item:focus-visible {
  outline: 2px solid #c6b04f;
  outline-offset: 3px;
}

.gymful-hero-location-selector__item-content,
.gymful-hero-location-selector__item-image {
  position: relative;
  z-index: 2;
}

.gymful-hero-location-selector__item-content {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.gymful-hero-location-selector__item-title,
.gymful-hero-location-selector__item-description {
  display: block;
  margin: 0;
}

.gymful-hero-location-selector__item-title {
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.gymful-hero-location-selector__item-description {
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.gymful-hero-location-selector__item-image {
  flex: 0 0 auto;
  width: 150px;
  height: 112px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.gymful-hero-location-selector__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
}

.gymful-hero-location-selector__item:hover .gymful-hero-location-selector__item-image img,
.gymful-hero-location-selector__item:focus-visible .gymful-hero-location-selector__item-image img {
  transform: scale(1.035);
}

/* Layered Osmo-inspired glass effect. */
.gymful-hero-location-selector__glass {
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  backdrop-filter: saturate(120%) blur(12px);
  pointer-events: none;
  isolation: isolate;
  color: #201d1d;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.gymful-hero-location-selector__glass-fill,
.gymful-hero-location-selector__glass-fill-burn,
.gymful-hero-location-selector__glass-highlight-soft,
.gymful-hero-location-selector__glass-highlight-strong,
.gymful-hero-location-selector__glass-edge-light,
.gymful-hero-location-selector__glass-edge-dark,
.gymful-hero-location-selector__glass-inner-glow {
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.gymful-hero-location-selector__glass-fill {
  opacity: 1;
  background-color: rgba(20, 9, 4, .76);
  transition: background-color .35s ease;
}

.gymful-hero-location-selector__item:hover .gymful-hero-location-selector__glass-fill,
.gymful-hero-location-selector__item:focus-visible .gymful-hero-location-selector__glass-fill {
  background-color: rgba(31, 15, 8, .82);
}

.gymful-hero-location-selector__glass-fill-burn {
  opacity: .05;
  mix-blend-mode: color-burn;
  background-color: currentColor;
}

.gymful-hero-location-selector__glass-highlight-soft {
  mix-blend-mode: overlay;
  box-shadow: inset -.28125em -.28125em .09375em -.328125em rgba(255,255,255,.5);
}

.gymful-hero-location-selector__glass-highlight-strong {
  box-shadow: inset .28125em .28125em .09375em -.328125em rgba(255,255,255,.8);
}

.gymful-hero-location-selector__glass-edge-light {
  mix-blend-mode: plus-lighter;
  box-shadow: inset .1875em .28125em .09375em -.1875em rgba(179,179,179,.5);
}

.gymful-hero-location-selector__glass-edge-dark {
  mix-blend-mode: overlay;
  box-shadow: inset -.1875em -.28125em .09375em -.1875em rgba(179,179,179,.3);
}

.gymful-hero-location-selector__glass-inner-glow {
  mix-blend-mode: darken;
  box-shadow: inset 0 0 1.75em rgba(242,242,242,.3);
}

.gymful-hero-location-selector__toggle {
  appearance: none;
  width: 280px;
  max-width: 100%;
  min-height: 64px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
  cursor: pointer;
  transition:
    transform .35s cubic-bezier(.19, 1, .22, 1),
    background-color .25s ease,
    box-shadow .35s ease;
}

.gymful-hero-location-selector__toggle:hover,
.gymful-hero-location-selector__toggle:focus-visible {
  background: #f7f5ee;
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

.gymful-hero-location-selector__toggle:focus-visible {
  outline: 2px solid #c6b04f;
  outline-offset: 3px;
}

.gymful-hero-location-selector__toggle-label {
  min-width: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.gymful-hero-location-selector__toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gymful-hero-location-selector__toggle-icon-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: opacity .3s ease, transform .45s cubic-bezier(.19, 1, .22, 1);
}

.gymful-hero-location-selector__toggle-icon-image--closed {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.gymful-hero-location-selector__toggle-icon-image--open {
  opacity: 0;
  transform: rotate(-90deg) scale(.82);
}

.gymful-hero-location-selector[data-hero-location-selector-status="active"] .gymful-hero-location-selector__toggle-icon-image--closed {
  opacity: 0;
  transform: rotate(90deg) scale(.82);
}

.gymful-hero-location-selector[data-hero-location-selector-status="active"] .gymful-hero-location-selector__toggle-icon-image--open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@media (max-width: 767px) {
  .gymful-hero-location-selector {
    bottom: 24px;
    width: calc(100% - 28px);
    gap: 14px;
  }

  .gymful-hero-location-selector__toggle {
    width: 86%;
    min-height: 62px;
    padding-left: 24px;
  }

  .gymful-hero-location-selector__item {
    min-height: 132px;
    gap: 16px;
    padding: 16px 14px 16px 20px;
  }

  .gymful-hero-location-selector__item-title {
    font-size: 16px;
  }

  .gymful-hero-location-selector__item-description {
    font-size: 14px;
    line-height: 1.45;
  }

  .gymful-hero-location-selector__item-image {
    width: 38%;
    height: 104px;
  }
}

@media (max-width: 479px) {
  .gymful-hero-location-selector__item {
    min-height: 118px;
  }

  .gymful-hero-location-selector__item-content {
    gap: 7px;
  }

  .gymful-hero-location-selector__item-title {
    font-size: 14px;
  }

  .gymful-hero-location-selector__item-description {
    font-size: 12px;
  }

  .gymful-hero-location-selector__item-image {
    height: 92px;
    border-radius: 14px;
  }
}


/* Location selector is intentionally desktop-only to keep the tablet and
   mobile hero layouts free for the existing controls and content. */
@media (max-width: 1024px) {
  .gymful-hero-slideshow .gymful-hero-location-selector {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gymful-hero-location-selector__panel,
  .gymful-hero-location-selector__item,
  .gymful-hero-location-selector__item-image img,
  .gymful-hero-location-selector__toggle,
  .gymful-hero-location-selector__toggle-icon-image {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
