/* Editorial homepage: hero, arrivals, categories, films, customer voices. */
:root {
  --radius: 8px
}

.home-hero {
  height: clamp(520px, 56vw, 900px);
  min-height: 0;
  max-height: none
}

.home-hero .hero-image {
  object-position: center 45%
}

.home-hero .hero-shade {
  background: linear-gradient(180deg, #0005, transparent 26%, transparent 65%, #0003)
}

.home-hero-cta {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content
}

.hero-slideshow {
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 900ms ease
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.hero-dots {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ffffff66;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.2)
}

.home-hero-cta .eyebrow {
  font-size: .7rem;
  margin-bottom: 1rem;
  letter-spacing: .18em;
  text-shadow: 0 1px 9px #0008
}

.home-hero-cta .button {
  min-width: 180px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 26px
}

.is-home .collection-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}

.is-home .collection-section h2,
.category-section h2,
.centered-heading h2 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: .015em;
  text-transform: uppercase
}

.is-home .section-heading {
  margin-bottom: 1.75rem
}

.is-home .product-tag {
  display: none
}

.is-home .product-meta h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .015em
}

.is-home .product-meta {
  align-items: start;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px
}

.is-home .product-meta>span {
  font-size: .8rem
}

.is-home .product-category {
  font-size: .65rem
}

.category-section,
.testimonials-section {
  max-width: var(--container-width);
  margin: auto;
  padding: 2rem var(--page-gutter) 4rem
}

.category-browse {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px
}

.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius);
  isolation: isolate
}

.category-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 500ms ease
}

.category-card:hover img {
  transform: scale(1.035)
}

.category-card>div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #0008);
  color: white;
  padding: 3rem 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.category-card h3 {
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0
}

.watch-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem
}

.centered-heading {
  justify-content: center;
  text-align: center
}

.centered-heading .muted {
  font-size: .8125rem;
  margin-top: .75rem
}

.editorial-rail {
  grid-auto-columns: calc((100% - 5 * 18px)/6);
  gap: 18px;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px
}

.editorial-card {
  min-width: 0;
  scroll-snap-align: start
}

.editorial-card .reel-cover {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface)
}

.editorial-card .reel-cover img {
  aspect-ratio: 9/16;
  width: 100%;
  height: auto;
  object-fit: cover
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffffec;
  color: #252622;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: .875rem;
  padding-left: 3px;
  box-shadow: 0 2px 15px #0001;
  transition: transform 180ms
}

.reel-cover:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.1)
}

.reel-provider,
.reel-pending {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  background: #fffE;
  color: #252622;
  border-radius: 4px;
  font-size: .6rem;
  padding: 6px 9px
}

.reel-product {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  font-size: .625rem;
  line-height: 1.5;
  min-height: 50px
}

.editorial-card .reel-product img {
  height: 45px;
  width: 33px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0
}

.reel-product>span:first-of-type {
  flex: 1
}

.reel-product>span:last-child {
  font-size: .85rem
}

.reel-product strong {
  display: block;
  font-weight: 500;
  margin-top: 3px
}

.centered-rail-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem
}

.centered-rail-actions .round-button {
  width: 32px;
  height: 32px;
  font-size: .8rem
}

.testimonials-section {
  padding-top: 3rem;
  padding-bottom: 6rem
}

.testimonials-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 32px)/3);
  gap: 32px;
  overflow: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 1rem 0
}

.testimonial-card {
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  scroll-snap-align: start
}

.testimonial-card>img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 1rem
}

.review-monogram {
  width: 70px;
  height: 80px;
  display: grid;
  place-items: center;
  background: #f2f1ed;
  border-radius: var(--radius);
  margin: 0 auto 1rem;
  font-size: 1.7rem;
  font-weight: 300
}

.testimonial-card h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .25rem
}

.review-verified {
  font-size: .6rem;
  color: var(--color-text-muted)
}

.review-stars {
  letter-spacing: .2em;
  font-size: .75rem;
  margin: 12px 0
}

.testimonial-card blockquote {
  font-size: .8125rem;
  line-height: 1.8;
  margin: 0 auto 1rem;
  max-width: 360px;
  color: #61645e
}

.testimonial-product {
  font-size: .65rem;
  border-bottom: 1px solid #dedfda;
  padding-bottom: 3px;
  color: var(--color-text-muted)
}

.reviews-awaiting {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #f8f8f5;
  border-radius: var(--radius);
  max-width: 680px;
  margin: 1rem auto 0
}

.reviews-awaiting>span {
  font-size: 2rem
}

.reviews-awaiting>p {
  margin: 10px 0
}

.reviews-awaiting .muted {
  font-size: .8125rem;
  max-width: 410px;
  margin: auto
}

.reel-dialog {
  padding: 18px;
  border: 0;
  border-radius: 10px;
  width: 420px;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  background: #fff;
  color: #1b1d1b;
  overflow-y: auto
}

.reel-dialog::backdrop {
  background: #0009;
  backdrop-filter: blur(3px)
}

.reel-dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px
}

.reel-dialog-heading h2 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.4
}

