/** Shopify CDN: Minification failed

Line 1510:20 Unexpected "{"
Line 1510:29 Expected ":"
Line 1517:20 Unexpected "{"
Line 1517:29 Expected ":"
Line 1528:20 Unexpected "{"
Line 1528:29 Expected ":"
Line 1533:20 Unexpected "{"
Line 1533:29 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bundle-feature (INDEX:2) */
.bundle-card-feature {
    width: 100%;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .bundle-card-feature.bundle-reveal-ready {
    opacity: 0;
    transform: translateY(20px);
  }

  .bundle-card-feature.bundle-reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
  }

  .bundle-card-feature,
  .bundle-card-feature h2,
  .bundle-card-feature p,
  .bundle-card-feature span,
  .bundle-card-feature a {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .bundle-card-feature__copy {
    padding: clamp(54px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .bundle-card-feature__badge {
    width: max-content;
    margin-bottom: 24px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: bundle-badge-glow 2s ease-in-out infinite;
  }

  .bundle-card-feature:hover .bundle-card-feature__badge {
    animation-name: bundle-badge-glow-strong;
  }

  .bundle-card-feature .eyebrow {
    margin-bottom: 18px;
  }

  .bundle-card-feature h2 {
    max-width: 680px;
    margin: 0 0 24px;
    font-size: clamp(46px, 5.4vw, 82px);
    font-weight: 560;
    line-height: .96;
    letter-spacing: -.04em;
  }

  .bundle-card-feature__text {
    max-width: 490px;
    color: #c7c7c7;
    font-size: 14px;
    line-height: 1.6;
  }

  .bundle-card-feature__text p {
    margin-bottom: 0;
  }

  .bundle-card-feature__price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 22px;
    font-size: 16px;
  }

  .bundle-card-feature__price s {
    color: #8f8f8f;
    font-size: 12px;
  }

  .bundle-card-feature__form {
    width: max-content;
    margin: 0;
  }

  .bundle-card-feature__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 24px;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    background: transparent;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .bundle-card-feature__button:disabled {
    cursor: not-allowed;
    opacity: .5;
  }

  .bundle-card-feature__button:hover:not(:disabled) {
    background: #fff;
    color: #0a0a0a;
    transform: scale(1.02);
  }

  .bundle-card-feature__media {
    position: relative;
    width: min(82%, 590px);
    aspect-ratio: 1;
    place-self: center;
    display: block;
    overflow: hidden;
    background: #f5f5f5;
  }

  .bundle-card-feature__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5%;
    transform: scale(1);
    transition: opacity 600ms ease-out, transform 800ms ease-out;
  }

  .bundle-card-feature__image--primary {
    opacity: 1;
  }

  .bundle-card-feature__image--secondary {
    opacity: 0;
  }

  .bundle-card-feature.is-swapped .bundle-card-feature__image--primary {
    opacity: 0;
  }

  .bundle-card-feature.is-swapped .bundle-card-feature__image--secondary {
    opacity: 1;
  }

  .bundle-card-feature__media:hover .bundle-card-feature__image {
    transform: scale(1.02);
  }

  @keyframes bundle-badge-glow {
    0%,
    100% {
      box-shadow: 0 0 8px rgba(255, 255, 255, .2);
    }
    50% {
      box-shadow: 0 0 20px rgba(255, 255, 255, .4);
    }
  }

  @keyframes bundle-badge-glow-strong {
    0%,
    100% {
      box-shadow: 0 0 12px rgba(255, 255, 255, .3);
    }
    50% {
      box-shadow: 0 0 26px rgba(255, 255, 255, .52);
    }
  }

  @media (max-width: 749px) {
    .bundle-card-feature {
      position: relative;
      height: auto;
      max-height: none;
      min-height: 0;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      padding: 24px 0 0;
      gap: 0;
      isolation: isolate;
    }

    .bundle-card-feature__copy::before {
      content: "";
      position: absolute;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 34%;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, .5) 70%,
        #000000 100%
      );
    }

    .bundle-card-feature__media {
      z-index: 0;
      width: 100%;
      height: auto;
      aspect-ratio: 1;
      grid-row: 1;
      place-self: stretch;
      background: #000;
    }

    .bundle-card-feature__copy {
      position: relative;
      z-index: 2;
      grid-row: 2;
      padding: 18px 20px 6px;
      align-items: center;
      justify-content: flex-start;
      background: #000;
      text-align: center;
    }

    .bundle-card-feature__image {
      padding: 0;
      object-fit: cover;
    }

    .bundle-card-feature__badge {
      margin-inline: auto;
      margin-bottom: 12px;
      padding: 6px 10px;
      font-size: 8px;
    }

    .bundle-card-feature .eyebrow {
      width: 100%;
      margin-inline: auto;
      margin-bottom: 10px;
      text-align: center;
    }

    .bundle-card-feature h2 {
      max-width: 350px;
      margin-bottom: 12px;
      font-size: 34px;
      line-height: .98;
    }

    .bundle-card-feature__text {
      max-width: 350px;
      font-size: 12px;
      line-height: 1.45;
    }

    .bundle-card-feature__price {
      justify-content: center;
      margin-top: 12px;
      font-size: 14px;
    }

    .bundle-card-feature__form {
      width: 100%;
    }

    .bundle-card-feature__button {
      width: 100%;
      min-height: 42px;
      margin-top: 16px;
      font-size: 12px;
    }
  }

  @media (max-width: 380px) {
    .bundle-card-feature h2 {
      font-size: 28px;
    }

    .bundle-card-feature__copy {
      padding-top: 16px;
      padding-bottom: 4px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .bundle-card-feature__badge {
      animation: none;
    }

    .bundle-card-feature.bundle-reveal-ready,
    .bundle-card-feature.bundle-reveal-ready.is-visible {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .bundle-card-feature__image,
    .bundle-card-feature__button {
      transition: none;
    }

    .bundle-card-feature__media:hover .bundle-card-feature__image,
    .bundle-card-feature__button:hover {
      transform: none;
    }
  }
/* END_SECTION:bundle-feature */

/* START_SECTION:compare-masks (INDEX:3) */
.mask-compare {
    overflow: hidden;
    background: #0a0a0a;
    color: #ffffff;
  }

  .mask-compare__inner {
    width: 100%;
    padding: clamp(64px, 7vw, 104px) clamp(20px, 4vw, 64px);
  }

  .mask-compare__heading {
    margin-bottom: clamp(32px, 4vw, 56px);
  }

  .mask-compare__heading h2 {
    max-width: 850px;
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 560;
    line-height: .98;
    letter-spacing: -.04em;
  }

  .mask-compare__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: #353535;
    border: 1px solid #353535;
  }

  .mask-compare__card {
    min-width: 0;
    background: #111111;
  }

  .mask-compare__media {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #171717;
  }

  .mask-compare__media img,
  .mask-compare__media svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5%;
    transition: transform 360ms ease;
  }

  .mask-compare__card:hover .mask-compare__media img {
    transform: scale(1.02);
  }

  .mask-compare__body {
    padding: clamp(22px, 3vw, 40px);
  }

  .mask-compare__body h3 {
    margin: 0 0 28px;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 560;
    line-height: 1.1;
    letter-spacing: -.025em;
  }

  .mask-compare__body dl {
    margin: 0 0 30px;
    border-top: 1px solid #383838;
  }

  .mask-compare__body dl div {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid #383838;
  }

  .mask-compare__body dt {
    color: #9c9c9c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mask-compare__body dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .mask-compare__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    font-size: 13px;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .mask-compare__button:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: scale(1.02);
  }

  @media (max-width: 749px) {
    .mask-compare__inner {
      padding: 36px 0 0;
    }

    .mask-compare__heading {
      margin: 0 20px 24px;
    }

    .mask-compare__heading h2 {
      max-width: 330px;
      font-size: 36px;
      line-height: 1;
    }

    .mask-compare__grid {
      width: 100%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border-inline: 0;
    }

    .mask-compare__media {
      width: 100%;
      aspect-ratio: 1 / 1.12;
    }

    .mask-compare__media img,
    .mask-compare__media svg {
      padding: 3%;
    }

    .mask-compare__body {
      padding: 16px 10px 18px;
    }

    .mask-compare__body h3 {
      min-height: 38px;
      margin-bottom: 14px;
      font-size: 15px;
      line-height: 1.2;
    }

    .mask-compare__body dl {
      margin-bottom: 16px;
    }

    .mask-compare__body dl div {
      min-height: 48px;
      display: block;
      padding: 8px 0;
    }

    .mask-compare__body dt {
      margin-bottom: 3px;
      font-size: 7px;
      line-height: 1.2;
      letter-spacing: .08em;
    }

    .mask-compare__body dd {
      font-size: 10px;
      line-height: 1.3;
      overflow-wrap: anywhere;
    }

    .mask-compare__button {
      width: 100%;
      min-height: 38px;
      padding: 0 8px;
      font-size: 10px;
      white-space: nowrap;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mask-compare__media img,
    .mask-compare__button {
      transition: none;
    }
  }
/* END_SECTION:compare-masks */

/* START_SECTION:editorial-story (INDEX:4) */
.editorial-story {
    position: relative;
    min-height: 0;
    height: min(760px, calc(100svh - var(--header-height, 72px)));
    overflow: hidden;
  }

  .editorial-story__media,
  .editorial-story__copy {
    position: relative;
    z-index: 2;
    min-height: 0;
  }

  .editorial-story__copy {
    padding: clamp(34px, 5vw, 70px);
  }

  .editorial-story h2 {
    margin-bottom: clamp(16px, 2vw, 24px);
    font-size: clamp(42px, 4.5vw, 70px);
  }

  .editorial-story__text {
    margin-bottom: clamp(16px, 2vw, 24px);
    line-height: 1.55;
  }

  .editorial-story .story-points {
    margin-bottom: clamp(18px, 2.4vw, 28px);
  }

  .editorial-story .story-points li {
    padding: 11px 0;
  }

  .editorial-story .button {
    border-radius: 999px;
  }

  .editorial-story__background {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: #0a0a0a;
  }

  .editorial-story__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .editorial-story__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: var(--story-overlay-opacity);
    pointer-events: none;
  }

  .editorial-story--immersive {
    background: #0a0a0a;
    color: #fff;
    isolation: isolate;
  }

  .editorial-story--immersive .editorial-story__media {
    background: transparent;
  }

  .editorial-story--immersive .editorial-story__text {
    color: rgba(255, 255, 255, .78);
  }

  .editorial-story__gradient {
    background:
      radial-gradient(circle at 50% 50%, #171717 0%, #0a0a0a 65%, #050505 100%);
  }

  .editorial-story__orb {
    position: absolute;
    width: min(46vw, 640px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
    filter: blur(120px);
    opacity: .7;
    will-change: transform;
  }

  .editorial-story__orb--one {
    top: -35%;
    left: -12%;
    animation: story-orb-one 16s ease-in-out infinite alternate;
  }

  .editorial-story__orb--two {
    right: -18%;
    bottom: -45%;
    width: min(55vw, 760px);
    background: rgba(205, 205, 205, .2);
    animation: story-orb-two 21s ease-in-out infinite alternate;
  }

  .editorial-story__orb--three {
    top: 35%;
    left: 42%;
    width: min(30vw, 420px);
    background: rgba(255, 255, 255, .14);
    animation: story-orb-three 12s ease-in-out infinite alternate;
  }

  @keyframes story-orb-one {
    from { transform: translate3d(-4%, -4%, 0) scale(.9); }
    to { transform: translate3d(46%, 30%, 0) scale(1.14); }
  }

  @keyframes story-orb-two {
    from { transform: translate3d(8%, 8%, 0) scale(1); }
    to { transform: translate3d(-38%, -26%, 0) scale(.86); }
  }

  @keyframes story-orb-three {
    from { transform: translate3d(-20%, 24%, 0) scale(.82); }
    to { transform: translate3d(28%, -28%, 0) scale(1.18); }
  }

  @media (max-width: 820px) {
    .editorial-story,
    .editorial-story--reverse {
      height: calc(100svh - var(--header-height, 66px));
      max-height: 760px;
      grid-template-rows: 42% 58%;
    }

    .editorial-story__media {
      min-height: 0;
    }

    .editorial-story__copy {
      min-height: 0;
      padding: clamp(18px, 4.5vw, 28px) 22px;
      justify-content: center;
    }

    .editorial-story h2 {
      margin-bottom: 12px;
      font-size: clamp(34px, 10vw, 48px);
      line-height: .96;
    }

    .editorial-story__text {
      margin-bottom: 12px;
      font-size: 12px;
      line-height: 1.45;
    }

    .editorial-story .story-points {
      margin-bottom: 15px;
    }

    .editorial-story .story-points li {
      padding: 7px 0;
      font-size: 8px;
    }

    .editorial-story .buy-row {
      gap: 14px;
    }

    .editorial-story .button {
      min-height: 42px;
      padding: 0 20px;
    }

    .editorial-story--immersive .editorial-story__media {
      grid-row: 1;
    }

    .editorial-story--immersive .editorial-story__background {
      height: 100%;
    }
  }

  @media (max-width: 390px), (max-height: 690px) and (max-width: 820px) {
    .editorial-story,
    .editorial-story--reverse {
      grid-template-rows: 36% 64%;
    }

    .editorial-story__copy {
      padding-block: 14px;
    }

    .editorial-story h2 {
      font-size: 34px;
    }

    .editorial-story__text {
      margin-bottom: 8px;
    }

    .editorial-story .story-points {
      margin-bottom: 10px;
    }

    .editorial-story .story-points li {
      padding: 5px 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .editorial-story__orb {
      animation: none;
    }
  }
/* END_SECTION:editorial-story */

/* START_SECTION:faq-accordion (INDEX:6) */
.reference-faq {
    background: #fff;
    color: #0a0a0a;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .reference-faq,
  .reference-faq h2,
  .reference-faq p,
  .reference-faq summary,
  .reference-faq span,
  .reference-faq div {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .reference-faq__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 38%) minmax(0, 62%);
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(52px, 6vw, 82px) clamp(20px, 4vw, 64px);
  }

  .reference-faq__heading .eyebrow {
    margin-bottom: 16px;
  }

  .reference-faq__heading h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(44px, 5.5vw, 78px);
    font-weight: 560;
    line-height: .96;
    letter-spacing: -.04em;
  }

  .reference-faq__items {
    border-top: 1px solid #0a0a0a;
  }

  .reference-faq__item {
    border-bottom: 1px solid rgba(10, 10, 10, .16);
  }

  .reference-faq__item summary {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 0;
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
  }

  .reference-faq__item summary::-webkit-details-marker {
    display: none;
  }

  .reference-faq__icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 200ms ease;
  }

  .reference-faq__item[open] .reference-faq__icon {
    transform: rotate(45deg);
  }

  .reference-faq__answer {
    max-width: 680px;
    padding: 0 42px 20px 0;
    color: #555;
    font-size: 12px;
    line-height: 1.55;
  }

  .reference-faq__answer p {
    margin-bottom: 0;
  }

  @media (max-width: 749px) {
    .reference-faq__inner {
      min-height: 0;
      display: block;
      padding: 22px 20px 20px;
    }

    .reference-faq__heading {
      margin-bottom: 16px;
    }

    .reference-faq__heading .eyebrow {
      margin-bottom: 8px;
      font-size: 8px;
    }

    .reference-faq__heading h2 {
      max-width: 330px;
      font-size: 32px;
      line-height: 1;
    }

    .reference-faq__item summary {
      min-height: 48px;
      gap: 12px;
      font-size: 10px;
      line-height: 1.25;
    }

    .reference-faq__icon {
      font-size: 17px;
    }

    .reference-faq__answer {
      padding: 0 28px 14px 0;
      font-size: 10px;
      line-height: 1.45;
    }
  }

  @media (max-width: 380px) {
    .reference-faq__inner {
      padding-top: 16px;
      padding-bottom: 14px;
    }

    .reference-faq__heading {
      margin-bottom: 12px;
    }

    .reference-faq__heading h2 {
      font-size: 29px;
    }

    .reference-faq__item summary {
      min-height: 44px;
      font-size: 9px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reference-faq__icon {
      transition: none;
    }
  }
/* END_SECTION:faq-accordion */

/* START_SECTION:footer-luxury (INDEX:8) */
.luxury-footer {
    padding: clamp(90px, 11vw, 160px) 0 36px;
    overflow: hidden;
    background: #0a0a0a;
    color: #ffffff;
  }

  .luxury-footer__inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 64px);
  }

  .luxury-footer h2 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(46px, 6.5vw, 80px);
    font-weight: 560;
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .luxury-footer__text {
    max-width: 550px;
    margin: 30px 0 100px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 18px;
    line-height: 1.5;
  }

  .luxury-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
  }

  .luxury-footer__nav {
    display: flex;
    gap: 28px;
  }

  .luxury-footer__nav a {
    color: inherit;
    text-decoration: none;
    transition: opacity 200ms ease;
  }

  .luxury-footer__nav a:hover {
    opacity: 0.6;
  }

  @media (max-width: 749px) {
    .luxury-footer {
      padding: 72px 0 28px;
    }

    .luxury-footer h2 {
      font-size: clamp(42px, 13vw, 60px);
    }

    .luxury-footer__text {
      margin: 24px 0 64px;
      font-size: 15px;
    }

    .luxury-footer__bottom {
      flex-direction: column-reverse;
      gap: 24px;
    }

    .luxury-footer__nav {
      flex-wrap: wrap;
      gap: 14px 24px;
    }
  }
