/** Shopify CDN: Minification failed

Line 355:30 Unexpected "*"

**/
/* ==========================================================================
   BLACK WAVE — Homepage-specific Styles
   Scroll-snap sections, fullscreen hero, fixed header/footer layout
   (Global dark styles are in blackwave-global.css)
   ========================================================================== */

/* ---------- Body overrides for homepage ---------- */
body.template-index {
  overflow: hidden;
  height: 100vh;
}

/* Remove section spacing on homepage */
body.template-index .section + .section {
  margin-top: 0;
}

/* ---------- Scroll-snap container ---------- */
.bw-homepage-snap {
  position: fixed;
  top: var(--bw-header-h, 48px);
  left: 0;
  right: 0;
  bottom: var(--bw-footer-h, 40px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  background: #111;
}

.bw-homepage-snap .content-for-layout {
  display: contents;
}

.bw-hero-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.bw-info-section {
  scroll-snap-align: start;
}

/* Remove inter-section gap on homepage */
.bw-homepage-snap .section + .section {
  margin-top: 0 !important;
}

/* ---------- Fixed header/footer on homepage ---------- */
body.template-index .section-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible !important;
}

/* ---------- HERO FULLSCREEN SECTION ---------- */
.bw-hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--bw-header-h, 64px) - var(--bw-footer-h, 64px));
  overflow: hidden;
}

.bw-hero-section slideshow-component {
  width: 100%;
  height: 100%;
}

.bw-hero-section .slideshow.banner {
  height: 100% !important;
  min-height: 100% !important;
}

.bw-hero-section .slideshow__slide {
  height: 100% !important;
  min-height: 100% !important;
}

.bw-hero-section .banner__media,
.bw-hero-section .slideshow__media {
  height: 100% !important;
  min-height: 100%;
}

.bw-hero-section .banner__media img,
.bw-hero-section .slideshow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Darker overlay for dramatic feel */
.bw-hero-section .banner__media::after,
.bw-hero-section .slideshow__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Text styling in hero: persistent overlay over rotating images */
.bw-hero-section .bw-hero-fixed-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 5rem 2.2rem;
  pointer-events: none;
}

.bw-hero-section .bw-hero-fixed-overlay__inner {
  width: min(100%, 1400px);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  pointer-events: auto;
}

.bw-hero-section .bw-hero-fixed-overlay .banner__text,
.bw-hero-section .bw-hero-fixed-overlay .banner__text p,
.bw-hero-section .bw-hero-fixed-overlay .rte,
.bw-hero-section .bw-hero-fixed-overlay .rte p {
  margin: 0 0 0.45rem;
  text-align: left;
}

.bw-hero-section .bw-hero-fixed-overlay .banner__buttons {
  margin: 0;
}

.bw-hero-section .banner__heading {
  color: #fff !important;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.bw-hero-section .banner__text,
.bw-hero-section .banner__text p,
.bw-hero-section .slideshow__text .rte,
.bw-hero-section .slideshow__text .rte p {
  color: #000000 !important;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: none;
}

/* CTA button */
.bw-hero-section .banner__buttons .button--primary {
  background: #fff !important;
  color: #0a0a0a !important;
  border: none !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.4rem 3.6rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.bw-hero-section .banner__buttons .button--primary:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  transform: translateY(-1px);
}

.bw-hero-section .banner__buttons .button--secondary {
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
  background: transparent !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.4rem 3.6rem;
  font-size: 1.3rem;
}

/* Slideshow controls — hidden (auto-rotate only) */
.bw-hero-section .slideshow__controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: transparent !important;
  border: none !important;
  display: none !important;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* Hide arrows and autoplay button */
.bw-hero-section .slider-button--prev,
.bw-hero-section .slider-button--next,
.bw-hero-section .slideshow__autoplay {
  display: none !important;
}

.bw-hero-section .slider-counter__link--dots .dot {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.bw-hero-section .slider-counter__link--dots.slider-counter__link--active .dot,
.bw-hero-section .slider-counter__link--dots:hover .dot {
  background: #fff;
  transform: scale(1.3);
}

/* Notify modal opened from hero CTA */
.bw-notify-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}

.bw-notify-modal:target {
  display: flex;
}

.bw-notify-modal.bw-notify-modal--open {
  display: flex;
}

.bw-notify-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.bw-notify-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 620px);
  margin: 0;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2.2rem 1.8rem 1.8rem;
  color: #efefef;
}

