/** Shopify CDN: Minification failed

Line 21:11 Unexpected "{"
Line 21:20 Expected ":"
Line 21:27 Unexpected "{"
Line 29:11 Unexpected "{"
Line 29:20 Expected ":"
Line 40:11 Unexpected "{"
Line 40:20 Expected ":"
Line 44:11 Unexpected "{"
Line 44:20 Expected ":"
Line 52:11 Unexpected "{"
... and 45 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:mos-hero-banner (INDEX:70) */
.mos-hero-{{ section.id }} {
  --mhb-red: #e00000;
  --mhb-dark: #0a0a0a;
  --mhb-card: #1a1a1a;
  position: relative;
  width: 100%;
}

.mos-hero-{{ section.id }} .mhb-link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mos-hero-{{ section.id }} .mhb-link:hover {
  transform: scale(1.005);
}

.mos-hero-{{ section.id }} .mhb-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 1000;
  overflow: hidden;
  background: var(--mhb-dark);
}

.mos-hero-{{ section.id }} .mhb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mos-hero-{{ section.id }} .mhb-link:hover .mhb-img {
  transform: scale(1.06);
}

.mos-hero-{{ section.id }} .mhb-img--placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mos-hero-{{ section.id }} .mhb-img--placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mos-hero-{{ section.id }} .mhb-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--mhb-overlay-color);
  opacity: var(--mhb-overlay-opacity);
  pointer-events: none;
  z-index: 1;
}

.mos-hero-{{ section.id }} .mhb-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: var(--mhb-align);
  justify-content: center;
  text-align: var(--mhb-text-align);
  padding: 5vw 6vw;
  gap: 18px;
}

.mos-hero-{{ section.id }} .mhb-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: clamp(32px, 5.2vw, 84px);
  line-height: 1.02;
  margin: 0;
  max-width: 20ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.mos-hero-{{ section.id }} .mhb-subheading {
  font-family: inherit;
  color: #e6e6e6;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
  max-width: 46ch;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.mos-hero-{{ section.id }} .mhb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 15px 36px;
  border: 1px solid var(--mhb-red);
  background: var(--mhb-red);
  color: #ffffff;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.mos-hero-{{ section.id }} .mhb-button__text {
  position: relative;
  z-index: 1;
}

.mos-hero-{{ section.id }} .mhb-link:hover .mhb-button {
  background-color: color-mix(in srgb, var(--mhb-red) 82%, black);
  border-color: color-mix(in srgb, var(--mhb-red) 82%, black);
  transform: translateY(-2px);
}

.mos-hero-{{ section.id }} .mhb-link:focus-visible {
  outline: 2px solid var(--mhb-red);
  outline-offset: -2px;
}

/* Tablet */
@media (max-width: 989px) {
  .mos-hero-{{ section.id }} .mhb-content {
    padding: 6vw 7vw;
    gap: 14px;
  }
}

/* Mobile — swap to portrait ratio, contain image so nothing crops */
@media (max-width: 749px) {
  .mos-hero-{{ section.id }} .mhb-media {
    aspect-ratio: 1400 / 1600;
    background: var(--mhb-dark);
  }

  .mos-hero-{{ section.id }} .mhb-img {
    object-fit: {% if has_mobile %}cover{% else %}contain{% endif %};
    object-position: center;
  }

  .mos-hero-{{ section.id }} .mhb-content {
    align-items: center;
    text-align: center;
    padding: 8vw 6vw;
  }

  .mos-hero-{{ section.id }} .mhb-heading {
    max-width: 18ch;
  }

  .mos-hero-{{ section.id }} .mhb-subheading {
    max-width: 32ch;
  }

  .mos-hero-{{ section.id }} .mhb-button {
    padding: 14px 30px;
    font-size: 15px;
  }

  .mos-hero-{{ section.id }} .mhb-link:hover {
    transform: none;
  }

  .mos-hero-{{ section.id }} .mhb-link:hover .mhb-img {
    transform: none;
  }
}
/* END_SECTION:mos-hero-banner */