/** Shopify CDN: Minification failed

Line 453:25 Unexpected "{"
Line 453:34 Expected ":"
Line 454:25 Unexpected "{"
Line 454:34 Expected ":"
Line 459:25 Unexpected "{"
Line 459:34 Expected ":"
Line 468:25 Unexpected "{"
Line 468:34 Expected ":"
Line 471:27 Unexpected "{"
Line 471:36 Expected ":"
... and 49 more hidden warnings

**/

.dual-acc-sec {
  padding: 60px 0;
}

@media (max-width: 989px) {
  .dual-acc-sec {
    padding: 30px 0;
  }
}

.dual-acc-wrapper {
  display: flex;
  gap: 50px;
  padding: 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden; /* keep rounded corners clean */
  justify-content: space-between;
}

.dual-acc-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dual-bg, none);
  background-size: cover;
  background-position: center;
  transform: var(--bgTransform);
  will-change: transform;
  z-index: 0;
}

.dual-acc-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ae7037;
  opacity: 0.2;
  border-radius: 16px;
  z-index: 1;
}

.dual-acc-wrapper .dual-left,
.dual-acc-wrapper .dual-right {
  /* width: 50%; */
  position: relative;
  z-index: 2;
}

.dual-acc-wrapper .dual-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 580px;
}

.dual-acc-wrapper .right-default-content {
  max-width: 451px;
  margin: 0 0 0 auto;
}

.dual-acc-wrapper p.left-text {
  font-family: Neue Haas Unica W1G;
  font-weight: 200;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.3px;
}

.dual-acc-wrapper .left-accordion-desc {
  display: none;
}

.dual-acc-sec.active .left-accordion-desc {
  display: block;
}

.dual-acc-wrapper button.left-accordion-btn {
  border: none;
  background-color: #ffffff42;
  border-radius: 16px;
  padding: 19px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  width: 100%;
  text-align: left;
  margin-top: 2rem;
}

.dual-acc-wrapper button.left-accordion-btn span {
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 0.8rem;
  display: block !important;
  color: rgba(var(--color-foreground), 1);
  background-color: rgba(var(--color-button), 0.2);
  cursor: pointer;
  padding: 0.8rem;
  right: 2.4rem;
}

.dual-acc-wrapper .title-subtitle-wrpa p {
  font-family: Neue Haas Unica W1G;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.3px;
  margin: 0;
}

.dual-acc-wrapper .title-subtitle-wrpa h4 {
  font-family: Neue Haas Unica W1G;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.3px;
  margin: 0;
}

.dual-acc-wrapper .right-acc-item {
  border-bottom: solid 1px #ffffff;
  padding-top: 15px;
  padding-bottom: 12px;
}

.dual-acc-wrapper button.right-acc-btn {
  font-family: Neue Haas Unica W1G;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.3px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.dual-acc-wrapper .right-acc-desc {
  height: 0;
  overflow: hidden;
  transition: height 300ms ease;
  will-change: height;
  padding: 0;
  margin: 0;
}

.dual-acc-wrapper .right-acc-desc__inner {
  font-family: Neue Haas Unica W1G;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.3px;

  padding-top: 10px;
  padding-bottom: 10px;
}

.dual-acc-wrapper .right-acc-desc ul {
  padding: 0 0 0 20px;
  margin: 0;
}

.dual-acc-wrapper .right-acc-desc ul li:not(:nth-last-child(1)) {
  margin-bottom: 8px;
}

/* Icons */
.dual-acc-wrapper svg.minus-icon {
  display: none;
}

.dual-acc-wrapper button.right-acc-btn.active svg.plus-icon {
  display: none;
}

.dual-acc-wrapper button.right-acc-btn.active svg.minus-icon {
  display: block;
}

.dual-acc-wrapper .mobile-show-only {
  display: none;
}

.dual-acc-wrapper .dual-right {
  position: relative;
}

.dual-acc-wrapper .right-default-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 280ms ease, transform 280ms ease;
  will-change: opacity, transform;
}

