/** Shopify CDN: Minification failed

Line 43:18 Expected identifier but found whitespace
Line 43:20 Unexpected "{"
Line 43:29 Expected ":"
Line 43:55 Expected ":"
Line 630:18 Expected identifier but found whitespace
Line 630:20 Unexpected "{"
Line 630:29 Expected ":"
Line 630:55 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:he-advantage-mosaic (INDEX:0) */
.he-advantage {
    background: var(--adv-bg);
    color: var(--adv-text);
  }

  .he-advantage .he-section-head {
    margin-bottom: clamp(22px, 3vw, 34px);
  }

  .he-advantage__mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 1vw, 14px);
    width: min(100% - 32px, 1560px);
    margin: 0 auto;
    padding: clamp(8px, 1vw, 14px);
    background: var(--adv-frame);
    box-shadow: 0 24px 70px rgba(16, 19, 21, 0.07);
  }

  .he-advantage__item {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: {{ section.settings.tile_radius }}px;
    background: #f4f4f1;
    color: #fff;
    isolation: isolate;
    transform: translateZ(0);
  }

  .he-advantage__item--1 {
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }

  .he-advantage__item--2 {
    aspect-ratio: 2.08 / 1;
  }

  .he-advantage__item--3,
  .he-advantage__item--4 {
    aspect-ratio: 1 / 1;
  }

  .he-advantage__item--3 {
    grid-column: 2;
    grid-row: 2;
    width: calc(50% - clamp(5px, .6vw, 9px));
    justify-self: start;
  }

  .he-advantage__item--4 {
    grid-column: 2;
    grid-row: 2;
    width: calc(50% - clamp(5px, .6vw, 9px));
    justify-self: end;
  }

  .he-advantage__item img,
  .he-advantage__item svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) brightness(.86) contrast(1.02);
    transform: scale(1.01);
    transition: transform .92s cubic-bezier(.2,.82,.2,1), filter .82s ease;
  }

  .he-advantage__item:hover img,
  .he-advantage__item:hover svg {
    transform: scale(1.035);
    filter: saturate(1.04) brightness(1.04) contrast(1.06);
  }

  .he-advantage__veil {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 26% 18%, rgba(255,255,255,.16), transparent 28%),
      linear-gradient(105deg, transparent 0%, transparent 39%, rgba(255,255,255,.3) 48%, transparent 57%, transparent 100%),
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28));
    background-size: 100% 100%, 220% 100%, 100% 100%;
    background-position: center, -135% 0, center;
    opacity: .72;
    transition: background-position .95s cubic-bezier(.2,.82,.2,1), opacity .55s ease;
  }

  .he-advantage__item:hover .he-advantage__veil {
    background-position: center, 125% 0, center;
    opacity: .46;
  }

  .he-advantage__copy {
    position: absolute;
    left: clamp(20px, 3vw, 44px);
    right: clamp(20px, 3vw, 44px);
    bottom: clamp(22px, 3vw, 46px);
    color: #fff;
    opacity: .98;
    transform: translateY(8px);
    transition: transform .55s cubic-bezier(.2,.82,.2,1), opacity .42s ease;
  }

  .he-advantage__item:hover .he-advantage__copy {
    opacity: 1;
    transform: translateY(0);
  }

  .he-advantage__copy h3 {
    max-width: 420px;
    font-size: clamp(22px, 2.6vw, 44px);
    font-weight: 340;
    letter-spacing: -.02em;
  }

  .he-advantage__copy p {
    max-width: 420px;
    margin-top: 10px;
    color: rgba(255,255,255,.78);
    font-weight: 370;
  }

  @media (max-width: 899px) {
    .he-advantage__mosaic {
      grid-template-columns: 1fr;
      grid-template-rows: none;
    }

    .he-advantage__item,
    .he-advantage__item--1,
    .he-advantage__item--2,
    .he-advantage__item--3,
    .he-advantage__item--4 {
      grid-column: auto;
      grid-row: auto;
      width: 100%;
      aspect-ratio: 16 / 10;
    }

    .he-advantage__mosaic {
      width: min(100% - 24px, 1560px);
    }
  }
/* END_SECTION:he-advantage-mosaic */

/* START_SECTION:he-announcement-bar (INDEX:1) */
.he-announcement {
    min-height: var(--bar-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bar-bg);
    color: var(--bar-text);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .he-announcement__track {
    display: flex;
    min-width: 100%;
    justify-content: center;
    gap: clamp(28px, 8vw, 120px);
    padding: 0 18px;
    white-space: nowrap;
  }

  .he-announcement__item {
    opacity: .9;
  }

  @media (max-width: 749px) {
    .he-announcement__track {
      justify-content: flex-start;
      animation: he-marquee 18s linear infinite;
    }
  }

  @keyframes he-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-42%); }
  }
/* END_SECTION:he-announcement-bar */

/* START_SECTION:he-brand-marquee (INDEX:2) */
.he-brand-marquee {
    overflow: hidden;
    background: var(--brand-bg);
    color: var(--brand-text);
  }

  .he-brand-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: var(--brand-gap);
    animation: he-brand-move var(--brand-speed, 34s) linear infinite;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 420;
    letter-spacing: -.01em;
    white-space: nowrap;
  }

  .he-brand-marquee__track span {
    min-width: clamp(132px, 11vw, 194px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: var(--brand-opacity);
    transition: opacity .28s ease, transform .28s ease;
  }

  .he-brand-marquee__track img {
    max-width: var(--brand-logo-width);
    max-height: var(--brand-logo-height);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
  }

  .he-brand-marquee:hover .he-brand-marquee__track {
    animation-play-state: paused;
  }

  .he-brand-marquee__track span:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

  @keyframes he-brand-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
/* END_SECTION:he-brand-marquee */

/* START_SECTION:he-buyer-gallery (INDEX:3) */
.he-gallery {
    background: var(--gallery-bg);
    color: var(--gallery-text);
  }

  .he-gallery__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 42px) / 4);
    grid-template-columns: none;
    gap: var(--gallery-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .he-gallery__grid::-webkit-scrollbar {
    display: none;
  }

  .he-gallery__grid--grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(var(--gallery-columns, 4), minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }

  .he-gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ededeb;
    border-radius: var(--gallery-radius);
    isolation: isolate;
    scroll-snap-align: start;
  }

  .he-gallery__item img,
  .he-gallery__item svg {
    width: 100%;
    aspect-ratio: var(--gallery-ratio, 4 / 5);
    object-fit: cover;
    filter: saturate(.94) contrast(1.02);
    transition: transform .72s cubic-bezier(.2,.82,.2,1), filter .72s ease;
  }

  .he-gallery__item:hover img,
  .he-gallery__item:hover svg {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.05);
  }

  .he-gallery__caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 11px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    color: #111;
    font-size: 13px;
    font-weight: 380;
    transform: translateY(6px);
    opacity: .94;
    transition: transform .38s ease, opacity .38s ease;
  }

  .he-gallery__item:hover .he-gallery__caption {
    transform: translateY(0);
    opacity: 1;
  }

  @media (max-width: 749px) {
    .he-gallery__grid {
      grid-auto-columns: 48%;
    }

    .he-gallery__grid--grid {
      grid-template-columns: repeat(var(--gallery-columns-mobile, 2), minmax(0, 1fr));
    }
  }
/* END_SECTION:he-buyer-gallery */

/* START_SECTION:he-collection-tiles (INDEX:4) */
.he-tiles {
    background: var(--tiles-bg);
    color: var(--tiles-text);
  }

  .he-tiles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--tile-gap);
  }

  .he-tile {
    position: relative;
    min-height: clamp(280px, 34vw, var(--tile-min));
    overflow: hidden;
    background: #e9e9e4;
    border-radius: var(--tile-radius);
    isolation: isolate;
  }

  .he-tile img,
  .he-tile svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94) contrast(1.02);
    transition: transform .78s cubic-bezier(.2,.82,.2,1), filter .78s ease;
  }

  .he-tile:hover img,
  .he-tile:hover svg {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.06);
  }

  .he-tile__shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.46)),
      linear-gradient(120deg, transparent 0%, transparent 42%, rgba(255,255,255,.26) 50%, transparent 58%, transparent 100%);
    background-size: 100% 100%, 230% 100%;
    background-position: center, -135% 0;
    transition: background-position .9s cubic-bezier(.2,.82,.2,1), opacity .4s ease;
  }

  .he-tile:hover .he-tile__shade {
    background-position: center, 135% 0;
  }

  .he-tile__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 6px;
    color: #fff;
    transform: translateY(4px);
    transition: transform .46s cubic-bezier(.2,.82,.2,1);
  }

  .he-tile:hover .he-tile__content {
    transform: translateY(0);
  }

  .he-tile__content strong {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 360;
    letter-spacing: -.018em;
  }

  .he-tile__content small {
    opacity: .78;
    font-size: 13px;
    line-height: 1.35;
  }

  @media (max-width: 989px) {
    .he-tiles__grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 72%;
      grid-template-columns: none;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .he-tiles__grid::-webkit-scrollbar {
      display: none;
    }

    .he-tile {
      scroll-snap-align: start;
    }
  }
