:root {
  --oh-ink: #171614;
  --oh-paper: #ffffff;
  --oh-surface: #eaeaec;
  --oh-muted: #6f6f6c;
  --oh-line: rgb(23 22 20 / 14%);
  --oh-gutter: var(--container-fluid-margin, 10px);
  --oh-grid-gap: var(--default-column-gap, 10px);
  --oh-font-sans: "Neue Montreal", "PP Neue Montreal", Arial, sans-serif;
  --oh-ease-out: cubic-bezier(.215, .61, .355, 1);
  --oh-ease-in-out: cubic-bezier(.645, .045, .355, 1);
}

/* Brand mark */

.off-hours-header-logo {
  display: block;
  width: 90px;
  height: auto;
  aspect-ratio: 203.91 / 42.59;
  color: inherit;
  object-fit: contain;
  object-position: left center;
}

.off-hours-header-logo:is(svg) {
  overflow: visible;
}

.off-hours-header-logo :is(path, polygon, rect, circle, ellipse) {
  fill: currentColor;
}

.site-header__logoLink:has(.off-hours-header-logo) {
  width: 90px;
}

.off-hours-loader-logo {
  display: block;
  width: clamp(120px, 18vw, 220px);
  height: auto;
}

.site-loader {
  opacity: 1;
  transition: opacity .55s var(--oh-ease-out), visibility .55s linear;
}

.site-loader.off-hours-loader-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-transition .off-hours-loader-logo {
  width: clamp(100px, 15vw, 190px);
}

.off-hours-menu-open {
  overflow: hidden;
}

.off-hours-menu-open #site-nav {
  visibility: visible;
  pointer-events: auto;
}

/* Campaign films */

.pb-row-hero__media:has(.off-hours-hero-video) {
  overflow: hidden;
}

.off-hours-hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.pb-row-hero__header {
  column-gap: 7px;
}

.off-hours-brand-film {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 375 / 487;
}

.off-hours-brand-film :is(video, .off-hours-brand-film__video) {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 30% center;
}

.off-hours-brand-film .pb-row-page-header__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.off-hours-brand-film__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(148px, 43vw, 238px);
  height: auto;
  margin: 0;
  color: var(--oh-paper);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.off-hours-brand-film__logo :is(img, svg) {
  display: block;
  width: 100%;
  height: auto;
  color: inherit;
  object-fit: contain;
}

.off-hours-brand-film__logo svg :is(path, polygon, rect, circle, ellipse) {
  fill: currentColor;
}

/* Catalog */

.oh-catalog {
  width: 100%;
  padding: clamp(42px, 6vw, 92px) 0 clamp(68px, 9vw, 136px);
  color: var(--oh-ink);
  background: var(--oh-paper);
  font-family: var(--oh-font-sans);
}

.oh-catalog-section {
  width: 100%;
  padding-inline: var(--oh-gutter);
  scroll-margin-top: calc(var(--site-header-spacer-height, 69px) + 16px);
}

.oh-catalog-section + .oh-catalog-section {
  margin-top: clamp(58px, 7vw, 110px);
}

.oh-catalog-section__header,
.oh-catalog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.oh-catalog-section__title,
.oh-catalog-title {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.oh-catalog-section__meta,
.oh-catalog-section__link,
.oh-catalog-link {
  flex: 0 0 auto;
  margin: 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}

.oh-catalog-section__link,
.oh-catalog-link {
  border-bottom: 1px solid currentColor;
}

.oh-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px var(--oh-grid-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.oh-product-card {
  min-width: 0;
  margin: 0;
}

.oh-product-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.oh-product-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--oh-surface);
}

.oh-product-card__media :is(img, picture) {
  display: block;
  width: 100%;
  height: 100%;
}

.oh-product-card__image,
.oh-product-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.001);
  transition: opacity .4s linear, transform .8s var(--oh-ease-in-out);
}