@media (min-width: 990px) {
  .dual-acc-wrapper .dual-right {
    min-height: 560px; /* adjust if you want shorter/taller */
  }
}

.dual-acc-sec.active .dual-acc-wrapper .right-default-content {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

@media (min-width: 990px) {
  .dual-acc-wrapper .dual-left {
    opacity: 1;
    transition: opacity 260ms ease, max-width 320ms ease;
    will-change: opacity, max-width;
  }

  .dual-acc-sec.active .dual-acc-wrapper .dual-left {
    opacity: 0;
    max-width: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .dual-acc-sec.active .dual-acc-wrapper .dual-right {
    width: 100%;
  }
}

.dual-acc-wrapper .reveal-panel {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 989px) {
  .dual-acc-wrapper .reveal-panel {
    gap: 95px;
  }
}

.dual-acc-wrapper .reveal-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 100%;
  background: rgba(255,255,255,0.04);
}

.dual-acc-wrapper .reveal-media {
  min-height: 0;
}

.dual-acc-wrapper .reveal-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.dual-acc-wrapper .reveal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dual-acc-wrapper .reveal-close {
  position: absolute;
  top: 0;
  right: 0;

  width: 44px;
  height: 44px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  border: 0;
  background: rgba(255,255,255,0.10);
  color: inherit;
  line-height: 1;
  font-size: 22px;
}

.dual-acc-wrapper .reveal-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.dual-acc-wrapper .reveal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: 0.85;
}

.dual-acc-wrapper .reveal-title {
  margin: 0;
  line-height: 1.12;
}

.dual-acc-wrapper .reveal-body {
  margin: 0;
  line-height: 1.55;
  opacity: 0.92;
}

.dual-acc-wrapper .reveal-close-mobile {
  display: none;
}

@media (max-width: 989px) {
  .dual-acc-wrapper {
    flex-direction: column-reverse;
    padding: 23px;
    gap: 60px;
  }

  .dual-acc-wrapper .dual-left,
  .dual-acc-wrapper .dual-right {
    width: 100%;
  }

  .dual-acc-wrapper .dual-left {
    max-width: 100%;
  }

  .dual-acc-wrapper .right-default-content {
    max-width: 100%;
    margin: 0 0 0 auto;
  }

  .dual-acc-wrapper .mobile-show-only {
    display: block;
  }

  .dual-acc-wrapper .left-content.desktop h2.title--section.h1,
  .dual-acc-wrapper .left-content.desktop p.left-text {
    display: none;
  }

  .dual-acc-wrapper button.right-acc-btn {
    font-size: 18px;
  }

  .dual-acc-wrapper button.left-accordion-btn {
    padding: 11px 15px;
  }

  .dual-acc-wrapper .title-subtitle-wrpa h4 {
    font-size: 15px;
  }

  .dual-acc-wrapper .reveal-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dual-acc-wrapper .reveal-content {
    padding-right: 0;
    justify-content: flex-start;
  }

  .dual-acc-wrapper .reveal-close {
    display: none;
  }

  .dual-acc-wrapper .reveal-close-mobile {
    display: flex;
    margin-top: auto;
    width: 100%;
  }
}