.bw-notify-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 2.2rem;
  line-height: 1;
}

.bw-notify-modal__title {
  margin: 0 0 0.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.15;
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  font-weight: 800;
}

.bw-notify-modal__subtitle {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
}

.bw-notify-form .field {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.bw-notify-form .field__input {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.bw-notify-form .field__label,
.bw-notify-form .newsletter-form__message {
  color: rgba(255, 255, 255, 0.72);
}

.bw-notify-form .newsletter-form__button,
.bw-notify-form .newsletter-form__button .icon,
.bw-notify-form .newsletter-form__button svg,
.bw-notify-form .newsletter-form__button path {
  color: #fff;
  fill: #fff;
}

/* Scroll indicator — hidden */
.bw-scroll-indicator {
  display: none;
}

/* ---------- COMPANY INFO SECTION (Second panel) ---------- */
.bw-info-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--bw-header-h, 48px) - var(--bw-footer-h, 40px));
  background: #1a1a1a; /* grey — matches header so logo tentacles blend */
  color: #fff;
  display: flex;
  flex-direction: column;
}

.bw-info-section .company-info__wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 40px 30px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.bw-info-section #CompanyInfo-* {
  min-height: auto;
  background: transparent;
}

.bw-info-section .company-info__block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bw-info-section .rich-text__buttons {
  display: flex !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.bw-info-section .company-info__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bw-info-section .company-info__heading {
  color: #fff !important;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.bw-info-section .company-info__text,
.bw-info-section .company-info__text p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  line-height: 1.7;
  max-width: 700px;
}

.bw-info-section .button--primary {
  background: #fff !important;
  color: #0a0a0a !important;
  border: none !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 0.8rem;
}

.bw-info-section .button--primary:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  transform: translateY(-1px);
}

/* ---------- Fixed footer on homepage (positioned fixed, not scrollable) ---------- */
body.template-index .shopify-section-group-footer-group {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ---------- Mobile adjustments ---------- */
@media screen and (max-width: 749px) {
  /* === Un-fix the homepage layout on mobile: footer scrolls into view === */
  body.template-index {
    overflow: auto !important;
    height: auto !important;
  }

  .bw-homepage-snap {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-top: var(--bw-header-h, 48px);
  }

  /* Hero fills from fixed header down to the bottom of the screen */
  .bw-hero-section {
    height: calc(100svh - var(--bw-header-h, 48px)) !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: unset !important;
  }

  /* Footer: removed from fixed position — scrolls naturally at page bottom */
  body.template-index .shopify-section-group-footer-group {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .bw-hero-section .slideshow.banner,
  .bw-hero-section .slideshow__slide,
  .bw-hero-section .banner__media,
  .bw-hero-section .slideshow__media {
    height: 100% !important;
    min-height: 100% !important;
  }

  .bw-hero-section .bw-hero-fixed-overlay {
    justify-content: center;
    padding: 0 1.8rem 1.8rem;
  }

  .bw-hero-section .bw-hero-fixed-overlay__inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }

  .bw-hero-section .banner__text,
  .bw-hero-section .banner__text p,
  .bw-hero-section .slideshow__text .rte,
  .bw-hero-section .slideshow__text .rte p {
    text-align: center !important;
    font-size: clamp(2rem, 5.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.09em;
    margin-bottom: 0.45rem;
    margin-top: 0;
  }

  .bw-hero-section .banner__buttons {
    justify-content: center !important;
    margin-top: 0 !important;
  }

  .bw-hero-section .banner__buttons .button {
    min-width: 21rem;
    font-size: 1.6rem;
    font-weight: 800;
  }

  .bw-info-section .company-info__wrapper {
    padding: 40px 24px 20px;
  }

  .bw-info-section .company-info__block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}

/* ---------- Custom scrollbar (subtle) ---------- */
.bw-homepage-snap::-webkit-scrollbar {
  width: 3px;
}

.bw-homepage-snap::-webkit-scrollbar-track {
  background: transparent;
}

.bw-homepage-snap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.bw-homepage-snap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
