/** Shopify CDN: Minification failed

Line 432:0 Unexpected end of file

**/
video-image-hero {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  aspect-ratio: var(--vih-ratio-mobile, 4/5);
  min-height: var(--vih-min-h-mobile, 0px);
}

@media (max-width: 767.98px) {
  video-image-hero.video-image-hero--teaser {
    aspect-ratio: auto;
    height: 550px;
    min-height: 0;
  }
}

.vih__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Separate mobile video: exactly one frame is shown per breakpoint. A hidden
   frame is never "in view", so the theme's video-element does not start it. */
.vih__media-frame--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .vih__media-frame--desktop {
    display: none;
  }
  .vih__media-frame--mobile {
    display: block;
  }
}

.vih__media .media,
.vih__media .media-wrapper {
  width: 100%;
  height: 100%;
  padding-block-start: 0;
}

.vih__media video-element,
.vih__media video,
.vih__media iframe,
.vih__media img {
  display: block;
  width: 100%;
  height: 100%;
  /* Up to 1928px the media fills the box (no side bars, slight vertical
     crop when the height cap engages); above that it switches to contain
     to avoid cropping too much of the frame on very wide screens. */
  object-fit: cover !important;
  object-position: center;
}

@media (min-width: 1929px) {
  .vih__media video-element,
  .vih__media video,
  .vih__media iframe,
  .vih__media img {
    object-fit: contain !important;
  }
}

/* Cover image stays on top until the video actually renders frames.
   The theme hides the poster as soon as the <video> is inserted
   ([loaded]), which leaves a black box while it buffers; the hero JS adds
   .is-video-ready on the first "playing" event instead. */
.vih__media .video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.vih__media-frame.is-video-ready .video-poster {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

/* Keep the play/pause control visible after load */
.vih__media video-element[loaded] .media__poster {
  opacity: 1;
  visibility: visible;
}

.vih__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: var(--vih-overlay-color, #000000);
  opacity: var(--vih-overlay-opacity, 0.3);
}

/* Content layer */
.vih__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px; /* mobile + tablet; desktop 24px below */
  pointer-events: none;
  justify-content: var(--vih-justify-v-mobile, var(--vih-justify-v, center));
  align-items: var(--vih-align-mobile, center);
  text-align: var(--vih-text-align-mobile, center);
  padding: 2rem 1.6rem 2.4rem;
}

.vih__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 62ch;
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .vih__text {
    gap: 16px;
    max-width: none;
  }
  /* Keep the text clear of the bottom-right controls in teaser mode */
  video-image-hero.video-image-hero--teaser .vih__content {
    padding-bottom: 4.4rem;
  }
}

.vih__eyebrow {
  margin: 0;
  font-family: var(--font-body-family, 'Work Sans', sans-serif);
  font-size: calc(var(--vih-eyebrow-size, 24px) * 0.67);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--vih-eyebrow-color, #ffffff);
}

