/** Shopify CDN: Minification failed

Line 123:8 Expected identifier but found whitespace
Line 123:10 Unexpected "{"
Line 123:19 Expected ":"
Line 129:13 Expected identifier but found whitespace
Line 129:15 Unexpected "{"
Line 129:24 Expected ":"

**/
.hero-banner-wrapper {
  position: relative;
}

.hero-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: opacity 0.18s ease, transform 0.18s ease;
  opacity: 1;
  transform: translateY(0);
}

.hero-banner--hidden {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

.hero-banner__spacer {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-banner__bg--desktop {
  display: none;
}

.hero-banner__bg--mobile {
  display: block;
}

@media (min-width: 750px) {
  .hero-banner__bg--desktop {
    display: block;
  }

  .hero-banner__bg--mobile {
    display: none;
  }
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px 40px;
}

.hero-banner__logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-banner__logo img {
  max-width: 160px;
  height: auto;
}

.hero-banner__bottom {
  text-align: center;
  color: #fff;
}

.hero-banner__headline {
  font-family: var(--font-heading, inherit);
  font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero-banner__line {
  display: block;
}

.hero-banner__accent {
  color: {{ section.settings.accent_color | default: '#F5C518' }};
}

.hero-banner__divider {
  width: 60px;
  height: 3px;
  background: {{ section.settings.accent_color | default: '#F5C518' }};
  margin: 0 auto 16px;
}

.hero-banner__tagline {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

.hero-banner__tagline strong {
  font-weight: 700;
}

@media (min-width: 990px) {
  .hero-banner__headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }

  .hero-banner__tagline {
    font-size: 1.3rem;
  }
}