/* END_SECTION:footer-luxury */

/* START_SECTION:header (INDEX:10) */
.site-header {
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(20px, 4vw, 64px);
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(10, 10, 10, .14);
    background: #fff;
    color: #0a0a0a;
  }

  .site-header--overlay {
    position: absolute;
    inset: 0 0 auto;
    border-bottom-color: rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
  }

  .site-header nav {
    display: flex;
    gap: 30px;
    font-size: 13px;
  }

  .site-header a {
    color: inherit;
    text-decoration: none;
  }

  .site-header nav a {
    position: relative;
  }

  .site-header nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms ease-out;
  }

  .site-header nav a:hover::after,
  .site-header nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-header {
    transition: min-height 400ms ease-out, background-color 400ms ease-out, color 400ms ease-out, box-shadow 400ms ease-out, backdrop-filter 400ms ease-out;
  }

  .site-brand {
    transition: transform 400ms ease-out;
    transform-origin: left center;
  }

  .site-header.is-scrolled {
    min-height: 60px;
    background: rgba(255, 255, 255, .94);
    color: #0a0a0a;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled .site-brand {
    transform: scale(.92);
  }

  .site-brand {
    font-weight: 700;
    letter-spacing: .16em;
  }

  .site-brand img {
    width: auto;
    max-width: 140px;
    max-height: 42px;
  }

  .header-cart {
    justify-self: end;
    font-size: 13px;
  }

  @media (max-width: 749px) {
    .site-header {
      min-height: 62px;
      grid-template-columns: 1fr auto;
    }

    .site-header nav {
      display: none;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hero-product-first (INDEX:11) */
.hero {
    min-height: var(--hero-height);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
    color: #fff;
  }

  .hero__media,
  .hero__veil {
    position: absolute;
    inset: 0;
  }

  .hero__media img,
  .hero__media video {
    display: block;
    width: 100%;
    height: 115%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(0, 0, 0, calc(var(--overlay) + .22)), rgba(0, 0, 0, calc(var(--overlay) * .2)));
  }

  .hero__proof {
    margin: 14px 0 0;
    max-width: 46rem;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 64px);
    padding-bottom: clamp(56px, 8vw, 120px);
  }

  .hero .eyebrow {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .16em;
    margin: 0 0 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 6.5vw, 80px);
    line-height: .96;
    letter-spacing: -.04em;
    font-weight: 560;
    margin: 0;
    max-width: 1000px;
  }

  .hero__copy {
    font-size: clamp(17px, 2vw, 22px);
    max-width: 610px;
    margin: 28px 0 38px;
  }

  .hero .button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
  }

  .hero .button:hover {
    transform: translateY(-2px);
  }

  .hero .button--glass {
    color: #fff;
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
  }

  .hero .button--glass:hover {
    color: #0a0a0a;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
  }

  @media (max-width: 749px) {
    .hero {
      min-height: 82svh;
    }

    .hero__media img,
    .hero__media video {
      height: 100%;
    }

    .hero__content {
      padding-bottom: 48px;
    }

    .hero h1 {
      font-size: clamp(44px, 13vw, 64px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero__media img,
    .hero__media video {
      transform: none !important;
    }
  }
/* END_SECTION:hero-product-first */

/* START_SECTION:main-cart (INDEX:19) */
/* Cart navigation */
  .cart-navigation {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .cart-navigation__link {
    min-height: 42px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition:
      background-color 250ms ease-out,
      border-color 250ms ease-out,
      color 250ms ease-out,
      transform 250ms ease-out;
  }

  .cart-navigation__link:hover,
  .cart-navigation__link:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
  }

  .cart-navigation__link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
  }

  .cart-item__media {
    width: 140px;
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    background: var(--surface);
  }

  .cart-item__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 8%;
  }

  .cart-item__title {
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
  }

  .cart-item__quantity {
    width: 80px;
    min-height: 42px;
  }

  .cart-item__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px 10px;
  }

  .cart-item__price-current {
    font-size: 16px;
    line-height: 1.2;
  }

  .cart-item__price-compare {
    color: #777;
    font-size: 13px;
    line-height: 1.2;
  }

  .cart-item__price-saved {
    flex-basis: 100%;
    color: var(--ink);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: right;
    text-transform: uppercase;
  }

  .cart-summary__subtotal {
    display: flex;
    justify-content: space-between;
  }

  .cart-bundle-offer {
    margin-top: clamp(72px, 8vw, 120px);
    display: grid;
    grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f7f7f5;
  }

  .cart-bundle-offer__media {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    background: #fff;
  }

  .cart-bundle-offer__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 10%;
    transition: transform 500ms ease-out;
  }

  .cart-bundle-offer:hover .cart-bundle-offer__media img {
    transform: scale(1.03);
  }

  .cart-bundle-offer__content {
    align-self: center;
    padding: clamp(40px, 6vw, 84px);
  }

  .cart-bundle-offer__content h2 {
    max-width: 620px;
    margin-bottom: 22px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    line-height: .96;
  }

  .cart-bundle-offer__text {
    max-width: 540px;
    margin-bottom: 26px;
    color: #626262;
    line-height: 1.7;
  }

  .cart-bundle-offer__price {
    display: flex;
    gap: 14px;
    align-items: baseline;
    margin-bottom: 28px;
  }

  .cart-bundle-offer__price span {
    font-size: 18px;
  }

  .cart-bundle-offer__price s {
    color: #777;
  }

  .cart-bundle-offer__price strong {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .cart-bundle-offer__form {
    margin: 0;
  }

  .cart-bundle-offer__form .button {
    min-width: 220px;
    border-radius: 999px;
  }

  @media (max-width: 749px) {
    .cart-navigation {
      gap: 8px;
      margin-bottom: 40px;
    }

    .cart-navigation__link {
      min-height: 38px;
      flex: 1;
      gap: 7px;
      padding: 0 10px;
      font-size: 8px;
      letter-spacing: .07em;
      white-space: nowrap;
    }

    .cart-item {
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 18px;
    }

    .cart-item__media {
      width: 96px;
    }

    .cart-item > div:last-child {
      grid-column: 2;
    }

    .cart-item__title {
      font-size: 21px;
    }

    .cart-item__price {
      justify-content: flex-start;
      gap: 4px 8px;
    }

    .cart-item__price-current {
      font-size: 15px;
    }

    .cart-item__price-saved {
      text-align: left;
    }

    .cart-bundle-offer {
      margin-top: 80px;
      grid-template-columns: 1fr;
    }

    .cart-bundle-offer__media {
      max-width: none;
    }

    .cart-bundle-offer__content {
      padding: 40px 24px 48px;
    }

    .cart-bundle-offer__content h2 {
      font-size: 40px;
    }

    .cart-bundle-offer__form .button {
      width: 100%;
      min-width: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cart-bundle-offer__media img {
      transition: none;
    }

    .cart-bundle-offer:hover .cart-bundle-offer__media img {
      transform: none;
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:20) */
/* Product photo box on /collections/all: force a true 1:1 square at
     every breakpoint and crop the image edge-to-edge with object-fit:
     cover, so it always fills its container exactly instead of
     depending on a fixed min-height that can mismatch the column width. */
  #shopify-section-{{ section.id }} .product-card__media {
    aspect-ratio: 1;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
  }

  #shopify-section-{{ section.id }} .product-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
  }

  /* Safety net: the grid itself can never exceed the viewport width,
     regardless of anything inside a card. */
  #shopify-section-{{ section.id }} .product-grid {
    max-width: 100%;
    overflow-x: hidden;
  }

  #shopify-section-{{ section.id }} .product-card {
    min-width: 0;
    max-width: 100%;
  }