/* END_SECTION:he-collection-tiles */

/* START_SECTION:he-footer (INDEX:5) */
.he-footer {
    padding: clamp(52px, 8vw, 96px) 0 28px;
    background: var(--footer-bg);
    color: var(--footer-text);
  }

  .he-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) 1.2fr;
    gap: clamp(36px, 7vw, 110px);
  }

  .he-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
  }

  .he-footer__logo img {
    width: min(300px, 78vw);
    height: auto;
    filter: invert(1) brightness(1.18);
  }

  .he-footer__brand p {
    max-width: 360px;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
  }

  .he-footer__menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .he-footer__menu {
    display: grid;
    gap: 10px;
    align-content: start;
  }

  .he-footer__menu h3 {
    margin-bottom: 8px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 430;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .he-footer__menu a,
  .he-footer__menu span {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 360;
  }

  @media (max-width: 749px) {
    .he-footer__inner,
    .he-footer__menus {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:he-footer */

/* START_SECTION:he-gear-selector (INDEX:6) */
.he-gear {
    background: var(--gear-bg);
    color: var(--gear-text);
    overflow: hidden;
  }

  .he-gear__layout {
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(320px, 1fr);
    gap: clamp(20px, 4vw, 72px);
    align-items: center;
    isolation: isolate;
    overflow: visible;
  }

  .he-gear__wheel-wrap {
    position: relative;
    z-index: 4;
    width: clamp(560px, 53vw, 780px);
    height: clamp(560px, 53vw, 780px);
    margin-left: clamp(-280px, -17vw, -140px);
    padding-right: clamp(46px, 5.4vw, 96px);
    display: grid;
    place-items: center end;
    overflow: visible;
    border-radius: 999px;
    background: radial-gradient(circle at 54% 50%, rgba(255,255,255,.98), rgba(246,248,248,.95) 58%, rgba(228,234,235,.96));
  }

  .he-gear__wheel {
    width: min(58%, 440px);
    max-height: clamp(450px, 42vw, 610px);
    display: grid;
    gap: 20px;
    justify-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 42% 0;
    scroll-snap-type: y mandatory;
    scroll-padding: 42% 0;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .he-gear__wheel::-webkit-scrollbar {
    display: none;
  }

  .he-gear__item {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(188px, 16vw, 270px);
    height: clamp(188px, 16vw, 270px);
    padding: 12px;
    border: 1px solid rgba(18,24,28,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    cursor: pointer;
    opacity: .36;
    transform: translateX(-42px) scale(.72);
    will-change: transform, opacity;
    transition: opacity .38s ease, transform .46s cubic-bezier(.2,.82,.2,1), background .36s ease;
  }

  .he-gear__item.is-active {
    opacity: 1;
    transform: translateX(56px) scale(1.18);
    background: rgba(255,255,255,.96);
    z-index: 4;
  }

  .he-gear__layout.is-open .he-gear__item:not(.is-active) {
    opacity: 0;
    pointer-events: none;
  }

  .he-gear__layout.is-open .he-gear__item.is-active {
    transform: translateX(-18px) scale(1.44);
  }

  .he-gear__image {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
  }

  .he-gear__image img,
  .he-gear__image svg {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .28s ease, transform .45s ease;
  }

  .he-gear__back {
    opacity: 0;
  }

  .he-gear__item:hover .he-gear__front {
    opacity: 0;
  }

  .he-gear__item:hover .he-gear__back {
    opacity: 1;
  }

  .he-gear__info {
    position: relative;
    z-index: 2;
    min-height: clamp(260px, 28vw, 430px);
    width: 100%;
    padding: clamp(24px, 3.2vw, 46px);
    border: 0;
    border-radius: {{ section.settings.card_radius }}px;
    background: #050607;
    color: #fff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 24px 70px rgba(14,19,22,.12);
    transition: min-height .38s cubic-bezier(.2,.82,.2,1), transform .32s cubic-bezier(.2,.82,.2,1), box-shadow .32s ease;
  }

  .he-gear__info:hover,
  .he-gear__layout.is-open .he-gear__info {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(14,19,22,.18);
  }

  .he-gear__info-label,
  .he-gear__hint {
    display: block;
    color: rgba(255,255,255,.56);
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .he-gear__info strong {
    display: block;
    max-width: 12ch;
    margin-top: 16px;
    font-size: clamp(34px, 5vw, 76px);
    font-weight: 340;
    line-height: .96;
    letter-spacing: -.025em;
  }

  .he-gear__hint {
    margin-top: 22px;
  }

  .he-gear__copy,
  .he-gear__specs {
    display: none;
  }

  .he-gear__layout.is-open .he-gear__info {
    min-height: clamp(360px, 34vw, 520px);
  }

  .he-gear__layout.is-open .he-gear__copy,
  .he-gear__layout.is-open .he-gear__specs {
    display: block;
  }

  .he-gear__copy {
    max-width: 46ch;
    margin-top: 28px;
    color: rgba(255,255,255,.74);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.58;
  }

  .he-gear__specs {
    margin-top: 22px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 430;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  @media (min-width: 750px) and (max-width: 1120px) {
    .he-gear__layout {
      grid-template-columns: minmax(330px, .86fr) minmax(300px, 1fr);
      gap: 24px;
    }

    .he-gear__wheel-wrap {
      width: clamp(500px, 64vw, 650px);
      height: clamp(500px, 64vw, 650px);
      margin-left: clamp(-230px, -24vw, -150px);
      padding-right: 46px;
    }

    .he-gear__item {
      width: clamp(174px, 22vw, 224px);
      height: clamp(174px, 22vw, 224px);
    }
  }

  @media (max-width: 749px) {
    .he-gear__layout {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .he-gear__wheel-wrap {
      width: auto;
      height: auto;
      margin: 0;
      padding: 0;
      place-items: stretch;
      border-radius: 0;
      background: transparent;
    }

    .he-gear__wheel {
      width: 100%;
      max-height: none;
      grid-auto-flow: column;
      grid-auto-columns: 66%;
      grid-template-columns: none;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 0 6px;
      scroll-snap-type: x mandatory;
      scroll-padding: 0;
    }

    .he-gear__item,
    .he-gear__item.is-active,
    .he-gear__layout.is-open .he-gear__item.is-active {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      opacity: 1;
      transform: none;
    }

    .he-gear__layout.is-open .he-gear__item:not(.is-active) {
      opacity: 1;
      pointer-events: auto;
    }

    .he-gear__info {
      min-height: 230px;
      padding: 24px;
    }

    .he-gear__info strong {
      font-size: clamp(34px, 11vw, 54px);
    }
  }
/* END_SECTION:he-gear-selector */

/* START_SECTION:he-header (INDEX:7) */
.he-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--header-bg);
    color: var(--header-text);
    border-bottom: 0;
    backdrop-filter: saturate(145%) blur(14px);
    transition: transform .42s cubic-bezier(.2,.8,.2,1), background-color .3s ease, color .3s ease, box-shadow .3s ease;
    will-change: transform;
  }

  .he-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(0,0,0,.06);
  }

  .he-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
  }

  .he-header__logo {
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 430;
    font-style: italic;
    letter-spacing: -.035em;
    white-space: nowrap;
  }

  .he-header__logo img {
    max-height: 42px;
    width: auto;
  }

  .he-header__nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 44px);
    font-size: 14px;
    font-weight: 430;
    letter-spacing: -.01em;
  }

  .he-header__nav a,
  .he-header__icons a {
    position: relative;
  }

  .he-header__nav a::after,
  .he-header__icons a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s ease;
  }

  .he-header__nav a:hover::after,
  .he-header__icons a:hover::after {
    transform: scaleX(1);
  }

  .he-header__icons {
    display: flex;
    gap: 18px;
    font-size: 13px;
    font-weight: 430;
  }

  @media (max-width: 899px) {
    .he-header__inner {
      grid-template-columns: 1fr auto;
      gap: 14px;
      padding-block: 12px;
    }

    .he-header__logo {
      font-size: 20px;
    }

    .he-header__logo img {
      max-height: 34px;
    }

    .he-header__nav {
      grid-column: 1 / -1;
      order: 3;
      justify-content: flex-start;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 2px;
    }

    .he-header__nav a {
      flex: 0 0 auto;
    }
  }
/* END_SECTION:he-header */

/* START_SECTION:he-home-foundation (INDEX:8) */
.he-home {
    display: block;
    margin: 0;
    padding: 0 !important;
    background: var(--hero-bg);
    border-top: 1px solid var(--home-divider);
    border-bottom: 1px solid var(--home-divider);
    color: var(--hero-text);
  }

  .he-home__hero {
    position: relative;
    min-height: var(--hero-height);
    margin: 0;
    overflow: hidden;
    background: #dfe6ea;
    isolation: isolate;
  }

  .he-home__media-wrap,
  .he-home__slider,
  .he-home__slide,
  .he-home__video,
  .he-home__fallback,
  .he-home__slide picture,
  .he-home__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .he-home__video,
  .he-home__fallback,
  .he-home__slide img {
    object-fit: cover;
  }

  .he-home__slide {
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .72s ease, transform 1.2s ease;
    pointer-events: none;
  }

  .he-home__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .he-home__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.18) 48%, rgba(0,0,0,.04));
    opacity: var(--hero-overlay);
    pointer-events: none;
  }

  .he-home__content {
    position: relative;
    z-index: 2;
    min-height: var(--hero-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-block: clamp(44px, 7vw, 76px);
  }

  .he-home__content--center {
    align-items: center;
    text-align: center;
  }

  .he-home__content--right {
    align-items: flex-end;
    text-align: right;
  }

  .he-home__content--left {
    align-items: flex-start;
    text-align: left;
  }

  .he-home__eyebrow {
    color: currentColor;
    opacity: .78;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .he-home h1 {
    max-width: 760px;
    color: currentColor;
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 380;
    letter-spacing: -.03em;
    line-height: .94;
  }

  .he-home__body {
    max-width: 480px;
    color: currentColor;
    opacity: .78;
    font-size: clamp(15px, 1.3vw, 18px);
  }

  .he-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .he-home__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(18,18,18,.2);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
  }

  .he-home__arrow:hover {
    background: rgba(18,18,18,.46);
    transform: translateY(-50%) scale(1.04);
  }

  .he-home__arrow--prev {
    left: 24px;
  }

  .he-home__arrow--next {
    right: 24px;
  }

  .he-home__arrow span {
    display: block;
    font-size: 32px;
    line-height: 38px;
  }

  .he-home__dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
  }

  .he-home__dot {
    width: 28px;
    height: 2px;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,.46);
    cursor: pointer;
  }

  .he-home__dot.is-active {
    background: #fff;
  }

  .he-home__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 1px;
    color: var(--he-text);
  }

  .he-home__proof-item {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    background: rgba(255,255,255,.78);
  }

  .he-home__proof-item strong {
    font-size: 18px;
    font-weight: 460;
  }

  .he-home__proof-item span {
    color: var(--he-muted);
    font-size: 14px;
  }

  @media (max-width: 749px) {
    .he-home__hero,
    .he-home__content {
      min-height: var(--hero-height-mobile);
    }

    .he-home__overlay {
      background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
    }

    .he-home__content {
      justify-content: flex-end;
      align-items: flex-start;
      text-align: left;
      padding-block: 72px 48px;
    }

    .he-home__arrow {
      display: none;
    }

    .he-home__dots {
      bottom: 18px;
    }

    .he-home__proof {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:he-home-foundation */

/* START_SECTION:he-info-page (INDEX:9) */
.he-info-page {
    background: var(--info-bg);
    color: var(--info-text);
  }

  .he-info-page__shell {
    display: grid;
    grid-template-columns: minmax(240px, .58fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 112px);
    align-items: start;
  }

  .he-info-page__intro {
    position: sticky;
    top: 96px;
  }

  .he-info-page__intro p {
    margin: 0 0 14px;
    color: var(--info-muted);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .he-info-page__intro h1 {
    margin: 0;
    font-size: clamp(40px, 6.8vw, 96px);
    font-weight: 290;
    line-height: .96;
    letter-spacing: -.035em;
  }

  .he-info-page__intro div {
    margin-top: 22px;
    max-width: 38ch;
    color: var(--info-muted);
    line-height: 1.72;
  }

  .he-info-page__content {
    display: grid;
    gap: 12px;
  }

  .he-info-page__card,
  .he-info-page__notice {
    padding: clamp(22px, 3.2vw, 42px);
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.065);
  }

  .he-info-page__card h2,
  .he-info-page__notice strong {
    display: block;
    margin: 0 0 12px;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 330;
    letter-spacing: -.012em;
  }

  .he-info-page__card div,
  .he-info-page__notice div {
    color: var(--info-muted);
    line-height: 1.76;
  }

  .he-info-page__card div > *:first-child,
  .he-info-page__notice div > *:first-child {
    margin-top: 0;
  }

  .he-info-page__card div > *:last-child,
  .he-info-page__notice div > *:last-child {
    margin-bottom: 0;
  }

  .he-info-page__card--link a {
    display: inline-flex;
    margin-top: 18px;
    color: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .he-info-page__notice {
    background: #151515;
    color: #fff;
  }

  .he-info-page__notice div {
    color: rgba(255,255,255,.72);
  }

  @media (max-width: 989px) {
    .he-info-page__shell {
      grid-template-columns: 1fr;
    }

    .he-info-page__intro {
      position: static;
    }
  }
/* END_SECTION:he-info-page */

/* START_SECTION:he-lookbook (INDEX:10) */
.he-lookbook {
    background: var(--look-bg);
    color: var(--look-text);
  }

  .he-lookbook__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(28px, 6vw, 104px);
    align-items: center;
  }

  .he-lookbook__copy {
    display: grid;
    justify-items: start;
    gap: 20px;
  }

  .he-lookbook__copy p {
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .he-lookbook__copy h2 {
    font-size: clamp(38px, 5.6vw, 86px);
    font-weight: 340;
    letter-spacing: -.028em;
  }

  .he-lookbook__media {
    overflow: hidden;
    background: #e6e6e1;
    border-radius: var(--look-radius);
    isolation: isolate;
  }

  .he-lookbook__media img,
  .he-lookbook__media svg {
    width: 100%;
    aspect-ratio: var(--look-ratio, 16 / 10);
    object-fit: cover;
    transition: transform .92s cubic-bezier(.2,.82,.2,1), filter .78s ease;
  }

  .he-lookbook__media:hover img,
  .he-lookbook__media:hover svg {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.05);
  }

  @media (max-width: 899px) {
    .he-lookbook__grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:he-lookbook */

/* START_SECTION:he-newsletter-popup (INDEX:11) */
.he-popup[hidden] {
    display: none;
  }

  .he-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: clamp(12px, 2vw, 18px);
  }

  .he-popup__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.48);
  }

  .he-popup__dialog {
    position: relative;
    z-index: 1;
    width: min({{ section.settings.popup_width }}px, calc(100vw - 28px));
    max-height: min(560px, calc(100vh - 28px));
    display: grid;
    grid-template-columns: .9fr 1fr;
    overflow: auto;
    background: var(--popup-bg, #fff);
    color: var(--popup-text, #151515);
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    animation: he-popup-in .36s ease both;
  }

  .he-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
  }

  .he-popup__media img,
  .he-popup__media svg {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    background: #ededeb;
  }

  .he-popup__content {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: clamp(28px, 5vw, 56px);
  }

  .he-popup__content p {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .he-popup__content h2 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 340;
    letter-spacing: -.02em;
    line-height: 1.02;
  }

  .he-popup__content span {
    color: var(--popup-muted, var(--he-muted));
  }

  .he-popup__form {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    min-width: 0;
    width: 100%;
  }

  .he-popup__form input {
    min-height: 50px;
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: var(--he-radius);
    font: inherit;
  }

  .he-popup__form .he-button {
    width: 100%;
  }

  @keyframes he-popup-in {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  @media (max-width: 749px) {
    .he-popup {
      padding: 12px;
      align-items: center;
    }

    .he-popup__dialog {
      grid-template-columns: 1fr;
      width: min(390px, calc(100vw - 24px));
      max-height: calc(100vh - 24px);
    }

    .he-popup__close {
      top: 8px;
      right: 8px;
      width: 36px;
      height: 36px;
      font-size: 22px;
    }

    .he-popup__media img,
    .he-popup__media svg {
      min-height: 150px;
      max-height: 210px;
    }

    .he-popup__content {
      gap: 12px;
      padding: 24px 18px 20px;
    }

    .he-popup__content h2 {
      font-size: clamp(28px, 10vw, 42px);
    }

    .he-popup__form {
      width: 100%;
    }
  }
/* END_SECTION:he-newsletter-popup */

/* START_SECTION:he-newsletter (INDEX:12) */
.he-newsletter {
    position: relative;
    background: var(--newsletter-bg);
    color: var(--newsletter-text);
    overflow: hidden;
    isolation: isolate;
  }

  .he-newsletter__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }

  .he-newsletter__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) brightness(.64);
    transform: scale(1.02);
  }

  .he-newsletter::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at 18% 22%, rgba(255,255,255,.13), transparent 30%),
      linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.36));
  }

  .he-newsletter__inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
  }

  .he-newsletter p {
    color: currentColor;
    opacity: .72;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .he-newsletter h2 {
    max-width: 760px;
    margin-top: 10px;
    color: currentColor;
    font-size: clamp(34px, 5.4vw, 82px);
    font-weight: 360;
    letter-spacing: -.025em;
  }

  .he-newsletter__form {
    display: flex;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
  }

  .he-newsletter__form input {
    min-height: 50px;
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 0 14px;
    background: transparent;
    color: currentColor;
  }

  .he-newsletter__form input::placeholder {
    color: rgba(255,255,255,.62);
  }

  .he-newsletter__form .he-button {
    min-width: 132px;
    border: 0;
    background: #fff;
    color: #050505;
  }

  @media (max-width: 749px) {
    .he-newsletter__inner {
      grid-template-columns: 1fr;
    }

    .he-newsletter__form {
      display: grid;
      grid-template-columns: 1fr;
    }

    .he-newsletter__form input,
    .he-newsletter__form .he-button {
      width: 100%;
      min-width: 0;
    }
  }
/* END_SECTION:he-newsletter */

/* START_SECTION:he-product-core (INDEX:13) */
.he-product-core {
    background: var(--core-bg);
    color: var(--core-text);
  }

  .he-product-core__shell {
    width: min(100% - 32px, 1480px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, var(--summary-width, 470px));
    gap: clamp(24px, 4.6vw, 68px);
    align-items: start;
  }

  .he-product-core__left {
    display: grid;
    gap: 24px;
    min-width: 0;
  }

  .he-product-core__gallery {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .he-product-core__thumbs {
    display: grid;
    gap: 10px;
  }

  .he-product-core__thumb {
    width: 72px;
    aspect-ratio: var(--media-ratio, 4 / 5);
    padding: 0;
    border: 1px solid rgba(0,0,0,.1);
    background: #f3f4f2;
    cursor: pointer;
    overflow: hidden;
  }

  .he-product-core__thumb.is-active {
    border-color: currentColor;
  }

  .he-product-core__thumb.is-filtered-out,
  .he-product-core__media-slide.is-filtered-out {
    display: none !important;
  }

  .he-product-core__thumb img,
  .he-product-core__thumb svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .he-product-core__main-media {
    width: min(100%, var(--main-media-max, 480px));
    justify-self: center;
    background: #f3f4f2;
    border: 1px solid rgba(0,0,0,.045);
    overflow: hidden;
    position: relative;
    aspect-ratio: var(--media-ratio, 4 / 5);
  }

  .he-product-core__media-slide {
    display: none;
    height: 100%;
  }

  .he-product-core__media-slide.is-active {
    display: block;
    animation: he-product-media-in .42s cubic-bezier(.2,.78,.2,1) both;
  }

  .he-product-core__media-slide img,
  .he-product-core__media-slide svg,
  .he-product-core__media-slide video,
  .he-product-core__media-slide model-viewer {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .he-product-core__summary {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 16px;
  }

  .he-product-core__kicker,
  .he-product-core__label {
    margin: 0;
    color: rgba(21,21,21,.62);
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .he-product-core__summary h1 {
    margin: 0;
    font-size: clamp(28px, 3.1vw, 46px);
    font-weight: 320;
    line-height: 1.03;
    letter-spacing: -.018em;
    text-transform: none;
  }

  .he-product-core__rating,
  .he-product-core__price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .he-product-core__rating span {
    font-size: 12px;
    letter-spacing: .16em;
  }

  .he-product-core__rating a,
  .he-product-core__size {
    color: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .he-product-core__price strong {
    font-size: 18px;
    font-weight: 460;
  }

  .he-product-core__price s,
  .he-product-core__intro {
    color: var(--he-muted);
  }

  .he-product-core__intro {
    margin: 0;
    max-width: 54ch;
    line-height: 1.66;
    font-weight: 370;
  }

  .he-product-core__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 13px 0;
  }

  .he-product-core__tabs a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
    opacity: .72;
    transition: opacity .25s ease, transform .25s ease;
  }

  .he-product-core__tabs a:hover {
    opacity: 1;
    transform: translateY(-1px);
  }

  .he-product-core__form {
    display: grid;
    gap: 12px;
  }

  .he-product-core__options {
    display: grid;
    gap: 14px;
  }

  .he-product-core__option-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 9px;
  }

  .he-product-core__option-label {
    margin: 0;
    color: rgba(21,21,21,.62);
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .he-product-core__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .he-product-core__option-values--color {
    gap: 10px;
  }

  .he-product-core__option-values--color .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .he-product-core__option {
    position: relative;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
  }

  .he-product-core__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .he-product-core__color-dot {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--swatch-color);
    border: 1px solid rgba(0,0,0,.18);
    box-shadow: inset 0 0 0 4px #fff;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  }

  .he-product-core__option:hover .he-product-core__color-dot,
  .he-product-core__option input:checked + .he-product-core__color-dot {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,.36);
  }

  .he-product-core__option input:checked + .he-product-core__color-dot {
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 1.5px #151515;
  }

  .he-product-core__size-pill,
  .he-product-core__plain-pill {
    min-width: 46px;
    min-height: 38px;
    padding: 0 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.16);
    background: #fff;
    color: #151515;
    font-size: 13px;
    font-weight: 390;
    transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
  }

  .he-product-core__option:hover .he-product-core__size-pill,
  .he-product-core__option:hover .he-product-core__plain-pill {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,.38);
  }

  .he-product-core__option input:checked + .he-product-core__size-pill,
  .he-product-core__option input:checked + .he-product-core__plain-pill {
    background: #151515;
    color: #fff;
    border-color: #151515;
  }

  .he-product-core__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }

  .he-product-core__button {
    min-height: 58px;
    border: 1px solid #151515;
    border-radius: 0;
    background: #151515;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 430;
    transition: transform .32s cubic-bezier(.2,.82,.2,1), background .28s ease, color .28s ease;
  }

  .he-product-core__button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #151515;
  }

  .he-product-core__button:disabled {
    opacity: .45;
    cursor: not-allowed;
  }

  .he-product-core__services,
  .he-product-core__specs {
    display: grid;
    gap: 8px;
  }

  .he-product-core__services {
    margin-top: 4px;
    gap: 10px;
  }

  .he-product-core__services div {
    position: relative;
    display: grid;
    gap: 2px;
    padding: 2px 0 2px 34px;
    border: 0;
    background: transparent;
  }

  .he-product-core__services div::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 21px;
    height: 21px;
    border: 1.2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    line-height: 1;
  }

  .he-product-core__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
  }

  .he-product-core__specs div {
    display: grid;
    gap: 3px;
    padding: 13px 14px 13px 0;
    border: 0;
    background: transparent;
  }

  .he-product-core__specs div + div {
    border-left: 1px solid rgba(0,0,0,.08);
    padding-left: 14px;
  }

  .he-product-core__services strong,
  .he-product-core__specs strong {
    font-size: 13px;
    font-weight: 430;
  }

  .he-product-core__services span,
  .he-product-core__specs span {
    color: var(--he-muted);
    font-size: 13px;
    line-height: 1.45;
  }

  .he-product-core__accordions {
    border-top: 1px solid rgba(0,0,0,.12);
  }

  .he-product-core__accordions--summary {
    margin-top: 2px;
  }

  .he-product-core__story {
    width: min(100%, calc(var(--main-media-max, 500px) + 86px));
    justify-self: center;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .he-product-core__story:empty {
    display: none;
  }

  .he-product-core__story::-webkit-scrollbar {
    height: 3px;
  }

  .he-product-core__story::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-product-core__story-card {
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(0,0,0,.06);
    min-width: 0;
    scroll-snap-align: start;
    transition: transform .35s cubic-bezier(.2,.82,.2,1), background .3s ease;
  }

  .he-product-core__story-card:hover {
    transform: translateY(-3px);
    background: #fff;
  }

  .he-product-core__story-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ececea;
  }

  .he-product-core__story-media img,
  .he-product-core__story-media svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .he-product-core__story-copy {
    padding: 16px;
  }

  .he-product-core__story-copy h3 {
    margin: 0;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 340;
    line-height: 1.1;
  }

  .he-product-core__story-copy p {
    margin: 8px 0 0;
    color: var(--he-muted);
    font-size: 13px;
    line-height: 1.55;
  }

  .he-product-core__story-reviews {
    width: min(100%, calc(var(--main-media-max, 500px) + 86px));
    justify-self: center;
    display: grid;
    gap: 14px;
  }

  .he-product-core__story-reviews-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
  }

  .he-product-core__story-reviews-head p {
    margin: 0 0 4px;
    color: var(--he-muted);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .he-product-core__story-reviews-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 320;
    letter-spacing: -.018em;
  }

  .he-product-core__story-reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 72%);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .he-product-core__story-reviews-track::-webkit-scrollbar {
    height: 3px;
  }

  .he-product-core__story-reviews-track::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-product-core__review-card {
    scroll-snap-align: start;
    padding: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.06);
  }

  .he-product-core__review-stars {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .13em;
  }

  .he-product-core__review-card blockquote {
    margin: 0;
    color: var(--he-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .he-product-core__review-card footer {
    display: grid;
    gap: 2px;
    margin-top: 18px;
  }

  .he-product-core__review-card strong {
    font-size: 13px;
    font-weight: 450;
  }

  .he-product-core__review-card span {
    color: var(--he-muted);
    font-size: 12px;
  }

  .he-product-core__accordions details {
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 16px 0;
  }

  .he-product-core__accordions summary {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
  }

  .he-product-core__accordions summary::-webkit-details-marker {
    display: none;
  }

  .he-product-core__accordions summary::after {
    content: "+";
    float: right;
    font-weight: 300;
    transition: transform .24s ease;
  }

  .he-product-core__accordions details[open] summary::after {
    transform: rotate(45deg);
  }

  .he-product-core__accordions div {
    margin-top: 10px;
    color: var(--he-muted);
    line-height: 1.7;
  }

  .he-product-core__mobile-buy {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(13,13,13,.92);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
    backdrop-filter: blur(16px);
  }

  .he-product-core__mobile-buy span,
  .he-product-core__mobile-buy strong {
    display: block;
  }

  .he-product-core__mobile-buy span {
    max-width: 42vw;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .he-product-core__mobile-buy strong {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 520;
  }

  .he-product-core__mobile-buy button {
    min-height: 42px;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    color: #151515;
    padding: 0 18px;
    font: inherit;
    font-size: 13px;
  }

  @keyframes he-product-media-in {
    from { opacity: .001; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 989px) {
    .he-product-core__shell {
      grid-template-columns: 1fr;
    }

    .he-product-core__summary {
      position: static;
    }
  }

  @media (max-width: 749px) {
    .he-product-core__shell {
      width: min(100% - 24px, 680px);
    }

    .he-product-core__gallery {
      grid-template-columns: 1fr;
    }

    .he-product-core__main-media {
      width: 100%;
      max-width: 480px;
    }

    .he-product-core__thumbs {
      order: 2;
      grid-auto-flow: column;
      grid-auto-columns: 64px;
      overflow-x: auto;
      padding-bottom: 2px;
    }

    .he-product-core__thumb {
      width: 64px;
    }

    .he-product-core__actions,
    .he-product-core__specs {
      grid-template-columns: 1fr;
    }

    .he-product-core__story {
      width: 100%;
      grid-auto-columns: 82%;
      justify-self: stretch;
    }

    .he-product-core__story-reviews {
      width: 100%;
      justify-self: stretch;
    }

    .he-product-core__story-reviews-track {
      grid-auto-columns: 86%;
    }

    .he-product-core__mobile-buy {
      display: grid;
    }
  }
/* END_SECTION:he-product-core */

/* START_SECTION:he-product-rail (INDEX:14) */
.he-product-rail {
    background: var(--rail-bg);
    color: var(--rail-text);
  }

  @media (min-width: 750px) {
    .he-product-rail > .he-shell {
      width: min(calc(100% - (var(--rail-pad-x-desktop) * 2)), var(--page-width, 1440px));
    }
  }

  .he-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
  }

  .he-section-head p {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .he-section-head h2 {
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 360;
    line-height: 1;
    letter-spacing: -.02em;
  }

  .he-section-head > a {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .he-product-rail__tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 4px;
    background: rgba(255,255,255,.72);
  }

  .he-product-rail__tabs button {
    min-height: 30px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(21,21,21,.58);
    padding: 0 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 430;
    letter-spacing: .01em;
    transition: background .24s ease, color .24s ease;
  }

  .he-product-rail__tabs button.is-active {
    background: #151515;
    color: #fff;
  }

  .he-product-rail__panel {
    display: none;
  }

  .he-product-rail__panel.is-active {
    display: block;
    animation: he-product-panel-in .34s cubic-bezier(.2,.82,.2,1) both;
  }

  .he-product-rail__viewport {
    overflow: hidden;
    margin-inline: 0;
  }

  .he-product-rail__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--rail-card-width);
    gap: var(--rail-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    padding: 1px 1px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .he-product-rail__track::-webkit-scrollbar {
    display: none;
  }

  .he-product-card {
    display: grid;
    gap: 7px;
    min-width: 0;
    scroll-snap-align: start;
  }

  .he-product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f1f2f0;
    border: 0;
    isolation: isolate;
    aspect-ratio: var(--product-media-ratio, 4 / 5);
  }

  .he-product-card__media img,
  .he-product-card__media svg {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: var(--product-fit, contain);
    object-position: center;
    padding: var(--product-padding, 0px);
    transition: transform .5s ease;
  }

  .he-product-card__media .he-product-card__hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .28s ease, transform .5s ease;
  }

  .he-product-card:hover .he-product-card__media img,
  .he-product-card:hover .he-product-card__media svg {
    transform: scale(1.035);
  }

  .he-product-card:hover .he-product-card__hover {
    opacity: 1;
  }

  .he-product-rail__progress {
    display: flex;
    width: min(var(--rail-progress-width), 100%);
    height: 2px;
    margin: clamp(14px, 1.5vw, 22px) auto 0;
    overflow: hidden;
    background: var(--rail-progress-bg);
    transform: translateZ(0);
  }

  .he-product-rail__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--rail-progress-fill);
    transform: scaleX(.18);
    transform-origin: left center;
    transition: transform .24s ease;
  }

  .he-product-card__title {
    display: block;
    font-size: 13.5px;
    font-weight: 360;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
  }

  .he-product-card__price {
    display: flex;
    gap: 8px;
    color: var(--he-muted);
    font-size: 13.5px;
    font-weight: 380;
  }

  .he-product-card__price strong {
    color: #b12a24;
    font-weight: 500;
  }

  @keyframes he-product-panel-in {
    from { opacity: .001; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

    @media (max-width: 749px) {
    .he-section-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
    }

    .he-product-rail__tabs {
      order: 2;
      margin-left: 0;
    }

    .he-product-rail__track {
      grid-auto-columns: 46%;
      gap: 12px;
      padding-right: 14px;
    }

    .he-section-head h2 {
      font-size: clamp(28px, 9vw, 40px);
    }
  }
/* END_SECTION:he-product-rail */

/* START_SECTION:he-product-story (INDEX:15) */
.he-product-story {
    background: var(--story-bg);
    color: var(--story-text);
  }

  .he-product-story__shell {
    width: min(100% - 32px, 1480px);
    margin: 0 auto;
  }

  .he-product-story__intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
    gap: clamp(24px, 7vw, 130px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 60px);
  }

  .he-product-story__intro > p,
  .he-product-story__spec > span,
  .he-product-story__feature-copy > span {
    margin: 0 0 12px;
    display: block;
    font-size: 11px;
    font-weight: 420;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .65;
  }

  .he-product-story__intro h2 {
    grid-column: 1;
    margin: 0;
    font-size: clamp(38px, 5.8vw, 84px);
    font-weight: 330;
    line-height: .96;
    letter-spacing: -.025em;
  }

  .he-product-story__copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    color: currentColor;
    opacity: .68;
    line-height: 1.72;
  }

  .he-product-story__copy p { margin: 0; }

  .he-product-story__hero {
    position: relative;
    min-height: min(66vw, 760px);
    overflow: hidden;
    background: #e9e9e6;
  }

  .he-product-story__hero-media,
  .he-product-story__hero-media img,
  .he-product-story__hero-media svg {
    width: 100%;
    height: 100%;
  }

  .he-product-story__hero-media {
    position: absolute;
    inset: 0;
  }

  .he-product-story__hero-media img,
  .he-product-story__hero-media svg {
    display: block;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2,.82,.2,1), filter .45s ease;
  }

  .he-product-story__hero:hover img {
    transform: scale(1.025);
    filter: contrast(1.03) brightness(1.02);
  }

  .he-product-story__hero-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
    font-size: 12px;
    text-shadow: 0 1px 12px rgba(0,0,0,.45);
  }

  .he-product-story__hero-caption strong { font-weight: 430; }

  .he-product-story__features {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 3);
    gap: 12px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .he-product-story__features::-webkit-scrollbar {
    height: 3px;
  }

  .he-product-story__features::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-product-story__feature {
    background: rgba(0,0,0,.028);
    min-width: 0;
    scroll-snap-align: start;
    transition: transform .35s cubic-bezier(.2,.82,.2,1), background .35s ease;
  }

  .he-product-story__feature:hover {
    transform: translateY(-4px);
    background: rgba(0,0,0,.045);
  }

  .he-product-story__feature-media {
    overflow: hidden;
    aspect-ratio: 1 / 1.08;
    background: #e9e9e6;
  }

  .he-product-story__feature-media img,
  .he-product-story__feature-media svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.82,.2,1), filter .45s ease;
  }

  .he-product-story__feature:hover .he-product-story__feature-media img {
    transform: scale(1.04);
    filter: contrast(1.03) brightness(1.03);
  }

  .he-product-story__feature-copy {
    padding: 22px;
  }

  .he-product-story__feature-copy h3,
  .he-product-story__spec h3 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 340;
    line-height: 1.05;
    letter-spacing: -.018em;
  }

  .he-product-story__feature-copy p,
  .he-product-story__spec p {
    margin: 12px 0 0;
    line-height: 1.65;
    opacity: .7;
  }

  .he-product-story__feature-copy a {
    display: inline-block;
    margin-top: 18px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    padding-bottom: 3px;
  }

  .he-product-story__spec {
    max-width: 820px;
    padding: clamp(64px, 11vw, 160px) 0 clamp(20px, 4vw, 54px);
  }

  @media (max-width: 749px) {
    .he-product-story__shell { width: min(100% - 24px, 680px); }
    .he-product-story__intro { grid-template-columns: 1fr; gap: 18px; }
    .he-product-story__intro h2 { grid-column: auto; }
    .he-product-story__copy { grid-column: auto; grid-row: auto; }
    .he-product-story__hero { min-height: 112vw; }
    .he-product-story__features {
      grid-auto-columns: 82vw;
      gap: 8px;
      margin-right: -12px;
      padding-right: 12px;
    }
    .he-product-story__feature { display: grid; grid-template-columns: .9fr 1fr; }
    .he-product-story__feature-media { aspect-ratio: auto; }
    .he-product-story__feature-copy { padding: 18px; }
  }