.oh-product-card__image--primary {
  padding: 5%;
  mix-blend-mode: multiply;
}

.oh-product-card__image--hover {
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
  mix-blend-mode: normal;
  opacity: 0;
}

.oh-product-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.oh-product-card__meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.oh-product-card__title,
.oh-product-card__price,
.oh-product-card__subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.oh-product-card__title {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.oh-product-card__price {
  color: var(--oh-ink);
}

.oh-product-card__subtitle {
  color: var(--oh-muted);
}

.oh-product-card__swatches {
  display: flex;
  align-items: end;
  gap: 3px;
  margin: 0 8px 8px 0;
  padding: 0;
  list-style: none;
}

.oh-product-card__swatch-item {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
}

.oh-product-card__swatch-item[data-active="true"]::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--oh-ink);
  transform: translateX(-50%);
}

.oh-product-card__swatch {
  display: block;
  width: 100%;
  height: 5px;
  border: 1px solid color-mix(in srgb, var(--swatch-color), #cacaCA 88%);
  background: var(--oh-swatch-bg, var(--swatch-color));
  transform-origin: bottom center;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94);
}

.oh-product-card__stock,
.oh-stock,
[data-oh-stock] {
  display: none !important;
}

/* Original product layout, adapted to Off Hours */

.off-hours-product-single {
  color: var(--oh-ink);
  font-family: var(--oh-font-sans);
}

.off-hours-product-gallery[hidden] {
  display: none !important;
}

.off-hours-product-gallery__track {
  min-width: 0;
}

.off-hours-product-gallery--desktop .off-hours-product-gallery__track {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.off-hours-product-media {
  overflow: hidden;
  margin: 0;
  background: var(--oh-paper);
}

.off-hours-product-media .product-single__img {
  display: block;
  width: 100%;
  height: 100%;
}

.off-hours-product-media__still {
  padding: 5%;
  object-fit: contain !important;
  object-position: center;
  mix-blend-mode: multiply;
}

.off-hours-product-media__lifestyle {
  padding: 0;
  object-fit: cover !important;
  object-position: center;
  mix-blend-mode: normal;
}

.off-hours-product-content {
  grid-column: 1 / -1;
}

.off-hours-product-gallery--mobile {
  width: calc(100% + var(--oh-gutter) * 2);
  margin-inline: calc(var(--oh-gutter) * -1);
}

.off-hours-product-gallery--mobile .off-hours-product-gallery__track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.off-hours-product-gallery--mobile
  .off-hours-product-gallery__track::-webkit-scrollbar {
  display: none;
}

.off-hours-product-gallery--mobile .off-hours-product-media {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.off-hours-product-gallery__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
}

.off-hours-product-gallery__pagination span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .22;
}

.off-hours-product-gallery__pagination span[data-active="true"] {
  opacity: 1;
}

.oh-product__variant.off-hours-color-option {
  position: relative;
  display: block;
  width: 38px;
  height: 10px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--swatch-color), #cacaCA 88%);
  color: transparent;
  background: var(--oh-swatch-bg, var(--swatch-color));
  cursor: pointer;
  transform-origin: bottom center;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94);
}

.oh-product__variant.off-hours-color-option::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--oh-ink);
  transform: translateX(-50%) scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--oh-ease-out);
}

.oh-product__variant.off-hours-color-option[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--swatch-color), #cacaCA 70%);
  color: transparent;
  background: var(--oh-swatch-bg, var(--swatch-color));
}

.oh-product__variant.off-hours-color-option[aria-pressed="true"]::after {
  transform: translateX(-50%) scaleX(1);
  transform-origin: left;
}

.off-hours-product-content .product-form__radioOptionWrap {
  gap: 4px;
}

.off-hours-product-cta {
  text-decoration: none;
}

.off-hours-product-more {
  margin: 0;
}

.off-hours-product-more > summary {
  display: inline-flex;
  list-style: none;
  cursor: pointer;
}