.reel-player {
  width: 100%;
  height: min(580px, 64dvh);
  min-height: 250px;
  background: #f5f5f2;
  border-radius: 6px;
  overflow: hidden
}

.reel-player iframe,
.reel-player video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain
}

.reel-dialog>.button {
  width: 100%;
  margin-top: 14px;
  font-size: .75rem;
  white-space: normal
}

.reel-original {
  font-size: .7rem;
  display: block;
  text-align: center;
  text-decoration: underline;
  padding: 12px 0 2px
}

.watch-page {
  text-align: center;
  max-width: 620px
}

.watch-page h1 {
  font-size: 2.5rem;
  margin: 1rem 0 2rem
}

.standalone-player {
  max-width: 420px;
  margin: 0 auto 1.5rem;
  height: 620px
}

.watch-poster {
  max-height: 580px;
  width: auto;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius)
}

.order-review-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem
}

.order-review-page .stack-form {
  margin-top: 2rem
}

.product-image,
.gallery-main,
.gallery-thumbnails button,
.summary-product img,
.cart-line img,
.account-card {
  border-radius: var(--radius);
  overflow: hidden
}

.review-card {
  border-radius: var(--radius)
}

@media(max-width:1100px) {
  .editorial-rail {
    grid-auto-columns: calc((100% - 3 * 16px)/4);
    gap: 16px
  }

  .category-browse {
    gap: 14px
  }

  .category-card>div {
    padding: 3rem 14px 14px
  }

  .category-card h3 {
    font-size: .7rem
  }
}

@media(max-width:700px) {
  .home-hero {
    height: 72svh;
    min-height: 460px;
    max-height: 680px
  }

  .home-hero .hero-image {
    object-position: 68% 50%
  }

  .home-hero-cta {
    bottom: 7%
  }

  .home-hero-cta .eyebrow {
    font-size: .6rem
  }

  .is-home .collection-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }

  .category-section {
    padding-top: 1rem;
    padding-bottom: 2.5rem
  }

  .category-browse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
  }

  .category-card>div {
    padding: 3rem 12px 14px
  }

  .category-card h3 {
    font-size: .7rem;
    max-width: 110px;
    line-height: 1.5
  }

  .category-section .section-heading {
    gap: 1rem
  }

  .category-section h2 {
    max-width: 220px
  }

  .category-section .text-link {
    white-space: nowrap;
    font-size: .75rem
  }

  .editorial-rail {
    grid-auto-columns: calc((100% - 14px)/2);
    gap: 14px
  }

  .watch-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  .reel-provider,
  .reel-pending {
    font-size: .55rem;
    bottom: 8px;
    left: 8px;
    padding: 5px 7px
  }

  .reel-product {
    font-size: .6rem
  }

  .testimonials-section {
    padding-top: 2rem;
    padding-bottom: 3.5rem
  }

  .testimonials-rail {
    grid-auto-columns: 86%;
    gap: 16px
  }

  .testimonial-card {
    padding: 1rem
  }

  .centered-heading h2 {
    font-size: 1.3rem
  }

  .centered-heading .muted {
    font-size: .75rem
  }

  .review-grid {
    gap: 1.5rem
  }
}

.reference-footer {
  background: #1c1e1a;
  color: #f7f7f2;
  padding-top: 4rem
}

.reference-footer .footer-top {
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem
}

.reference-footer .logo-crop img {
  filter: invert(1)
}

.reference-footer h3 {
  font-size: .65rem;
  letter-spacing: .12em
}

.reference-footer .footer-top>div:not(:first-child) a {
  font-size: .7rem;
  color: #bbbfb5;
  margin-bottom: .75rem
}

.reference-footer p {
  font-size: .7rem;
  color: #bbbfb5;
  line-height: 1.8;
  margin-top: 1.25rem
}

.reference-footer .social-link {
  font-size: .65rem;
  color: #bbbfb5
}

.reference-footer .newsletter p {
  margin: 0 0 1.2rem
}

.reference-footer .newsletter-input {
  border-color: #66695f
}

.reference-footer input {
  color: white;
  font-size: .7rem
}

.reference-footer input::placeholder {
  color: #a8aea0
}

.reference-footer .newsletter .check-label {
  font-size: .6rem;
  color: #a8aea0
}

.reference-footer .footer-bottom {
  border-color: #383c32;
  color: #a8aea0;
  font-size: .65rem
}

@media(max-width:1100px) {
  .reference-footer .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem
  }

  .reference-footer .newsletter {
    grid-column: 2/4
  }

  .reference-footer .newsletter form {
    max-width: 100%
  }
}

@media(max-width:700px) {
  .reference-footer {
    padding-top: 3rem
  }

  .reference-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem
  }

  .reference-footer .footer-brand {
    grid-column: 1/-1
  }

  .reference-footer .newsletter {
    grid-column: 1/-1
  }

  .reference-footer .footer-top h3 {
    margin-bottom: 1.2rem
  }

  .reference-footer .logo-crop {
    transform: none
  }
}

.category-card img {
  object-position: center 20%
}

.reference-footer .footer-top>.newsletter {
  display: block
}