/* END_SECTION:he-product-story */

/* START_SECTION:he-reviews (INDEX:16) */
.he-reviews {
    background: var(--reviews-bg);
    color: var(--reviews-text);
  }

  .he-reviews__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: var(--review-card-gap);
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .he-reviews__grid::-webkit-scrollbar {
    height: 3px;
  }

  .he-reviews__grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-review {
    position: relative;
    display: grid;
    gap: 22px;
    min-height: 280px;
    padding: clamp(22px, 3vw, 36px);
    border: 1px solid rgba(15,18,20,.06);
    background: var(--review-card-bg);
    border-radius: var(--review-card-radius);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform .42s cubic-bezier(.2,.82,.2,1), background .35s ease, box-shadow .35s ease;
  }

  .he-review::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, transparent 42%, rgba(255,255,255,.54) 50%, transparent 58%, transparent 100%);
    background-size: 240% 100%;
    background-position: -140% 0;
    transition: background-position .86s cubic-bezier(.2,.82,.2,1);
  }

  .he-review:hover {
    transform: translateY(-4px);
    background: var(--review-card-hover-bg);
    box-shadow: 0 22px 58px rgba(16,19,21,.08);
  }

  .he-review:hover::before {
    background-position: 140% 0;
  }

  .he-review__stars {
    font-size: 13px;
    letter-spacing: .16em;
  }

  .he-review p {
    color: var(--he-text);
    font-size: clamp(18px, 1.72vw, 24px);
    font-weight: 360;
    line-height: 1.34;
  }

  .he-review footer {
    display: grid;
    gap: 2px;
    align-self: end;
  }

  .he-review footer span {
    font-weight: 430;
  }

  .he-review footer small {
    color: var(--he-muted);
  }

  @media (max-width: 899px) {
    .he-reviews__grid {
      grid-auto-columns: 88%;
      scrollbar-width: none;
    }

    .he-reviews__grid::-webkit-scrollbar {
      display: none;
    }

    .he-review {
      scroll-snap-align: start;
    }
  }