.off-hours-product-more > summary::-webkit-details-marker {
  display: none;
}

.off-hours-product-more[open] > summary {
  font-size: 0;
}

.off-hours-product-more[open] > summary::before {
  content: "- Close";
  font-size: 10px;
}

/* Product detail */

.oh-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-height: 100vh;
  color: var(--oh-ink);
  background: var(--oh-surface);
  font-family: var(--oh-font-sans);
}

.oh-product__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--oh-paper);
}

.oh-product__gallery[hidden],
.oh-product__specs[hidden] {
  display: none !important;
}

.oh-product__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 1;
  background: var(--oh-paper);
}

.oh-product__media :is(img, picture) {
  display: block;
  width: 100%;
  height: 100%;
}

.oh-product__media img {
  object-fit: contain;
  object-position: center;
}

.oh-product__details {
  align-self: start;
  min-width: 0;
  padding: 28px var(--oh-gutter) 76px;
}

.oh-product__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: clamp(48px, 8vw, 96px);
  color: inherit;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.oh-product__eyebrow {
  margin: 0 0 9px;
  color: var(--oh-muted);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.oh-product__title {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.oh-product__price {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.oh-product__description {
  max-width: 58ch;
  margin: 38px 0 0;
  font-size: 14px;
  line-height: 1.4;
  text-wrap: pretty;
}

.oh-product__description > :first-child {
  margin-top: 0;
}

.oh-product__description > :last-child {
  margin-bottom: 0;
}

.oh-product__variants {
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--oh-line);
}

.oh-product__variant-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.oh-product__variant-label,
.oh-product__variant-group > legend {
  margin: 0;
  padding: 0;
  color: var(--oh-muted);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.oh-product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oh-product__variant-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.oh-product__variant,
.oh-product__variant-option,
.oh-product__variant-input + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid var(--oh-line);
  color: var(--oh-ink);
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s linear, background-color .2s linear, color .2s linear;
}

.oh-product__variant[aria-pressed="true"],
.oh-product__variant-option[aria-current="true"],
.oh-product__variant-input:checked + label {
  border-color: var(--oh-ink);
  color: var(--oh-paper);
  background: var(--oh-ink);
}

.oh-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 34px;
  padding: 14px 20px;
  border: 1px solid var(--oh-ink);
  color: var(--oh-paper);
  background: var(--oh-ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s linear, background-color .25s linear;
}

.oh-product__cta[aria-disabled="true"],
.oh-product__cta:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.oh-product__specs {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--oh-line);
}

.oh-product__spec,
.oh-product__specs > div {
  display: grid;
  grid-template-columns: minmax(95px, .42fr) minmax(0, .58fr);
  gap: 18px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--oh-line);
}

.oh-product__spec :is(dt, dd),
.oh-product__specs > div > :is(dt, dd) {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.oh-product__spec dt,
.oh-product__specs > div > dt {
  color: var(--oh-muted);
}

.oh-product__accordions {
  margin-top: 38px;
  border-top: 1px solid var(--oh-line);
}

.oh-product__accordions details {
  border-bottom: 1px solid var(--oh-line);
}

.oh-product__accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  font-size: 13px;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.oh-product__accordions summary::-webkit-details-marker {
  display: none;
}

.oh-product__accordions summary::after {
  content: "+";
  flex: 0 0 auto;
}

.oh-product__accordions details[open] summary::after {
  content: "−";
}

.oh-product__accordion-content {
  max-width: 58ch;
  padding: 0 0 18px;
  font-size: 13px;
  line-height: 1.45;
}

/* Brand page */

.oh-brand {
  color: var(--oh-ink);
  background: var(--oh-paper);
  font-family: var(--oh-font-sans);
}

.oh-brand-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: clamp(440px, 72vh, 860px);
  padding: calc(var(--site-header-spacer-height, 69px) + 28px) var(--oh-gutter) 32px;
}