@media (max-width: 749px) {
  .dual-acc-wrapper {
    padding: 23px;
  }

  .dual-acc-wrapper button.left-accordion-btn {
    flex-direction: row-reverse;
    align-items: center;
  }

  .dual-acc-wrapper .right-acc-desc__inner {
    font-size: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dual-acc-wrapper .right-acc-desc,
  .dual-acc-wrapper .right-default-content,
  .dual-acc-wrapper .right-reveal-content,
  .dual-acc-wrapper .dual-left {
    transition: none !important;
  }

  .dual-acc-wrapper::before {
    transform: none !important;
  }
}

.dual-acc-wrapper .reveal-media video {
  transform: scale(1.02);
  transition: transform 520ms ease;
  will-change: transform;
}

.dual-acc-sec.active .dual-acc-wrapper .reveal-media video {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .dual-acc-wrapper .reveal-media video {
    transition: none !important;
    transform: none !important;
  }
}

  /* ---------------------
    default content
  ------------------------*/
  .dual-acc-sec.section-{{ section.id }} .right-default-content { opacity: 0; }
  .dual-acc-sec.section-{{ section.id }}.active .right-default-content { display: none; }

  /* ---------------------
    revealed content
  ------------------------*/  
  .dual-acc-sec.section-{{ section.id }} .right-reveal-content { 
    opacity: 0; 
    position: absolute; 
    inset: 0;   
    transition: opacity 300ms ease, transform 300ms ease; 
    transform: translateY(10px);
    pointer-events: none;
  }

  .dual-acc-sec.section-{{ section.id }}.active .right-reveal-content {opacity: 1; pointer-events: auto}    

  @media (max-width: 768px) {
    .dual-acc-sec.section-{{ section.id }}.active .right-reveal-content { 
      position: relative;
    }
  }

  .dual-acc-sec.section-{{ section.id }}.active .dual-left { display: none; }

  .dual-acc-sec.section-{{ section.id }}.active .dual-right {
    width: 100%;
    max-width: 100%;
  }

  @media (min-width: 989px) {
    .dual-acc-sec.section-{{ section.id }} .reveal-panel {
      /* gap: 95px; */
      display: flex;
      justify-content: space-between;
    }
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 100%;
    background: rgba(255,255,255,0.04);
    min-height: 550px;
    opacity: 0;
  }

  .dual-acc-sec.section-{{ section.id }}.active .reveal-media {opacity: 1}  

  .dual-acc-sec.section-{{ section.id }} .reveal-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-close {
    position: absolute;
    top: 0;
    right: 0;

    width: 44px;
    height: 44px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    border: 0;
    background: rgba(255,255,255,0.10);
    color: inherit;
    line-height: 1;
    font-size: 22px;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    opacity: 0.85;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-title {
    margin: 0;
    line-height: 1.12;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-body {
    margin: 0;
    line-height: 1.55;
    opacity: 0.92;
  }

  .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile {
    display: none; /* default hidden */
  }

  @media (max-width: 900px) {
    .dual-acc-sec.section-{{ section.id }} .reveal-panel {
      grid-template-columns: 1fr;
      min-height: unset;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-media {
      min-height: 220px;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close {
      display: none;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-content {
      padding-right: 0;
      justify-content: flex-start;
      min-height: 1px;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile {
      display: flex;
      margin-top: 18px;
      margin-top: auto; /* ✅ pushes to bottom under paragraph */
      width: 100%;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile.left-accordion-btn {
      border: none;
      background-color: #ffffff42;
      border-radius: 16px;
      padding: 19px 16px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      cursor: pointer;
      width: 100%;
      text-align: left;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile.left-accordion-btn span {
      line-height: 1;
      width: 40px;
      height: 40px;
      border-radius: 0.8rem;
      display: block !important;
      color: rgba(var(--color-foreground), 1);
      background-color: rgba(var(--color-button), 0.2);
      cursor: pointer;
      padding: 0.8rem;
      right: 2.4rem;
    }

    @media (max-width: 749px) {
      .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile.left-accordion-btn {
        flex-direction: row-reverse;
        align-items: center;
        padding: 11px 15px;
      }
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile .title-subtitle-wrpa p {
      font-family: Neue Haas Unica W1G;
      font-weight: 400;
      font-size: 14px;
      line-height: 120%;
      letter-spacing: -0.3px;
      margin: 0;
    }

    .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile .title-subtitle-wrpa h4 {
      font-family: Neue Haas Unica W1G;
      font-weight: 400;
      font-size: 20px;
      line-height: 120%;
      letter-spacing: -0.3px;
      margin: 0;
    }

    @media (max-width: 989px) {
      .dual-acc-sec.section-{{ section.id }} .reveal-close-mobile .title-subtitle-wrpa h4 {
        font-size: 15px;
      }
    }
  