/* END_SECTION:he-reviews */

/* START_SECTION:main-404 (INDEX:17) */
.he-empty {
    color: var(--empty-text);
    min-height: 60vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    text-align: center;
  }

  .he-empty p {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .he-empty h1 {
    font-size: clamp(42px, 7vw, 92px);
    font-weight: 500;
  }

  .he-empty-section {
    background: var(--empty-bg);
  }
/* END_SECTION:main-404 */

/* START_SECTION:main-cart (INDEX:18) */
.he-cart-page { background: var(--cart-bg); color: var(--cart-text); min-height: 64vh; }
  .he-cart-page__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px 24px; padding-bottom: clamp(28px, 5vw, 60px); }
  .he-cart-page__head > p { flex-basis: 100%; margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; opacity: .62; }
  .he-cart-page__head h1 { font-size: clamp(48px, 7vw, 102px); font-weight: 360; line-height: .9; letter-spacing: 0; }
  .he-cart-page__head span { font-size: 13px; opacity: .62; }
  .he-cart-page__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .4fr); gap: clamp(30px, 6vw, 100px); align-items: start; }
  .he-cart-page__items { border-top: 1px solid rgba(0,0,0,.13); }
  .he-cart-page__item { display: grid; grid-template-columns: 142px minmax(0, 1fr) auto; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.13); }
  .he-cart-page__image { background: #efefec; }
  .he-cart-page__image img, .he-cart-page__image svg { display: block; width: 100%; aspect-ratio: .82; object-fit: cover; }
  .he-cart-page__item-info { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; gap: 20px; }
  .he-cart-page__item h2, .he-cart-page__summary h2, .he-cart-page__empty h2 { font-size: 20px; font-weight: 440; line-height: 1.1; }
  .he-cart-page__item p { margin: 6px 0 0; color: currentColor; opacity: .62; font-size: 13px; }
  .he-cart-page__item > strong { font-size: 14px; font-weight: 520; white-space: nowrap; }
  .he-cart-page__item-bottom { display: flex; align-items: center; gap: 14px; }
  .he-cart-page__item-bottom input { width: 58px; height: 32px; border: 1px solid rgba(0,0,0,.2); background: transparent; color: inherit; font: inherit; text-align: center; }
  .he-cart-page__item-bottom a, .he-cart-page__continue { font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
  .he-cart-page__update { margin-top: 18px; border: 0; background: transparent; padding: 0; color: inherit; cursor: pointer; font: inherit; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
  .he-cart-page__summary { position: sticky; top: 100px; display: grid; gap: 18px; padding: 26px; background: rgba(0,0,0,.045); }
  .he-cart-page__summary > div { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.13); border-bottom: 1px solid rgba(0,0,0,.13); }
  .he-cart-page__summary label { font-size: 12px; }
  .he-cart-page__summary textarea { min-height: 76px; resize: vertical; border: 1px solid rgba(0,0,0,.18); background: #fff; padding: 10px; color: #151515; font: inherit; }
  .he-cart-page__summary p { margin: 0; color: currentColor; opacity: .65; font-size: 12px; line-height: 1.6; }
  .he-cart-page__summary .he-button { width: 100%; border-radius: 0; }
  .he-cart-page__continue { justify-self: center; }
  .he-cart-page__empty { display: grid; justify-items: start; gap: 14px; min-height: 320px; align-content: start; }
  .he-cart-page__empty p { max-width: 420px; color: currentColor; opacity: .68; }
  @media (max-width: 749px) { .he-cart-page__layout { grid-template-columns: 1fr; } .he-cart-page__item { grid-template-columns: 100px minmax(0, 1fr); } .he-cart-page__item > strong { grid-column: 2; justify-self: start; margin-top: -10px; } .he-cart-page__summary { position: static; } }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:19) */
.he-collection-page { background: var(--collection-bg); color: var(--collection-text); }
  .he-collection-page__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); align-items: end; gap: 28px; padding-bottom: clamp(28px, 5vw, 64px); }
  .he-collection-page__head > div > p { margin: 0 0 10px; font-size: 11px; font-weight: 420; letter-spacing: .08em; text-transform: uppercase; opacity: .65; }
  .he-collection-page__head h1 { font-size: clamp(42px, 6.2vw, 92px); font-weight: 330; line-height: .96; letter-spacing: -.025em; text-transform: none; }
  .he-collection-page__description { margin: 0; line-height: 1.7; color: currentColor; opacity: .68; }
  .he-collection-page__description p { color: inherit; }
  .he-collection-page__toolbar { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(0,0,0,.09); border-bottom: 1px solid rgba(0,0,0,.09); font-size: 12px; font-weight: 380; }
  .he-collection-page__sort { display: flex; align-items: center; gap: 10px; }
  .he-collection-page__sort select { min-height: 32px; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
  .he-collection-page__grid { display: grid; grid-template-columns: repeat(var(--collection-columns, 4), minmax(0, 1fr)); gap: var(--collection-gap, 16px); padding-top: 22px; }
  .he-collection-page__grid .he-product-card { min-width: 0; }
  .he-collection-page__grid .he-product-card { display: grid; gap: 10px; }
  .he-collection-page__grid .he-product-card__media { position: relative; display: block; overflow: hidden; background: #f3f4f2; border: 1px solid rgba(0,0,0,.045); aspect-ratio: var(--collection-image-ratio, 4 / 5); }
  .he-collection-page__grid .he-product-card__media img, .he-collection-page__grid .he-product-card__media svg { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; object-position: center; transition: transform .5s cubic-bezier(.2,.82,.2,1); }
  .he-collection-page__grid .he-product-card__media .he-product-card__hover { position: absolute; inset: 0; opacity: 0; transition: opacity .28s ease, transform .45s ease; }
  .he-collection-page__grid .he-product-card:hover .he-product-card__media > img { transform: scale(1.025); }
  .he-collection-page__grid .he-product-card:hover .he-product-card__hover { opacity: 1; }
  .he-collection-page__grid .he-product-card__title { font-size: 15px; font-weight: 360; line-height: 1.25; }
  .he-collection-page__grid .he-product-card__price { display: flex; gap: 8px; color: var(--he-muted); font-size: 14px; font-weight: 380; }
  .he-collection-page__grid .he-product-card__price strong { color: #b12a24; font-weight: 460; }
  .he-collection-page__empty { grid-column: 1 / -1; display: grid; justify-items: start; gap: 14px; min-height: 280px; align-content: center; }
  .he-collection-page__empty h2 { font-size: 30px; font-weight: 400; }
  .he-collection-page__pagination { display: flex; justify-content: center; align-items: center; gap: 18px; padding: 48px 0 8px; font-size: 13px; }
  .he-collection-page__pagination a { border-bottom: 1px solid currentColor; padding-bottom: 3px; }
  @media (max-width: 989px) { .he-collection-page__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (max-width: 749px) { .he-collection-page__head { grid-template-columns: 1fr; gap: 18px; } .he-collection-page__toolbar { align-items: flex-start; } .he-collection-page__sort { display: grid; gap: 4px; } .he-collection-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
/* END_SECTION:main-collection */

/* START_SECTION:main-list-collections (INDEX:20) */
.he-listing-section {
    background: var(--listing-bg);
    color: var(--listing-text);
  }

  .he-listing h1 {
    margin-bottom: 24px;
    font-size: clamp(38px, 5.4vw, 78px);
    font-weight: 360;
  }

  .he-listing .he-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .he-listing .he-card {
    display: grid;
    gap: 10px;
    background: var(--listing-card-bg);
  }

  .he-listing .he-card img,
  .he-listing .he-card svg {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .he-listing .he-card span {
    padding-bottom: 6px;
    font-size: 14px;
    font-weight: 380;
  }

  @media (max-width: 749px) {
    .he-listing .he-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
  }
/* END_SECTION:main-list-collections */

/* START_SECTION:main-page (INDEX:21) */
.he-page {
    max-width: 920px;
    color: var(--page-text);
  }

  .he-page-section {
    background: var(--page-bg);
  }

  .he-page h1 {
    margin-bottom: 28px;
    font-size: clamp(38px, 6vw, 84px);
    font-weight: 500;
  }

  .he-page__content {
    color: var(--page-muted);
    font-size: 18px;
  }
/* END_SECTION:main-page */

/* START_SECTION:main-product (INDEX:22) */
.he-product-core {
    background: var(--core-bg);
    color: var(--core-text);
  }

  .he-product-core__shell {
    width: min(100% - 32px, 1480px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, var(--summary-width, 470px));
    gap: clamp(24px, 4.6vw, 68px);
    align-items: start;
  }

  .he-product-core__left {
    display: grid;
    gap: 24px;
    min-width: 0;
  }

  .he-product-core__gallery {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .he-product-core__thumbs {
    display: grid;
    gap: 10px;
  }

  .he-product-core__thumb {
    width: 72px;
    aspect-ratio: var(--media-ratio, 4 / 5);
    padding: 0;
    border: 1px solid rgba(0,0,0,.1);
    background: #f3f4f2;
    cursor: pointer;
    overflow: hidden;
  }

  .he-product-core__thumb.is-active {
    border-color: currentColor;
  }

  .he-product-core__thumb.is-filtered-out,
  .he-product-core__media-slide.is-filtered-out {
    display: none !important;
  }

  .he-product-core__thumb img,
  .he-product-core__thumb svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .he-product-core__main-media {
    width: min(100%, var(--main-media-max, 480px));
    justify-self: center;
    background: #f3f4f2;
    border: 1px solid rgba(0,0,0,.045);
    overflow: hidden;
    position: relative;
    aspect-ratio: var(--media-ratio, 4 / 5);
  }

  .he-product-core__media-slide {
    display: none;
    height: 100%;
  }

  .he-product-core__media-slide.is-active {
    display: block;
    animation: he-product-media-in .42s cubic-bezier(.2,.78,.2,1) both;
  }

  .he-product-core__media-slide img,
  .he-product-core__media-slide svg,
  .he-product-core__media-slide video,
  .he-product-core__media-slide model-viewer {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .he-product-core__summary {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 16px;
  }

  .he-product-core__kicker,
  .he-product-core__label {
    margin: 0;
    color: rgba(21,21,21,.62);
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .he-product-core__summary h1 {
    margin: 0;
    font-size: clamp(28px, 3.1vw, 46px);
    font-weight: 320;
    line-height: 1.03;
    letter-spacing: -.018em;
    text-transform: none;
  }

  .he-product-core__rating,
  .he-product-core__price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .he-product-core__rating span {
    font-size: 12px;
    letter-spacing: .16em;
  }

  .he-product-core__rating a,
  .he-product-core__size {
    color: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .he-product-core__price strong {
    font-size: 18px;
    font-weight: 460;
  }

  .he-product-core__price s,
  .he-product-core__intro {
    color: var(--he-muted);
  }

  .he-product-core__intro {
    margin: 0;
    max-width: 54ch;
    line-height: 1.66;
    font-weight: 370;
  }

  .he-product-core__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 13px 0;
  }

  .he-product-core__tabs a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
    opacity: .72;
    transition: opacity .25s ease, transform .25s ease;
  }

  .he-product-core__tabs a:hover {
    opacity: 1;
    transform: translateY(-1px);
  }

  .he-product-core__form {
    display: grid;
    gap: 12px;
  }

  .he-product-core__options {
    display: grid;
    gap: 14px;
  }

  .he-product-core__option-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 9px;
  }

  .he-product-core__option-label {
    margin: 0;
    color: rgba(21,21,21,.62);
    font-size: 12px;
    font-weight: 420;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .he-product-core__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .he-product-core__option-values--color {
    gap: 10px;
  }

  .he-product-core__option-values--color .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .he-product-core__option {
    position: relative;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
  }

  .he-product-core__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .he-product-core__color-dot {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--swatch-color);
    border: 1px solid rgba(0,0,0,.18);
    box-shadow: inset 0 0 0 4px #fff;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  }

  .he-product-core__option:hover .he-product-core__color-dot,
  .he-product-core__option input:checked + .he-product-core__color-dot {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,.36);
  }

  .he-product-core__option input:checked + .he-product-core__color-dot {
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 1.5px #151515;
  }

  .he-product-core__size-pill,
  .he-product-core__plain-pill {
    min-width: 46px;
    min-height: 38px;
    padding: 0 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.16);
    background: #fff;
    color: #151515;
    font-size: 13px;
    font-weight: 390;
    transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
  }

  .he-product-core__option:hover .he-product-core__size-pill,
  .he-product-core__option:hover .he-product-core__plain-pill {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,.38);
  }

  .he-product-core__option input:checked + .he-product-core__size-pill,
  .he-product-core__option input:checked + .he-product-core__plain-pill {
    background: #151515;
    color: #fff;
    border-color: #151515;
  }

  .he-product-core__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }

  .he-product-core__button {
    min-height: 58px;
    border: 1px solid #151515;
    border-radius: 0;
    background: #151515;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 430;
    transition: transform .32s cubic-bezier(.2,.82,.2,1), background .28s ease, color .28s ease;
  }

  .he-product-core__button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #151515;
  }

  .he-product-core__button:disabled {
    opacity: .45;
    cursor: not-allowed;
  }

  .he-product-core__services,
  .he-product-core__specs {
    display: grid;
    gap: 8px;
  }

  .he-product-core__services {
    margin-top: 4px;
    gap: 10px;
  }

  .he-product-core__services div {
    position: relative;
    display: grid;
    gap: 2px;
    padding: 2px 0 2px 34px;
    border: 0;
    background: transparent;
  }

  .he-product-core__services div::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 21px;
    height: 21px;
    border: 1.2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    line-height: 1;
  }

  .he-product-core__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
  }

  .he-product-core__specs div {
    display: grid;
    gap: 3px;
    padding: 13px 14px 13px 0;
    border: 0;
    background: transparent;
  }

  .he-product-core__specs div + div {
    border-left: 1px solid rgba(0,0,0,.08);
    padding-left: 14px;
  }

  .he-product-core__services strong,
  .he-product-core__specs strong {
    font-size: 13px;
    font-weight: 430;
  }

  .he-product-core__services span,
  .he-product-core__specs span {
    color: var(--he-muted);
    font-size: 13px;
    line-height: 1.45;
  }

  .he-product-core__accordions {
    border-top: 1px solid rgba(0,0,0,.12);
  }

  .he-product-core__accordions--summary {
    margin-top: 2px;
  }

  .he-product-core__story {
    width: min(100%, calc(var(--main-media-max, 500px) + 86px));
    justify-self: center;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .he-product-core__story:empty {
    display: none;
  }

  .he-product-core__story::-webkit-scrollbar {
    height: 3px;
  }

  .he-product-core__story::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-product-core__story-card {
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(0,0,0,.06);
    min-width: 0;
    scroll-snap-align: start;
    transition: transform .35s cubic-bezier(.2,.82,.2,1), background .3s ease;
  }

  .he-product-core__story-card:hover {
    transform: translateY(-3px);
    background: #fff;
  }

  .he-product-core__story-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ececea;
  }

  .he-product-core__story-media img,
  .he-product-core__story-media svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .he-product-core__story-copy {
    padding: 16px;
  }

  .he-product-core__story-copy h3 {
    margin: 0;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 340;
    line-height: 1.1;
  }

  .he-product-core__story-copy p {
    margin: 8px 0 0;
    color: var(--he-muted);
    font-size: 13px;
    line-height: 1.55;
  }

  .he-product-core__story-reviews {
    width: min(100%, calc(var(--main-media-max, 500px) + 86px));
    justify-self: center;
    display: grid;
    gap: 14px;
  }

  .he-product-core__story-reviews-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
  }

  .he-product-core__story-reviews-head p {
    margin: 0 0 4px;
    color: var(--he-muted);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .he-product-core__story-reviews-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 320;
    letter-spacing: -.018em;
  }

  .he-product-core__story-reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 72%);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .he-product-core__story-reviews-track::-webkit-scrollbar {
    height: 3px;
  }

  .he-product-core__story-reviews-track::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .he-product-core__review-card {
    scroll-snap-align: start;
    padding: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.06);
  }

  .he-product-core__review-stars {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .13em;
  }

  .he-product-core__review-card blockquote {
    margin: 0;
    color: var(--he-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .he-product-core__review-card footer {
    display: grid;
    gap: 2px;
    margin-top: 18px;
  }

  .he-product-core__review-card strong {
    font-size: 13px;
    font-weight: 450;
  }

  .he-product-core__review-card span {
    color: var(--he-muted);
    font-size: 12px;
  }

  .he-product-core__accordions details {
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 16px 0;
  }

  .he-product-core__accordions summary {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
  }

  .he-product-core__accordions summary::-webkit-details-marker {
    display: none;
  }

  .he-product-core__accordions summary::after {
    content: "+";
    float: right;
    font-weight: 300;
    transition: transform .24s ease;
  }

  .he-product-core__accordions details[open] summary::after {
    transform: rotate(45deg);
  }

  .he-product-core__accordions div {
    margin-top: 10px;
    color: var(--he-muted);
    line-height: 1.7;
  }

  .he-product-core__mobile-buy {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(13,13,13,.92);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
    backdrop-filter: blur(16px);
  }

  .he-product-core__mobile-buy span,
  .he-product-core__mobile-buy strong {
    display: block;
  }

  .he-product-core__mobile-buy span {
    max-width: 42vw;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .he-product-core__mobile-buy strong {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 520;
  }

  .he-product-core__mobile-buy button {
    min-height: 42px;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    color: #151515;
    padding: 0 18px;
    font: inherit;
    font-size: 13px;
  }

  @keyframes he-product-media-in {
    from { opacity: .001; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 989px) {
    .he-product-core__shell {
      grid-template-columns: 1fr;
    }

    .he-product-core__summary {
      position: static;
    }
  }

  @media (max-width: 749px) {
    .he-product-core__shell {
      width: min(100% - 24px, 680px);
    }

    .he-product-core__gallery {
      grid-template-columns: 1fr;
    }

    .he-product-core__main-media {
      width: 100%;
      max-width: 480px;
    }

    .he-product-core__thumbs {
      order: 2;
      grid-auto-flow: column;
      grid-auto-columns: 64px;
      overflow-x: auto;
      padding-bottom: 2px;
    }

    .he-product-core__thumb {
      width: 64px;
    }

    .he-product-core__actions,
    .he-product-core__specs {
      grid-template-columns: 1fr;
    }

    .he-product-core__story {
      width: 100%;
      grid-auto-columns: 82%;
      justify-self: stretch;
    }

    .he-product-core__story-reviews {
      width: 100%;
      justify-self: stretch;
    }

    .he-product-core__story-reviews-track {
      grid-auto-columns: 86%;
    }

    .he-product-core__mobile-buy {
      display: grid;
    }
  }
/* END_SECTION:main-product */

/* START_SECTION:main-search (INDEX:23) */
.he-search-page { background: var(--search-bg); color: var(--search-text); min-height: 64vh; }
  .he-search-page__head { max-width: 920px; }
  .he-search-page__head > p { margin: 0 0 12px; font-size: 11px; font-weight: 420; letter-spacing: .09em; text-transform: uppercase; opacity: .62; }
  .he-search-page__head h1 { font-size: clamp(46px, 7.2vw, 96px); font-weight: 330; line-height: .94; letter-spacing: -.025em; }
  .he-search-page__form { display: grid; grid-template-columns: 1fr auto; margin-top: clamp(32px, 6vw, 70px); border-bottom: 1px solid currentColor; }
  .he-search-page__form input { min-width: 0; height: 58px; border: 0; outline: 0; background: transparent; color: inherit; font: inherit; font-size: clamp(18px, 2vw, 25px); }
  .he-search-page__form button { border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
  .he-search-page__result-head { display: flex; justify-content: space-between; gap: 20px; margin: 56px 0 20px; font-size: 13px; }
  .he-search-page__result-head span { opacity: .65; }
  .he-search-page__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .he-search-page__grid .he-product-card { display: grid; gap: 10px; min-width: 0; }
  .he-search-page__grid .he-product-card__media { position: relative; display: block; overflow: hidden; background: #f3f4f2; border: 1px solid rgba(0,0,0,.045); aspect-ratio: var(--search-image-ratio, 4 / 5); }
  .he-search-page__grid .he-product-card__media img, .he-search-page__grid .he-product-card__media svg { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; object-position: center; transition: transform .5s cubic-bezier(.2,.82,.2,1); }
  .he-search-page__grid .he-product-card__media .he-product-card__hover { position: absolute; inset: 0; opacity: 0; transition: opacity .28s ease, transform .45s ease; }
  .he-search-page__grid .he-product-card:hover .he-product-card__media > img { transform: scale(1.025); }
  .he-search-page__grid .he-product-card:hover .he-product-card__hover { opacity: 1; }
  .he-search-page__grid .he-product-card__title { font-size: 15px; font-weight: 360; line-height: 1.25; }
  .he-search-page__grid .he-product-card__price { display: flex; gap: 8px; color: var(--he-muted); font-size: 14px; font-weight: 380; }
  .he-search-page__grid .he-product-card__price strong { color: #b12a24; font-weight: 460; }
  .he-search-page__empty, .he-search-page__initial { max-width: 440px; margin-top: 72px; color: currentColor; opacity: .68; line-height: 1.7; }
  .he-search-page__empty { grid-column: 1 / -1; }
  .he-search-page__empty h2 { font-size: 28px; font-weight: 400; opacity: 1; }
  .he-search-page__pagination { display: flex; justify-content: center; gap: 18px; padding: 48px 0 8px; font-size: 13px; }
  .he-search-page__pagination a { border-bottom: 1px solid currentColor; padding-bottom: 3px; }
  @media (max-width: 989px) { .he-search-page__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (max-width: 749px) { .he-search-page__form { margin-top: 36px; } .he-search-page__result-head { margin-top: 38px; } .he-search-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
/* END_SECTION:main-search */