.oh-brand-hero--media {
  margin-top: calc(var(--site-header-spacer-height, 69px) * -1);
  color: var(--oh-paper);
  background: var(--oh-ink);
}

.oh-brand-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oh-brand-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(0 0 0 / 26%);
}

.oh-brand-hero__content {
  display: grid;
  gap: 12px;
}

.oh-brand-hero__eyebrow,
.oh-faq__eyebrow,
.oh-catalog-intro__eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.oh-brand-hero__title {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.oh-brand-copy {
  display: grid;
  gap: 28px;
  padding: clamp(72px, 10vw, 154px) var(--oh-gutter);
}

.oh-brand-copy__title {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.oh-brand-copy__body {
  max-width: 60ch;
  margin: 0;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.38;
  text-wrap: pretty;
}

.oh-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--oh-grid-gap);
  padding: 0 var(--oh-gutter) clamp(72px, 10vw, 154px);
}

.oh-brand-media {
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 4 / 5;
  background: var(--oh-surface);
}

.oh-brand-media :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */

.oh-faq {
  display: grid;
  gap: clamp(52px, 7vw, 104px);
  min-height: calc(100vh - var(--site-header-spacer-height, 69px));
  padding: clamp(76px, 10vw, 146px) var(--oh-gutter) clamp(80px, 10vw, 150px);
  color: var(--oh-ink);
  background: var(--oh-paper);
  font-family: var(--oh-font-sans);
}

.oh-faq__intro {
  display: grid;
  gap: 20px;
  align-content: start;
}

.oh-faq__title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(44px, 8vw, 108px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.oh-faq__lead {
  max-width: 52ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  text-wrap: pretty;
}

.oh-faq__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--oh-line);
}

.oh-faq__item,
.oh-faq__list details {
  border-bottom: 1px solid var(--oh-line);
}

.oh-faq__question,
.oh-faq__list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
  text-wrap: pretty;
}

.oh-faq__question::-webkit-details-marker,
.oh-faq__list summary::-webkit-details-marker {
  display: none;
}

.oh-faq__question::after,
.oh-faq__list summary::after {
  content: "+";
  align-self: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.oh-faq__item[open] .oh-faq__question::after,
.oh-faq__list details[open] summary::after {
  content: "−";
}

.oh-faq__answer,
.oh-faq__list details > :not(summary) {
  max-width: 62ch;
  padding: 0 36px 22px 0;
  font-size: 14px;
  line-height: 1.45;
  text-wrap: pretty;
}

.oh-faq__answer > :first-child {
  margin-top: 0;
}

.oh-faq__answer > :last-child {
  margin-bottom: 0;
}

.oh-catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: clamp(54px, 7vw, 104px) var(--oh-gutter) clamp(72px, 9vw, 132px);
}

.oh-catalog-intro__title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(48px, 9vw, 126px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.oh-catalog-intro__copy {
  max-width: 50ch;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  text-wrap: pretty;
}

.off-hours-footer-note {
  font-size: inherit;
  line-height: inherit;
}

.off-hours-credit {
  color: inherit;
  text-decoration: none;
}

/* Interaction and accessibility */

:where(
  .site-header,
  .oh-catalog,
  .oh-product,
  .oh-brand,
  .oh-faq
) :is(a, button, input, summary, select, textarea):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .oh-product-card__link:hover .oh-product-card__image,
  .oh-product-card__link:hover .oh-product-card__media img {
    transform: scale(1.025);
  }

  .oh-product-card__link:hover
    .oh-product-card__media:has(.oh-product-card__image--hover)
    .oh-product-card__image--primary {
    opacity: 0;
  }

  .oh-product-card__link:hover .oh-product-card__image--hover {
    opacity: 1;
  }

  .oh-product-card__swatch:hover,
  .oh-product__variant.off-hours-color-option:hover {
    transform: scaleY(2);
  }

  .oh-product-card__link:hover .oh-product-card__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .oh-product__variant:hover,
  .oh-product__variant-option:hover,
  .oh-product__variant-input + label:hover {
    border-color: var(--oh-ink);
  }

  .oh-product__cta:not([aria-disabled="true"]):not(:disabled):hover {
    color: var(--oh-ink);
    background: transparent;
  }

  .oh-product__back:hover,
  .oh-catalog-section__link:hover,
  .oh-catalog-link:hover,
  .off-hours-credit:hover {
    opacity: .6;
  }
}