.vih__heading {
  margin: 0;
  font-family: var(--font-body-family, 'Work Sans', sans-serif);
  font-size: calc(var(--vih-heading-size, 36px) * 0.78); /* 28px at the 36px default */
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  color: var(--vih-heading-color, #ffffff);
}

.vih__subheading {
  margin: 0;
  font-family: var(--font-body-family, 'Work Sans', sans-serif);
  font-size: calc(var(--vih-subheading-size, 16px) * 0.8);
  font-weight: 500;
  line-height: 1.3;
  color: var(--vih-subheading-color, #ffffff);
}

.vih__description {
  font-family: var(--font-body-family, 'Work Sans', sans-serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: var(--vih-text-color, #ffffff);
}

/* Description variants: the desktop text shows from 768px up, the mobile
   text below it (only when both are set, see the section markup). */
.vih__description--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .vih__description--desktop {
    display: none;
  }
  .vih__description--mobile {
    display: block;
  }
}

.vih__description p {
  margin: 0;
  color: inherit;
}

.vih__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: var(--vih-align-mobile, center);
}

.vih__actions > * {
  pointer-events: auto;
}

.vih__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body-family, 'Work Sans', sans-serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  color: var(--vih-cta-color, #2a2a2a);
  background-color: var(--vih-cta-bg, #ffffff);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vih__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--vih-cta-color, #2a2a2a);
}




.vih__cta:focus-visible,

/* Sound-on (immersive) state: text fades out drifting up, actions slide
   down to the bottom. Both directions are animated. */
.vih__text {
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

/* Texts and actions never hide: sound on/off does not change the layout. */


@keyframes vih-actions-return {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video controls (play/pause + sound), reusing theme classes.
   Both buttons share the same box, position line and icon size. */
video-image-hero .hero-play-button,
video-image-hero .hero-mute-button {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  z-index: 4;
}

video-image-hero .hero-play-button {
  right: calc(1rem + 44px + 8px);
}

video-image-hero .hero-mute-button {
  right: 1rem;
}

video-image-hero .hero-play-button__icon,
video-image-hero .hero-mute-button__icon {
  position: static;
  inset: auto;
  transform: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

video-image-hero .hero-play-button__icon svg,
video-image-hero .hero-mute-button__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Play/pause icon swap (driven by .is-playing set from video-element) */
video-image-hero .hero-play-button__icon .vih-icon--pause,
.vih__media-frame.is-playing .hero-play-button__icon .vih-icon--play {
  display: none;
}
.vih__media-frame.is-playing .hero-play-button__icon .vih-icon--pause {
  display: block;
}

video-image-hero .hero-play-button:focus-visible,
video-image-hero .hero-mute-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Teaser mode: the two controls sit centered at the bottom of the video
   (desktop); on mobile they move to the bottom-right corner. */
video-image-hero.video-image-hero--teaser .hero-play-button {
  right: auto;
  left: calc(50% - 48px);
}

video-image-hero.video-image-hero--teaser .hero-mute-button {
  right: auto;
  left: calc(50% + 4px);
}
/* Mobile: both controls sit in the bottom-right corner (sound button at the
   far right, play/pause to its left). Declared after the desktop rules so
   they win at equal specificity. */
@media (max-width: 767.98px) {
  video-image-hero.video-image-hero--teaser .hero-play-button,
  video-image-hero .hero-play-button {
    left: auto;
    right: calc(1rem + 44px + 8px);
    bottom: 1rem;
  }
  video-image-hero.video-image-hero--teaser .hero-mute-button,
  video-image-hero .hero-mute-button {
    left: auto;
    right: 1rem;
    bottom: 1rem;
  }
}


/* Breakpoints */
@media (min-width: 768px) {
  video-image-hero {
    aspect-ratio: var(--vih-ratio-tablet, 16/9);
    min-height: var(--vih-min-h-desktop, 0px);
  }

  .vih__content {
    justify-content: var(--vih-justify-v, center);
    align-items: var(--vih-align, center);
    text-align: var(--vih-text-align, center);
    padding: 64px;
  }
  .vih__text {
    gap: 16px;
  }

  .vih__actions {
    justify-content: var(--vih-align, center);
  }

  /* Figma desktop type scale — sizes come from section settings */
  .vih__eyebrow {
    font-size: var(--vih-eyebrow-size, 24px);
    line-height: 1.25;
  }

  .vih__heading {
    font-size: var(--vih-heading-size, 36px);
    line-height: 120%;
  }

  .vih__subheading {
    font-size: var(--vih-subheading-size, 16px);
  }

  .vih__description {
    font-size: var(--vih-text-size, 18px);
    line-height: 25px;
  }

  .vih__cta {
    padding: 14px 40px;
    font-size: var(--vih-cta-size, 18px);
    line-height: normal;
  }


@media (min-width: 1024px) {
  video-image-hero {
    aspect-ratio: var(--vih-ratio-desktop, 72/35);
    max-height: var(--vih-max-h-desktop, none);
  }
  .vih__content,
  .vih__text {
    gap: 24px;
  }
}

@media (min-width: 1920px) {
  video-image-hero {
    aspect-ratio: var(--vih-ratio-wide, 72/35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vih__text,
  .vih__cta,


