@font-face {
  font-family: "Home Gotham XLight";
  src:
    url("../fonts/Gotham-XLight.woff2") format("woff2"),
    url("../fonts/Gotham-XLight.woff") format("woff"),
    url("../fonts/Gotham-XLight.ttf") format("truetype"),
    url("../fonts/Gotham-XLight.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: "Home Gotham Light";
  src:
    url("../fonts/Gotham-Light.woff2") format("woff2"),
    url("../fonts/Gotham-Light.woff") format("woff"),
    url("../fonts/Gotham-Light.ttf") format("truetype"),
    url("../fonts/Gotham-Light.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Home Gotham Book";
  src:
    url("../fonts/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham-Book.woff") format("woff"),
    url("../fonts/Gotham-Book.ttf") format("truetype"),
    url("../fonts/Gotham-Book.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Home Didot";
  src:
    url("../fonts/Didot HTF M64 Medium Italic.woff2") format("woff2"),
    url("../fonts/Didot HTF M64 Medium Italic.woff") format("woff"),
    url("../fonts/Didot HTF M64 Medium Italic.ttf") format("truetype"),
    url("../fonts/Didot HTF M64 Medium Italic.otf") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  --home-line: #4e402a;
  --home-black: #000;
  --home-slideshow-bg: #0f0f0f;
  --home-title-area-height: 116px;
  --home-content-max: 1246px;
  --home-content-gap: 54px;
  --home-banner-spacing: 108px;
}

.home-content {
  width: 100%;
  margin: 0;
  padding-bottom: 160px;
}

.home-title-block {
  display: grid;
  grid-template-rows: var(--home-title-area-height) minmax(0, 1fr) var(--home-title-area-height);
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  background: var(--site-bg);
}

.home-title-block__top {
  border-bottom: 1px solid var(--home-line);
}

.home-slideshow-area {
  position: relative;
  overflow: hidden;
  background: var(--home-slideshow-bg);
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.home-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.home-slide__media {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.home-slide[option="1"] .home-slide__media,
.home-slide__media[option="1"] {
  object-fit: cover;
}

.home-title-block__bottom {
  position: relative;
  border-top: 1px solid var(--home-line);
}

.home-title-block__bottom-content {
  width: min(var(--home-content-max), calc(100vw - (var(--home-content-gap) * 2)));
  height: 100%;
  margin: 0 auto;
}

.home-slide-title {
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.home-slide-title.is-empty {
  opacity: 0;
  pointer-events: none;
}

.home-slide-title .home-slide-title__link,
.home-slide-title .home-slide-title__text {
  position: relative;
  display: grid !important;
  align-content: center;
  gap: 0;
  grid-auto-flow: row;
  height: 48px;
  min-height: 48px;
  padding-left: 12px;
  color: #fff;
  text-decoration: none;
}

.home-slide-title .home-slide-title__link::before,
.home-slide-title .home-slide-title__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--home-line);
  content: "";
  transform: translateY(-50%);
}

.home-slide-title .home-slide-title__link::after {
  display: none;
}

.home-slide-title__first {
  display: block !important;
  margin: 0;
  color: #fff;
  font-family: "Home Gotham XLight", var(--site-font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 200;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-slide-title__second {
  display: block !important;
  margin: 0;
  color: #a4a4a4;
  font-family: "Home Gotham Light", var(--site-font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-slide-title__first + .home-slide-title__second {
  margin-top: 7px;
}

.home-slide-title.has-one-line .home-slide-title__second,
.home-slide-title.has-one-line .home-slide-title__first {
  margin-top: 0;
}

.home-scroll-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 69px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
}

.home-scroll-arrow img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

.home-scroll-arrow:focus-visible {
  outline: 1px solid var(--site-gold);
  outline-offset: 6px;
}

.home-banner {
  width: 100%;
  background: var(--home-black);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-banner.is-empty,
.home-banner[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  border: 0;
}

.home-banner__inner {
  display: flex;
  justify-content: center;
  width: min(var(--home-content-max), calc(100vw - (var(--home-content-gap) * 2)));
  margin: 0 auto;
  padding: var(--home-banner-spacing) 0;
}

.home-banner__inner:empty {
  padding-top: 0;
  padding-bottom: 0;
}

.home-banner__inner img,
.home-banner__inner svg {
  width: auto;
  max-width: 100%;
  height: auto;
}

.home-cast {
  width: min(var(--content-max), calc(max(100vw, var(--page-min)) - (var(--content-side-gap) * 2)));
  margin: 0 auto;
}

.home-cast--about {
  width: min(var(--about-content-max), calc(max(100vw, var(--page-min)) - (var(--about-content-side-gap) * 2)));
}

.home-content .site-page-title-row {
  min-height: var(--site-desktop-title-line-height);
  overflow: visible;
}

.home-content .site-page-title-block.has-title-graphic .site-page-title__graphic--desktop {
  flex: 0 0 auto;
  width: auto;
  max-width: calc(100% - 80px);
  height: 68px;
  object-fit: contain;
  object-position: left bottom;
}

.home-content .collections-thumbnail__name {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Home Gotham XLight", var(--site-font-body);
  font-size: 20px;
  font-weight: 200;
  transform: translateY(2px);
}

.home-content .collections-thumbnail__image {
  transition-duration: 0.3s, 5.4s;
  transition-delay: 0s, 1s;
}

.home-content .collections-thumbnail:hover .collections-thumbnail__image,
.home-content .collections-thumbnail:focus-within .collections-thumbnail__image {
  transform: scale(1.025);
  transition-duration: 0.3s, 1.8s;
  transition-delay: 0s, 0s;
}

.home-cast--connect .connect-title-block {
  margin-bottom: 89px;
}

@media (prefers-reduced-motion: reduce) {
  .home-slide,
  .home-slide-title {
    transition: none;
  }

  .home-content .collections-thumbnail__image {
    transition: none;
  }
}