@media (min-width: 768px) {
  .off-hours-brand-film {
    aspect-ratio: 820 / 444;
  }

  .off-hours-brand-film :is(video, .off-hours-brand-film__video) {
    object-position: 50% 88%;
  }

  .off-hours-brand-film__logo {
    width: clamp(205px, 29vw, 340px);
  }

  .oh-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: clamp(54px, 5vw, 82px);
  }

  .oh-product-card__link {
    gap: 10px;
  }

  .oh-product-card__title,
  .oh-product-card__price,
  .oh-product-card__subtitle {
    font-size: 14px;
  }

  .oh-product-card__swatches {
    margin: 0 5px 10px 0;
  }

  .oh-product-card__swatch-item {
    flex-basis: 35px;
    width: 35px;
  }

  .oh-product-card__swatch-item[data-active="true"]::after {
    width: 14px;
  }

  .off-hours-product-content {
    grid-column: 6 / span 3;
  }

  .oh-product {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    align-items: start;
  }

  .oh-product__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oh-product__details {
    position: sticky;
    top: var(--site-header-spacer-height, 69px);
    max-height: calc(100vh - var(--site-header-spacer-height, 69px));
    padding: 30px clamp(22px, 3vw, 48px) 70px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .oh-product__back {
    margin-bottom: clamp(58px, 7vw, 106px);
  }

  .oh-product__title {
    font-size: clamp(38px, 4vw, 66px);
  }

  .oh-brand-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--oh-grid-gap);
    align-items: start;
  }

  .oh-catalog-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .oh-catalog-intro__copy {
    justify-self: end;
    margin-bottom: 7px;
  }

  .oh-brand-copy__body {
    justify-self: end;
  }

  .oh-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oh-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--oh-grid-gap);
  }

  .oh-faq__intro {
    position: sticky;
    top: calc(var(--site-header-spacer-height, 69px) + 28px);
    align-self: start;
  }

  .oh-faq__list {
    align-self: start;
  }
}

@media (min-width: 1200px) {
  .off-hours-header-logo,
  .site-header__logoLink:has(.off-hours-header-logo) {
    width: 100px;
  }

  .off-hours-brand-film {
    aspect-ratio: 1440 / 568;
  }

  .off-hours-brand-film :is(video, .off-hours-brand-film__video) {
    object-position: 50% 90%;
  }

  .off-hours-brand-film__logo {
    width: clamp(250px, 24vw, 390px);
  }

  .oh-catalog-section__header,
  .oh-catalog-header {
    margin-bottom: 16px;
  }

  .oh-product__details {
    padding-right: clamp(38px, 4.5vw, 74px);
    padding-left: clamp(38px, 4.5vw, 74px);
  }

  .oh-product-card__swatches {
    gap: 4px;
    margin: 0 12px 14px 0;
  }

  .oh-product-card__swatch-item {
    flex-basis: 47px;
    width: 47px;
  }

  .off-hours-product-content {
    grid-column: 9 / span 3;
  }

  .oh-brand-hero {
    padding-bottom: 48px;
  }

  .oh-faq__question,
  .oh-faq__list summary {
    padding-block: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .off-hours-hero-video,
  .off-hours-brand-film video {
    transform: none !important;
  }

  .oh-product-card__image,
  .oh-product-card__media img,
  .oh-product__variant,
  .oh-product__variant-option,
  .oh-product__variant-input + label,
  .oh-product__cta {
    transition: none !important;
  }
}
