/** Shopify CDN: Minification failed

Line 525:2 Unexpected "{"
Line 525:3 Expected identifier but found "%"
Line 529:2 Unexpected "{"
Line 529:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
/* Styles for the Custom Footer Section */
.custom-footer-section {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 0.5rem 0;
  border-top: 0.5px solid #D2D2D2;
  font-family: 'Suisse Intl', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.custom-footer__container {
  padding: 0 1rem; /* Add horizontal padding for mobile */
}

/* Base styles for logo and links */
.custom-footer__logo-wrapper {
  line-height: 0;
}

.custom-footer__logo-image {
  max-width: 100%;
  height: auto;
}

.custom-footer__link {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.custom-footer__link:hover {
  opacity: 0.7;
}

.custom-footer__flag {
  width: 24px;
  height: auto;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Mobile layout styles */
.custom-footer__desktop-layout {
  display: none;
}

.custom-footer__mobile-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.custom-footer__mobile-nav-left,
.custom-footer__mobile-nav-right {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.custom-footer__mobile-nav-left {
  justify-content: flex-end;
}

.custom-footer__mobile-nav-right {
  justify-content: flex-start;
}


/* Desktop layout styles */
@media (min-width: 769px) {
  .custom-footer__mobile-layout {
    display: none;
  }

  .custom-footer__desktop-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .custom-footer__container.page-width {
    padding-left: var(--padding-container-horizontal, 3rem);
    padding-right: var(--padding-container-horizontal, 3rem);
  }

  .custom-footer__left,
  .custom-footer__right {
    display: flex;
    flex: 1;
  }

  .custom-footer__left {
    justify-content: flex-start;
  }

  .custom-footer__right {
    justify-content: flex-end;
  }
  
  .custom-footer__center {
    flex: 0 1 auto;
  }

  .custom-footer__desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .custom-footer__left-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}
/* Styles for the Hero Slideshow Section */
.hero-slideshow-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  height: var(--section-height, 90vh);
  color: var(--static-text-color, #FFFFFF);
  z-index: 1;
  border-top: 0.5px solid #D2D2D2;
}

.hero-slideshow__vertical-border {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--vertical-border-width, 1px);
  height: 100%;
  background-color: var(--vertical-border-color, #FFFFFF);
  z-index: 10;
}

.hero-slideshow-section.page-width .hero-slideshow__vertical-border {
  left: var(--padding-container-horizontal, 15px);
}

.hero-slideshow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slideshow-section:not(.page-width) .hero-slideshow-wrapper {
  padding-left: var(--vertical-border-width, 1px);
}

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

.hero-slideshow__slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slideshow__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow__image-wrapper picture,
.hero-slideshow__image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slideshow__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #888;
  font-size: 1.5em;
}
.hero-slideshow__placeholder span {
    padding: 20px;
    border: 2px dashed #555;
}

.hero-slideshow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: var(--overlay-opacity, 0.3);
  z-index: 2;
}

.hero-slideshow__static-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-slideshow-section:not(.page-width) .hero-slideshow__static-content-overlay {
  padding-left: var(--vertical-border-width, 1px);
}

.hero-slideshow__content-wrapper {
  padding: 40px 20px;
  max-width: 750px;
  width: 90%;
  pointer-events: auto;
}

.hero-slideshow__content.text-align--left { text-align: left; }
.hero-slideshow__content.text-align--center { text-align: center; }
.hero-slideshow__content.text-align--right { text-align: right; }

.hero-slideshow__heading {
  font-family: var(--heading-font-family, 'Suisse Intl', sans-serif);
  font-weight: var(--heading-font-weight, 600);
  font-style: var(--heading-font-style, normal);
  font-size: var(--heading-font-size-desktop, 30px);
  line-height: var(--heading-line-height, 0.9);
  letter-spacing: -0.03em;
  margin: 0 0 15px 0;
  color: inherit;
  word-wrap: break-word;
}

.hero-slideshow__subheading {
  font-family: var(--subheading-font-family, 'Suisse Intl Mono', monospace);
  font-weight: var(--subheading-font-weight, 400);
  font-style: var(--subheading-font-style, normal);
  font-size: var(--subheading-font-size-desktop, 9.5px);
  line-height: normal; /* Figma Spec: Auto */
  letter-spacing: var(--subheading-letter-spacing, -0.04em);
  margin: 0 0 30px 0;
  color: inherit;
  word-wrap: break-word;
}
.hero-slideshow__subheading p {
    margin: 0;
}

.hero-slideshow__form-wrapper {
  margin-top: 30px;
}

.hero-slideshow__form {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Even closer spacing */
  max-width: 550px;
  background: none; /* Ensure no background interference */
}
/* Align form block based on parent's text-align setting */
.hero-slideshow__content.text-align--left .hero-slideshow__form {
  margin-left: 0;
  margin-right: auto;
}
.hero-slideshow__content.text-align--center .hero-slideshow__form {
  margin-left: auto;
  margin-right: auto;
}
.hero-slideshow__content.text-align--right .hero-slideshow__form {
  margin-left: auto;
  margin-right: 0;
}

.hero-slideshow__form-input,
.hero-slideshow__form-button {
  font-family: 'Suisse Intl Mono', monospace;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 15px;
}

.hero-slideshow__form-input {
  padding: 5px 35px 5px 15px; /* Custom padding for input */
}

.hero-slideshow__form-button {
  padding: 5px 35px; /* Keep button padding consistent */
}

.hero-slideshow__form-input {
  font-size: var(--email-input-font-size-desktop, 10px);
  letter-spacing: var(--email-input-letter-spacing, -0.01em);
  border: 0.5px solid #D2D2D2;
  background-color: rgba(128, 128, 128, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: left; /* Ensure input text is left-aligned */
}
.hero-slideshow__form-input::placeholder {
    color: #FFFFFF;
    text-align: left; /* Ensure placeholder is left-aligned */
    text-transform: uppercase;
}
.hero-slideshow__form-input:focus {
  outline: none;
  border-color: #D2D2D2;
  background-color: rgba(128, 128, 128, 0.85);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-slideshow__form-button {
  font-size: var(--button-font-size-desktop, 10px);
  letter-spacing: var(--button-letter-spacing, -0.01em);
  background-color: var(--static-button-bg-color, #000000) !important;
  color: var(--static-button-text-color, #FFFFFF) !important;
  border: 1px solid var(--static-button-bg-color, #000000) !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
  appearance: none;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
}
.hero-slideshow__form-button:hover {
  opacity: 0.85;
}

.klaviyo-form-message {
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--subheading-font-family, 'Suisse Intl Mono', monospace);
  font-size: 12px;
  color: var(--static-text-color, #FFFFFF);
  min-height: 15px; /* Prevent layout shift */
}

.hero-slideshow__location-details {
  position: absolute;
  bottom: 150px; /* Changed from 250px */
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  pointer-events: none;
}
.hero-slideshow-section.page-width .hero-slideshow__location-details {
    left: calc(var(--padding-container-horizontal, 15px) + var(--vertical-border-width, 1px) + 10px);
}
.hero-slideshow-section:not(.page-width) .hero-slideshow__location-details {
    left: calc(var(--vertical-border-width, 1px) + 10px);
}

/* Animation for location details lines */
.location-detail__line {
  opacity: 0;
  transform: translateX(-15px);
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  margin-bottom: 3px; /* Add spacing between lines */
}

.location-detail__line:last-child {
  margin-bottom: 0; /* Remove margin from last line */
}

.hero-slideshow__slide.is-selected .location-detail__line {
  opacity: 1;
  transform: translateX(0);
}

.hero-slideshow__slide.is-selected .location-detail__line:nth-child(1) {
  transition-delay: 0.3s; /* Stagger the animation */
}
.hero-slideshow__slide.is-selected .location-detail__line:nth-child(2) {
  transition-delay: 0.4s;
}
.hero-slideshow__slide.is-selected .location-detail__line:nth-child(3) {
  transition-delay: 0.5s;
}


.hero-slideshow .flickity-page-dots {
  bottom: 20px;
  z-index: 6;
}
.hero-slideshow .flickity-page-dots .dot {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
  border-radius: 0;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}
.hero-slideshow .flickity-page-dots .dot.is-selected {
  background: #fff;
}

.hero-slideshow .flickity-button {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    z-index: 6;
    transition: background-color 0.3s ease;
}
.hero-slideshow .flickity-button:hover {
    background: rgba(0, 0, 0, 0.6);
}
.hero-slideshow .flickity-prev-next-button {
    width: 44px;
    height: 44px;
}
.hero-slideshow .flickity-prev-next-button.previous { left: 15px; }
.hero-slideshow .flickity-prev-next-button.next { right: 15px; }
.hero-slideshow .flickity-button-icon {
    fill: white;
}

@media (max-width: 768px) {
  .hero-slideshow__heading {
    font-size: var(--heading-font-size-mobile, 30px);
  }
  .hero-slideshow__subheading {
    font-size: var(--subheading-font-size-mobile, 9.5px);
    letter-spacing: var(--subheading-letter-spacing, -0.04em);
    line-height: normal; /* Figma Spec: Auto */
  }
  .hero-slideshow__content-wrapper {
    padding: 30px 15px;
    max-width: 95%;
  }
  .hero-slideshow__form {
    max-width: 100%; /* Full width on mobile */
  }
  /* Form block alignment on mobile */
  .hero-slideshow__content.text-align--left .hero-slideshow__form,
  .hero-slideshow__content.text-align--center .hero-slideshow__form,
  .hero-slideshow__content.text-align--right .hero-slideshow__form {
    margin-left: 0;
    margin-right: auto; /* Default to left-aligning the form block itself on mobile */
  }
  .hero-slideshow__content.text-align--center .hero-slideshow__form {
      margin-left: auto; /* Center form if content is centered */
      margin-right: auto;
  }


  .hero-slideshow__form-input {
    padding: 5px 20px 5px 8px; /* Even less left padding on mobile */
  }

  .hero-slideshow__form-button {
    padding: 5px 20px; /* Keep button padding consistent on mobile */
  }

  .hero-slideshow__form-input {
    font-size: var(--email-input-font-size-mobile, 10px);
    background-color: rgba(128, 128, 128, 0.7);
    color: #FFFFFF;
    border: 0.5px solid #D2D2D2;
    text-align: left; /* Ensure input text is left-aligned on mobile */
  }
  .hero-slideshow__form-input::placeholder {
    color: #FFFFFF;
    text-align: left; /* Ensure placeholder is left-aligned on mobile */
  }
  .hero-slideshow__form-button {
      font-size: var(--button-font-size-mobile, 10px);
      text-align: center; /* Ensure button text is centered on mobile */
      background-color: var(--static-button-bg-color, #000000) !important;
      color: var(--static-button-text-color, #FFFFFF) !important;
  }

  .hero-slideshow__location-details {
    bottom: 150px; /* Changed from 250px */
    font-size: 0.7em;
    line-height: 1.5;
  }
  .hero-slideshow-section.page-width .hero-slideshow__location-details {
    left: calc(var(--padding-container-horizontal, 15px) + var(--vertical-border-width, 1px) + 5px);
  }
  .hero-slideshow-section:not(.page-width) .hero-slideshow__location-details {
    left: calc(var(--vertical-border-width, 1px) + 5px);
  }

  .hero-slideshow .flickity-prev-next-button {
    display: none;
  }
  {% if show_arrows %}
   .hero-slideshow .flickity-prev-next-button {
      display: block;
   }
  {% endif %}
}

.hero-slideshow__onboarding-message {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #aaa;
  font-size: 1.2em;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
/* Styles for the Multi Video Grid Section */
.multi-video-grid-section {
  /* Remove top/bottom padding if going edge-to-edge */
   padding-top: 0;
   padding-bottom: 0;
   background-color: #141414; /* Updated background color */
}

.multi-video-grid__container.page-width {
  /* Apply theme's page width constraints if full width is disabled */
  padding-left: var(--padding-container-horizontal, 15px); /* Use theme variables or fallback */
  padding-right: var(--padding-container-horizontal, 15px);
  max-width: var(--width-site, 1200px); /* Use theme variable or fallback */
  margin-left: auto;
  margin-right: auto;
}

.multi-video-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 column */
  gap: 0px; /* Default gap (mobile) */
  width: 100%;
}

/* START: Mobile Visibility Change */
/* Hide items other than the first one on mobile by default */
.multi-video-grid__item--hide-mobile {
  display: none;
}
/* END: Mobile Visibility Change */


/* Desktop: 4 columns */
@media (min-width: 769px) { /* Adjust breakpoint as needed */
  .multi-video-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2px; /* Added small horizontal gap */
    row-gap: 0; /* Ensure no vertical gap */
  }

  /* START: Mobile Visibility Change */
  /* Ensure all items are displayed on desktop */
  .multi-video-grid__item--hide-mobile {
    display: block; /* Or flex, grid, inline-block depending on item's display type */
  }
  /* END: Mobile Visibility Change */
}

.multi-video-grid__item {
  width: 100%;
}

.video-thumbnail__wrapper {
  /* Inherit background from section, remove individual item background */
  /* background-color: #1a1a1a; */
  overflow: hidden; /* Contain elements */
  width: 100%; /* Ensure wrapper takes full grid item width */
  display: flex; /* Use flex to ensure content pushes down */
  flex-direction: column;
  height: 100%; /* Make wrapper fill grid item height */
}

.video-thumbnail__link {
  display: block;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-size: cover;
  background-position: center;
  background-color: #333; /* Dark fallback background */
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
}

.video-thumbnail__link:hover {
  opacity: 0.9; /* Slight fade on hover */
}

.video-thumbnail__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #444; /* Darker placeholder */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1em; /* Slightly smaller for grid */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-thumbnail__content {
  /* Inherit background from section */
  /* background-color: #1a1a1a; */
  color: #ffffff;
  padding: 15px 20px; /* Adjust padding for grid items */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1; /* Allow content to take remaining space */
  width: 100%;
}

.video-thumbnail__text-wrapper {
  flex-grow: 1;
  margin-right: 15px; /* Space between text and icon */
  overflow: hidden; /* Prevent text overflow issues */
}

.video-thumbnail__title {
  margin: 0 0 5px 0;
  font-size: 1em; /* Adjust as needed */
  font-family: 'Suisse Intl', sans-serif; /* Added Suisse Intl font */
  font-weight: 600; /* Semibold */
  color: #ffffff;
  line-height: 1.3;
  white-space: nowrap; /* Prevent title wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Add ellipsis if title is too long */
}

.video-thumbnail__description {
  font-size: 0.85em; /* Adjust as needed */
  font-family: 'Suisse Intl Mono', monospace; /* Added Suisse Intl Mono font */
  font-weight: 400; /* Regular */
  color: #cccccc;
  line-height: 1.4;
}

.video-thumbnail__description p {
  margin: 0;
}

.video-thumbnail__play-icon-wrapper {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}

.video-thumbnail__play-icon {
  width: 40px; /* Slightly smaller icon for grid */
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-thumbnail__play-icon-wrapper:hover .video-thumbnail__play-icon {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.video-thumbnail__play-icon svg {
  fill: #ffffff;
  width: 18px; /* Adjust SVG size */
  height: 18px;
  margin-left: 2px;
}

/* Hide icon wrapper if setting is unchecked */
/* This logic is now per-block, handled by Liquid */

.multi-video-grid__onboarding {
  padding: 40px;
  text-align: center;
  color: #ccc;
  grid-column: 1 / -1; /* Span full grid width */
}
/* Styles for the Multi Video Grid Section */
.multi-video-grid-section {
  padding-top: 0.5rem; /* Adjusted top padding */
  padding-bottom: 0.2rem; /* Adjusted bottom padding */
  background-color: #141414; /* Dark background to the whole section */
  border-top: 0.5px solid #D2D2D2; /* Added top border line */
  border-bottom: 0.5px solid #D2D2D2; /* Added bottom border line */
}

.multi-video-grid__container.page-width {
  padding-left: var(--padding-container-horizontal, 15px);
  padding-right: var(--padding-container-horizontal, 15px);
  max-width: var(--width-site, 1200px);
  margin-left: auto;
  margin-right: auto;
}

.multi-video-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 column */
  gap: 12px; /* Reduced gap for mobile */
  width: 100%;
}

/* Desktop: 4 columns */
@media (min-width: 769px) {
  .multi-video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px; /* Adjusted gap for a smaller space on desktop */
  }
}

.multi-video-grid__item {
  width: 100%;
  /* The background for the whole item is now handled by the content block for consistency */
}

.video-thumbnail__wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-thumbnail__link {
  display: block;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-size: cover;
  background-position: center;
  background-color: #333; /* Dark fallback background */
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
}

.video-thumbnail__link:hover {
  opacity: 0.9;
}

.video-thumbnail__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-family: 'Suisse Intl Mono', monospace; /* Use mono font */
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-thumbnail__content {
  background-color: #141414; /* Explicitly set background for the content area */
  color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: flex-start; /* Align items to the top */
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  font-family: 'Suisse Intl Mono', monospace; /* Apply mono font to content */
}

.video-thumbnail__text-wrapper {
  flex-grow: 1;
  margin-right: 15px;
  overflow: hidden;
}

.video-thumbnail__title {
  margin: 0 0 8px 0; /* Increased bottom margin */
  font-size: 1.1em;
  font-weight: 400; /* Regular font weight */
  color: #ffffff;
  line-height: 1.3;
  text-transform: none; /* Keep title case as is */
  white-space: normal; /* Allow title wrapping */
}

.video-thumbnail__description {
  font-size: 0.9em;
  color: #cccccc;
  line-height: 1.5;
  text-transform: uppercase; /* Uppercase description */
  letter-spacing: 0.05em; /* Add letter spacing */
}

.video-thumbnail__description p {
  margin: 0;
}

.video-thumbnail__play-icon-wrapper {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}

.video-thumbnail__play-icon {
  width: 40px;
  height: 40px;
  background-color: transparent; /* Transparent background */
  border: 2px solid rgba(255, 255, 255, 0.6); /* Thicker border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-thumbnail__play-icon-wrapper:hover .video-thumbnail__play-icon {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.video-thumbnail__play-icon svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.multi-video-grid__onboarding {
  padding: 40px;
  text-align: center;
  color: #ccc;
  grid-column: 1 / -1;
}