/* END_SECTION:main-collection */

/* START_SECTION:main-product (INDEX:23) */
.product-buybox__back-button {
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }

  @media (min-width: 750px) {
    .product-buybox__back-button {
      width: auto;
    }
  }
/* END_SECTION:main-product */

/* START_SECTION:social-proof-compact (INDEX:30) */
.social-proof-compact {
    padding-block: 56px;
    background: #fafafa;
    color: #0a0a0a;
  }

  .social-proof-compact__inner {
    width: min(100% - 40px, 1440px);
    margin-inline: auto;
  }

  .social-proof-compact__header {
    display: block;
    margin-bottom: 34px;
    text-align: center;
  }

  .social-proof-compact__eyebrow {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .social-proof-compact h2 {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .social-proof-compact__carousel {
    border-top: 1px solid rgba(10, 10, 10, 0.18);
  }

  .social-proof-compact__track {
    min-height: 190px;
  }

  .social-proof-compact__slide {
    margin: 0;
    padding: 34px 0 24px;
    text-align: center;
  }

  .social-proof-compact__slide[hidden] {
    display: none;
  }

  .social-proof-compact blockquote {
    max-width: 1040px;
    margin: 0 auto;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .social-proof-compact figcaption {
    margin-top: 24px;
    font-size: 11px;
    font-weight: 600;
  }

  .social-proof-compact figcaption span {
    margin-left: 10px;
    color: rgba(10, 10, 10, 0.55);
    font-weight: 400;
  }

  .social-proof-compact__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .social-proof-compact__controls button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(10, 10, 10, 0.18);
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .social-proof-compact__counter {
    min-width: 42px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  @media (max-width: 749px) {
    .social-proof-compact {
      padding-block: 28px;
    }

    .social-proof-compact__header {
      display: block;
      margin-bottom: 18px;
    }

    .social-proof-compact__eyebrow {
      margin-bottom: 8px;
    }

    .social-proof-compact h2 {
      font-size: 38px;
    }

    .social-proof-compact__track {
      min-height: 168px;
    }

    .social-proof-compact__slide {
      padding: 22px 0 16px;
    }

    .social-proof-compact blockquote {
      font-size: 25px;
      line-height: 1.1;
    }

    .social-proof-compact figcaption {
      margin-top: 18px;
    }

    .social-proof-compact__controls button {
      width: 36px;
      height: 36px;
    }
  }
/* END_SECTION:social-proof-compact */

/* START_SECTION:why-light-interactive (INDEX:32) */
.why-light {
    position: relative;
    overflow: hidden;
    background: var(--why-light-bg);
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    isolation: isolate;
  }

  .why-light,
  .why-light button,
  .why-light p,
  .why-light span {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .why-light__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(48px, 6vw, 84px) clamp(20px, 4vw, 64px);
  }

  .why-light__label {
    margin: 0 0 clamp(24px, 3.5vw, 40px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
  }

  .why-light.why-light-ready .why-light__label {
    opacity: 0;
    transform: translateY(10px);
  }

  .why-light.why-light-ready.is-entered .why-light__label {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
  }

  .why-light__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .why-light__card {
    position: relative;
    min-height: 286px;
    padding: clamp(24px, 2.5vw, 36px);
    overflow: hidden;
    border: 1px solid #333;
    background: transparent;
    transform: translateY(0);
    transition:
      border-color 600ms ease-in,
      background 600ms ease-in,
      transform 600ms ease-in;
  }

  .why-light__trigger {
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
  }

  .why-light__icon-wrap {
    position: relative;
    width: 84px;
    height: 98px;
    display: block;
  }

  .why-light__icon-wrap::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 211, .22) 0%, rgba(255, 255, 255, .06) 35%, transparent 70%);
    opacity: 0;
    transform: scale(.78);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
  }

  .why-light__icon {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: transparent;
    opacity: .45;
    animation: why-light-breathe 3s ease-in-out infinite;
    transition:
      opacity 500ms ease-out,
      border-color 500ms ease-out,
      background 500ms ease-out,
      box-shadow 500ms ease-out;
  }

  .why-light__card:nth-child(2) .why-light__icon {
    border-radius: 18px;
    transform: rotate(45deg);
  }

  .why-light__card:nth-child(2) .why-light__icon img,
  .why-light__card:nth-child(2) .why-light__icon svg {
    transform: rotate(-45deg);
  }

  .why-light__card:nth-child(3) .why-light__icon {
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    border-radius: 0;
  }

  .why-light__icon img,
  .why-light__icon svg {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .why-light__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .why-light__beam {
    position: absolute;
    z-index: 1;
    top: 78px;
    left: 38px;
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, rgba(255, 244, 211, .85), transparent);
    box-shadow: 0 0 8px rgba(255, 244, 211, .45);
    transition: height 500ms ease-out;
  }

  .why-light__headline {
    display: block;
    margin-top: 18px;
    color: #888;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
    transition: color 500ms ease-out;
  }

  .why-light__description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 600ms ease-in,
      max-height 600ms ease-in,
      transform 600ms ease-in;
  }

  .why-light__description p {
    max-width: 410px;
    margin: 18px 0 0;
    color: #c9c9c9;
    font-size: 13px;
    line-height: 1.65;
  }

  .why-light__card.is-active,
  .why-light[data-interaction="hover"] .why-light__card:hover,
  .why-light[data-interaction="both"] .why-light__card:hover {
    border-color: #555;
    background: rgba(255, 255, 255, .025);
    transform: translateY(-4px);
    transition:
      border-color 400ms ease-out,
      background 400ms ease-out,
      transform 400ms ease-out;
  }

  .why-light__card.is-active .why-light__icon-wrap::before,
  .why-light[data-interaction="hover"] .why-light__card:hover .why-light__icon-wrap::before,
  .why-light[data-interaction="both"] .why-light__card:hover .why-light__icon-wrap::before {
    opacity: 1;
    transform: scale(1);
  }

  .why-light__card.is-active .why-light__icon,
  .why-light[data-interaction="hover"] .why-light__card:hover .why-light__icon,
  .why-light[data-interaction="both"] .why-light__card:hover .why-light__icon {
    border-color: rgba(255, 255, 255, .95);
    background: linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(255, 227, 161, .12));
    box-shadow: 0 0 28px rgba(255, 244, 211, .3), inset 0 0 20px rgba(255, 255, 255, .08);
    opacity: 1;
    animation: why-light-breathe-active 1.5s ease-in-out infinite;
  }

  .why-light__card.is-active .why-light__beam,
  .why-light[data-interaction="hover"] .why-light__card:hover .why-light__beam,
  .why-light[data-interaction="both"] .why-light__card:hover .why-light__beam {
    height: 38px;
  }

  .why-light__card.is-active .why-light__headline,
  .why-light[data-interaction="hover"] .why-light__card:hover .why-light__headline,
  .why-light[data-interaction="both"] .why-light__card:hover .why-light__headline {
    color: #fff;
  }

  .why-light__card.is-active .why-light__description,
  .why-light[data-interaction="hover"] .why-light__card:hover .why-light__description,
  .why-light[data-interaction="both"] .why-light__card:hover .why-light__description {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 500ms ease-out,
      max-height 500ms ease-out,
      transform 500ms ease-out;
  }

  .why-light__card.is-illuminated .why-light__icon {
    animation:
      why-light-flash-on 700ms ease-out both,
      why-light-breathe 3s ease-in-out 700ms infinite;
  }

  .why-light__particles {
    position: absolute;
    z-index: 1;
    bottom: -24px;
    left: 8%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    box-shadow:
      8vw -8vh rgba(255, 255, 255, .08),
      18vw -22vh rgba(255, 255, 255, .12),
      27vw -5vh rgba(255, 255, 255, .06),
      36vw -34vh rgba(255, 255, 255, .1),
      46vw -16vh rgba(255, 255, 255, .07),
      55vw -42vh rgba(255, 255, 255, .13),
      64vw -10vh rgba(255, 255, 255, .08),
      72vw -30vh rgba(255, 255, 255, .1),
      82vw -18vh rgba(255, 255, 255, .06),
      88vw -46vh rgba(255, 255, 255, .11),
      12vw -52vh rgba(255, 255, 255, .07),
      31vw -60vh rgba(255, 255, 255, .1),
      51vw -56vh rgba(255, 255, 255, .06),
      69vw -66vh rgba(255, 255, 255, .12),
      90vw -72vh rgba(255, 255, 255, .08);
    animation: why-light-particles 10s linear infinite;
  }

  .why-light--particles-low .why-light__particles {
    opacity: .45;
  }

  .why-light--particles-medium .why-light__particles {
    opacity: .75;
  }

  .why-light--particles-high .why-light__particles {
    width: 3px;
    height: 3px;
    opacity: 1;
  }

  @keyframes why-light-breathe {
    0%,
    100% {
      opacity: .3;
      box-shadow: 0 0 8px rgba(255, 255, 255, .06);
    }
    50% {
      opacity: .6;
      box-shadow: 0 0 16px rgba(255, 255, 255, .12);
    }
  }

  @keyframes why-light-breathe-active {
    0%,
    100% {
      opacity: .6;
      box-shadow: 0 0 20px rgba(255, 244, 211, .22);
    }
    50% {
      opacity: 1;
      box-shadow: 0 0 34px rgba(255, 244, 211, .42);
    }
  }

  @keyframes why-light-flash-on {
    0% {
      opacity: .3;
      box-shadow: 0 0 4px rgba(255, 255, 255, .08);
    }
    38% {
      opacity: 1;
      box-shadow: 0 0 48px rgba(255, 244, 211, .65);
    }
    100% {
      opacity: .5;
      box-shadow: 0 0 12px rgba(255, 255, 255, .12);
    }
  }

  @keyframes why-light-particles {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(0, -90px, 0);
    }
  }

  @media (max-width: 749px) {
    .why-light__inner {
      padding: 28px 20px 22px;
    }

    .why-light__label {
      margin-bottom: 16px;
      font-size: 9px;
    }

    .why-light__grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .why-light__card {
      min-height: 0;
      padding: 15px;
    }

    .why-light__trigger {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
    }

    .why-light__icon-wrap {
      width: 58px;
      height: 58px;
    }

    .why-light__icon {
      width: 54px;
      height: 54px;
    }

    .why-light__icon img,
    .why-light__icon svg {
      width: 30px;
      height: 30px;
    }

    .why-light__beam {
      display: none;
    }

    .why-light__headline {
      margin-top: 0;
      font-size: 19px;
    }

    .why-light__description p {
      margin-top: 10px;
      padding-left: 72px;
      font-size: 11px;
      line-height: 1.5;
    }

    .why-light__card.is-active {
      transform: translateY(-2px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .why-light *,
    .why-light *::before,
    .why-light *::after {
      animation: none !important;
      transition: none !important;
    }

    .why-light.why-light-ready .why-light__label {
      opacity: 1;
      transform: none;
    }

    .why-light__card {
      border-color: #555;
      transform: none;
    }

    .why-light__headline {
      color: #fff;
    }

    .why-light__description {
      max-height: none;
      opacity: 1;
      transform: none;
    }

    .why-light__icon {
      border-color: rgba(255, 255, 255, .75);
      opacity: 1;
    }

    .why-light__particles {
      display: none;
    }
  }
/* END_SECTION:why-light-interactive */