/* Generated bundle. Edit source files, then regenerate this file. */

/* Source: assets/css/site_global.css */
/*
  Shared site styles for David Drebin desktop and mobile pages.
  Keep page-specific layout in each page stylesheet.
*/

@font-face {
  font-family: "Gallery Gotham";
  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: "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: "Gallery Gotham";
  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: "Gallery 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 {
  --site-bg: #151515;
  --site-video-bg: #000;
  --site-text: #fff;
  --site-muted: #939393;
  --site-contact-muted: #919191;
  --site-clickable-text: #c2c2c2;
  --site-line-muted: #4d4d4d;
  --site-gold: #c9a875;

  --site-font-body: "Gallery Gotham", "Helvetica Neue", Arial, sans-serif;
  --site-font-title: "Gallery Didot", Didot, "Times New Roman", serif;

  --site-logo-width: 142px;
  --site-logo-height: 30px;
  --site-menu-size: 31px;
  --page-min: 1024px;
  --site-desktop-edge-gap: 54px;
  --site-desktop-top-gap: 26px;
  --site-mobile-page-max-width: 800px;
  --site-mobile-side-gap: max(30px, env(safe-area-inset-left, 0px));
  --site-mobile-side-gap-right: max(30px, env(safe-area-inset-right, 0px));
  --site-mobile-menu-right-gap: 38px;
  --site-mobile-menu-fixed-right-gap: max(
    var(--site-mobile-menu-right-gap),
    calc((100vw - var(--site-mobile-page-max-width)) / 2 + var(--site-mobile-menu-right-gap))
  );
  --site-mobile-safe-top: env(safe-area-inset-top, 0px);

  --site-desktop-title-size: 87px;
  --site-desktop-title-line-height: 70px;
  --site-mobile-title-size: 60px;
  --site-mobile-title-line-height: 48px;

  --site-menu-transition: 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  --site-bottom-menu-height: 60px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: var(--page-min);
  min-height: 100%;
  margin: 0;
  background: var(--site-bg);
  overflow-anchor: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  color: var(--site-text);
  font-family: var(--site-font-body);
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-logo {
  z-index: 2;
  display: block;
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  cursor: pointer;
}

.site-logo img {
  width: 100%;
  height: 100%;
}

.site-logo--desktop-primary {
  position: absolute;
  top: var(--site-desktop-top-gap);
  left: var(--site-desktop-edge-gap);
}

.site-logo--desktop-fixed {
  position: absolute;
  top: 26px;
  left: var(--site-desktop-edge-gap);
}

.site-logo--mobile-primary {
  position: absolute;
  top: calc(var(--site-mobile-safe-top) + 38px);
  left: 50%;
  transform: translateX(-50%);
}

.site-menu-button {
  position: absolute;
  z-index: 2;
  width: var(--site-menu-size);
  height: var(--site-menu-size);
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--site-text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-menu-button--desktop-primary {
  top: var(--site-desktop-top-gap);
  right: var(--site-desktop-edge-gap);
}

.site-menu-button--desktop-fixed {
  top: 28px;
  right: var(--site-desktop-edge-gap);
}

.site-menu-button--mobile-primary {
  top: calc(var(--site-mobile-safe-top) + 37px);
  right: var(--site-mobile-menu-right-gap);
}

.site-menu-button--mobile-bottom {
  top: auto;
  right: var(--site-mobile-menu-fixed-right-gap);
  bottom: calc(15px + env(safe-area-inset-bottom, 0px));
}

.site-menu-icon {
  display: block;
  width: var(--site-menu-size);
  height: var(--site-menu-size);
  overflow: hidden;
}

.site-menu-icon__line {
  stroke: currentColor;
  stroke-linecap: butt;
  stroke-width: 0.996218px;
}

.site-logo:focus-visible,
.site-menu-button:focus-visible {
  outline: 1px solid var(--site-gold);
  outline-offset: 8px;
}

.site-scroll-menu {
  pointer-events: none;
}

.site-scroll-menu.is-visible {
  pointer-events: auto;
}

.site-scroll-menu--desktop-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: var(--page-min, 1024px);
  height: 83px;
  background: var(--site-bg);
  transform: translateY(-100%);
  transition: transform var(--site-menu-transition);
}

.site-scroll-menu--desktop-top.is-visible {
  transform: translateY(0);
}

.site-scroll-menu--desktop-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--site-line-muted);
}

.site-scroll-menu--mobile-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  height: calc(var(--site-bottom-menu-height) + env(safe-area-inset-bottom, 0px));
  background: var(--site-bg);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.site-scroll-menu--mobile-bottom.is-visible {
  opacity: 1;
}

.site-scroll-menu--mobile-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--site-line-muted);
}

.site-mobile-topbar {
  position: relative;
  min-height: calc(var(--site-mobile-safe-top) + 137px + 67px + 1px);
  padding: 0 var(--site-mobile-side-gap-right) 67px var(--site-mobile-side-gap);
}

.site-mobile-topbar__line {
  position: absolute;
  top: calc(var(--site-mobile-safe-top) + 137px);
  right: var(--site-mobile-side-gap-right);
  left: var(--site-mobile-side-gap);
  height: 1px;
  background: var(--site-gold);
}

.site-page-title-block {
  color: var(--site-gold);
}

.site-page-title-row {
  position: relative;
  display: block;
  width: 100%;
  min-height: var(--site-desktop-title-line-height);
  overflow: visible;
}

.site-page-title {
  display: inline;
  margin: 0;
  color: var(--site-gold);
  font-family: var(--site-font-title);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.site-page-title--desktop {
  font-size: var(--site-desktop-title-size);
  line-height: var(--site-desktop-title-line-height);
}

.site-page-title--mobile {
  font-size: var(--site-mobile-title-size);
  line-height: var(--site-mobile-title-line-height);
}

.site-page-title-block.has-title-graphic .site-page-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-page-title-block.has-title-graphic .site-page-title-row {
  display: flex;
  align-items: flex-end;
}

.site-page-title__graphic {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0;
  transition: opacity var(--page-load-fade-duration, 0.6s) ease-out;
}

.site-page-title__graphic.is-title-graphic-ready {
  opacity: 1;
}

.site-page-title__graphic[hidden] {
  display: none;
}

.site-page-title-block.has-title-graphic .site-page-title__graphic--desktop {
  flex: 0 0 auto;
  width: var(--site-title-graphic-width, auto);
  max-width: 100%;
  height: auto;
}

.site-page-title-block.has-title-graphic .site-page-title__graphic--mobile {
  width: var(--site-title-graphic-width, auto);
  max-width: 100%;
  height: auto;
  max-height: none;
}

.site-page-title-line {
  position: absolute;
  top: var(--site-page-title-line-top, calc(var(--site-desktop-title-line-height) - 34px));
  right: 0;
  left: var(--site-page-title-line-left, 0);
  height: 1px;
  background: var(--site-gold);
}

.site-page-title-block.has-title-graphic .site-page-title-line {
  position: static;
  flex: 1 1 auto;
  transform: translateY(-2px);
}

.site-page-title-block:not(.has-title-graphic) .site-page-title-line {
  transform: none;
}

.site-optional-paragraph,
[data-page-title] [description="paragraph"] {
  max-width: 560px;
  margin: 34px 0 0;
  color: #a4a4a4;
  font-family: "Gotham-Light", var(--site-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.site-optional-paragraph[hidden],
[data-page-title] [description="paragraph"][hidden] {
  display: none;
}

.site-optional-paragraph p,
[data-page-title] [description="paragraph"] p {
  margin: 0 0 20px;
}

.site-optional-paragraph p:last-child,
[data-page-title] [description="paragraph"] p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-page-title__graphic {
    opacity: 1;
    transition: none;
  }
}

.site-video-panel,
.site-smart-video {
  background: var(--site-video-bg);
}

.site-link,
.animated-link,
.clickable-link-animation,
a[href^="http"]:not(.site-logo):not(.site-link--no-underline),
a[href^="//"]:not(.site-link--no-underline),
a[href^="mailto:"]:not(.site-link--no-underline),
a[href^="tel:"]:not(.site-link--no-underline) {
  position: relative;
  display: inline-block;
  color: var(--site-clickable-text);
  text-decoration: none;
}

.site-link::after,
.animated-link::after,
.clickable-link-animation::after,
a[href^="http"]:not(.site-logo):not(.site-link--no-underline)::after,
a[href^="//"]:not(.site-link--no-underline)::after,
a[href^="mailto:"]:not(.site-link--no-underline)::after,
a[href^="tel:"]:not(.site-link--no-underline)::after {
  position: absolute;
  top: calc(100% + var(--site-link-underline-gap, -2px));
  left: 0;
  width: 100%;
  height: var(--site-link-underline-height, 1px);
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--site-link-underline-duration, 0.5s) var(--site-link-underline-timing, ease);
}

.site-link:hover::after,
.site-link:focus-visible::after,
.animated-link:hover::after,
.animated-link:focus-visible::after,
.clickable-link-animation:hover::after,
.clickable-link-animation:focus-visible::after,
a[href^="http"]:not(.site-logo):not(.site-link--no-underline):hover::after,
a[href^="http"]:not(.site-logo):not(.site-link--no-underline):focus-visible::after,
a[href^="//"]:not(.site-link--no-underline):hover::after,
a[href^="//"]:not(.site-link--no-underline):focus-visible::after,
a[href^="mailto:"]:not(.site-link--no-underline):hover::after,
a[href^="mailto:"]:not(.site-link--no-underline):focus-visible::after,
a[href^="tel:"]:not(.site-link--no-underline):hover::after,
a[href^="tel:"]:not(.site-link--no-underline):focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 279px) {
  .site-logo--mobile-primary {
    width: calc(100vw - 120px);
    min-width: 120px;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-scroll-menu,
  .site-link::after,
  .animated-link::after,
  .clickable-link-animation::after,
  a[href^="http"]:not(.site-logo):not(.site-link--no-underline)::after,
  a[href^="//"]:not(.site-link--no-underline)::after,
  a[href^="mailto:"]:not(.site-link--no-underline)::after,
  a[href^="tel:"]:not(.site-link--no-underline)::after {
    transition: none;
  }
}

/* Source: assets/css/loading_order.css */
/*
  Shared page loading animation.
  Keep loading order updates in this file and loading_order.js only.
*/

:root {
  --page-load-fade-duration: 0.6s;
  --page-load-step: 25ms;
}

[data-fade],
[data-load-fade] {
  opacity: 0;
}

[data-load-fade] {
  transition: opacity var(--page-load-fade-duration) ease-out;
  transition-delay: var(--page-load-delay, 0ms);
}

[data-load-fade].is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-load-fade] {
    opacity: 1;
    transition: none;
  }
}

/* Source: assets/css/menu_overlay.css */
/*
  Global menu overlay.
  Keep overlay layout, menu typography, and CMS-driven menu states isolated here.
*/

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

:root {
  --menu-overlay-bg: #151515;
  --menu-overlay-text: #cbcbcb;
  --menu-overlay-icon: #fff;
  --menu-overlay-hover: #c9a875;
  --menu-overlay-z: 10000;
  --menu-overlay-button-z: 10020;
  --menu-overlay-fade-duration: 0.3s;
  --menu-overlay-desktop-top-gap: 127px;
  --menu-overlay-desktop-bottom-gap: 138px;
  --menu-overlay-mobile-top-gap: 130px;
  --menu-overlay-mobile-bottom-gap: 100px;
}

.menu-overlay {
  position: fixed;
  z-index: var(--menu-overlay-z);
  inset: 0;
  display: block;
  min-width: var(--page-min, 0);
  background: var(--menu-overlay-bg);
  color: var(--menu-overlay-text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--menu-overlay-fade-duration) ease-out,
    visibility 0s linear var(--menu-overlay-fade-duration);
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--menu-overlay-fade-duration) ease-out,
    visibility 0s;
}

.menu-overlay__scroller {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.menu-overlay.is-scrollable .menu-overlay__scroller {
  overflow-y: auto;
}

.menu-overlay__logo {
  position: fixed;
  z-index: calc(var(--menu-overlay-button-z) - 1);
  top: 54px;
  left: 50%;
  display: block;
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  transform: translateX(-50%);
}

.menu-overlay__logo img {
  width: 100%;
  height: 100%;
}

.menu-overlay__content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  padding: var(--menu-overlay-desktop-top-gap) 54px var(--menu-overlay-desktop-bottom-gap);
}

body[data-menu-overlay-version="desktop"] .menu-overlay__scroller {
  position: relative;
}

/* Keep the desktop center independent of the scroller's scrollbar gutter. */
body[data-menu-overlay-version="desktop"] .menu-overlay__content {
  width: 100vw;
}

body[data-menu-overlay-version="desktop"] .menu-overlay.is-scrollable .menu-overlay__logo {
  position: absolute;
  left: 50vw;
}

.menu-overlay__nav {
  width: 100%;
  max-width: 1400px;
  margin: auto 0;
  font-family: "Menu Gotham XLight", var(--site-font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.menu-overlay__group + .menu-overlay__group {
  margin-top: 33px;
}

.menu-overlay__row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.menu-overlay__row--grouped {
  column-gap: 0;
}

.menu-overlay__link {
  display: inline-block;
  padding: 0;
  border: 0;
  color: var(--menu-overlay-text);
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.menu-overlay__logo::before,
.menu-overlay__logo::after,
.menu-overlay__link::before,
.menu-overlay__link::after,
.menu-overlay__social-link::before,
.menu-overlay__social-link::after {
  display: none !important;
  content: none !important;
}

.menu-overlay__link:hover,
.menu-overlay__link:focus-visible {
  color: var(--menu-overlay-hover);
}

.menu-overlay__link:focus-visible,
.menu-overlay__social-link:focus-visible {
  outline: 1px solid var(--menu-overlay-hover);
  outline-offset: 8px;
}

.menu-overlay__separator {
  flex: 0 0 auto;
  display: block;
  width: 17px;
  height: 16px;
  margin: 0 10px;
  max-width: none;
  object-fit: contain;
}

.menu-overlay__social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.menu-overlay__social-link {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  color: var(--menu-overlay-icon);
  text-decoration: none;
}

.menu-overlay__social-icon {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-out;
}

.menu-overlay .menu-overlay__social-icon.menu-overlay__social-icon--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.menu-overlay__social-link.has-hover-icon:hover .menu-overlay__social-icon--default,
.menu-overlay__social-link.has-hover-icon:focus-visible .menu-overlay__social-icon--default {
  opacity: 0;
}

.menu-overlay__social-link.has-hover-icon:hover .menu-overlay__social-icon--hover,
.menu-overlay__social-link.has-hover-icon:focus-visible .menu-overlay__social-icon--hover {
  opacity: 1;
}

.site-menu-button.is-menu-overlay-active {
  position: fixed !important;
  z-index: var(--menu-overlay-button-z) !important;
  color: var(--menu-overlay-icon);
}

.site-menu-button.is-menu-overlay-active.site-menu-button--desktop-primary {
  top: var(--site-desktop-top-gap) !important;
  right: var(--site-desktop-edge-gap) !important;
  bottom: auto !important;
  left: auto !important;
}

.site-menu-button.is-menu-overlay-active.site-menu-button--desktop-fixed {
  top: 28px !important;
  right: var(--site-desktop-edge-gap) !important;
  bottom: auto !important;
  left: auto !important;
}

.site-menu-button.is-menu-overlay-active.site-menu-button--mobile-primary {
  top: calc(var(--site-mobile-safe-top) + 37px) !important;
  right: var(--site-mobile-menu-fixed-right-gap) !important;
  bottom: auto !important;
  left: auto !important;
}

.site-menu-button.is-menu-overlay-active.site-menu-button--mobile-bottom {
  top: calc(var(--site-mobile-safe-top) + 37px) !important;
  right: var(--site-mobile-menu-fixed-right-gap) !important;
  bottom: auto !important;
  left: auto !important;
}

body.is-menu-overlay-locked {
  overflow: hidden;
}

html.is-menu-overlay-locked {
  overflow: hidden;
}

body[data-menu-overlay-version="mobile"] .menu-overlay {
  min-width: 0;
  min-height: 100vh;
  min-height: 100lvh;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

html.is-menu-overlay-mobile-locked,
body[data-menu-overlay-version="mobile"].is-menu-overlay-locked {
  overscroll-behavior: none;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__scroller {
  position: relative;
  max-height: var(--menu-overlay-viewport-height, 100vh);
  background: var(--menu-overlay-bg);
  overscroll-behavior: none;
  touch-action: pan-y pinch-zoom;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__logo {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 38px);
  left: 50vw;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__content {
  padding: var(--menu-overlay-mobile-top-gap) 30px var(--menu-overlay-mobile-bottom-gap);
}

body[data-menu-overlay-version="mobile"] .menu-overlay__nav {
  line-height: 50px;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__group + .menu-overlay__group {
  margin-top: 42px;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__separator {
  margin: 0 13px;
}

body[data-menu-overlay-version="mobile"] .menu-overlay__social-row {
  gap: 70px;
}

@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-overlay__link,
  .menu-overlay__social-icon {
    transition: none;
  }
}

/* Source: assets/css/input_fields.css */
/*
  Global input fields.
  Field group instructions live in assets/js/input_fields_controller.js.
*/

@font-face {
  font-family: "Input 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: "Input Gotham Bold";
  src:
    url("../fonts/gotham_bold.woff2") format("woff2"),
    url("../fonts/gotham_bold.woff") format("woff"),
    url("../fonts/gotham_bold.ttf") format("truetype"),
    url("../fonts/gotham_bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

.input-fields-group {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--input-fields-max-width, 600px);
}

.input-fields-form {
  width: 100%;
  max-width: var(--input-fields-content-max-width, 100%);
  margin: 0;
}

.input-fields-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.input-fields-intro {
  width: 100%;
  margin-bottom: var(--input-fields-intro-bottom, 35px);
}

.input-fields-intro-line {
  width: 100%;
  max-width: var(--input-fields-intro-line-width, 500px);
  height: 1px;
  background: var(--input-fields-intro-line-color, #4d4d4d);
}

.input-fields-intro-text {
  margin-top: var(--input-fields-intro-text-top, 20px);
  color: var(--site-text);
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.input-fields-title {
  width: 100%;
  margin-bottom: var(--input-fields-title-bottom, 27px);
}

.input-fields-title-text {
  color: var(--site-text);
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.input-fields-title-line {
  width: 100%;
  height: 1px;
  margin-top: var(--input-fields-title-line-top, 11px);
  background: var(--input-fields-title-line-color, #707070);
}

.input-fields-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: var(--input-fields-locations-top, 38px);
}

.input-fields-location-cell {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 106px;
  height: 19px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.input-fields-location-control {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.input-fields-location-marker {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  background-image: url("../images/checkbox_default.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
}

.input-fields-location-control:checked + .input-fields-location-marker {
  background-image: url("../images/checkbox_selected.svg");
}

.input-fields-location-name {
  display: block;
  margin: 3px 0 0 8px;
  color: #9e9e9e;
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.input-fields-location-control:focus-visible + .input-fields-location-marker {
  outline: 1px solid var(--site-gold);
  outline-offset: 3px;
}

.input-field {
  --input-field-height: 33px;
  width: 100%;
}

.input-field__body {
  position: relative;
  box-sizing: border-box;
  min-height: var(--input-field-height);
  border-bottom: 1px solid var(--site-gold);
}

.input-field__label {
  color: #9e9e9e;
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.input-field__label {
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  transition: opacity 0.16s ease-out;
}

.input-field__body:focus-within .input-field__label,
.input-field.has-value .input-field__label {
  opacity: 0;
}

.input-field.is-invalid .input-field__label {
  color: var(--site-gold);
  opacity: 1;
}

.input-field.is-invalid .input-field__control {
  color: transparent;
  caret-color: var(--site-text);
}

.input-field__control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: var(--input-field-height);
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--site-text);
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  resize: none;
}

.input-field__control:-webkit-autofill,
.input-field__control:-webkit-autofill:hover,
.input-field__control:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--site-text);
  box-shadow: 0 0 0 1000px var(--site-bg) inset;
}

.input-fields-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 27px;
}

.input-fields-actions--left {
  justify-content: flex-start;
}

.input-fields-actions--right {
  justify-content: flex-end;
}

.input-fields-actions--split {
  justify-content: space-between;
}

.input-fields-button {
  position: relative;
  display: inline-block;
  min-height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--site-text);
  font-family: "Input Gotham Bold", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease-out;
  -webkit-tap-highlight-color: transparent;
}

.input-fields-button:hover,
.input-fields-button:focus-visible {
  color: var(--site-gold);
}

.input-fields-button__label,
.input-fields-button__success {
  transition: opacity 0.3s ease;
}

.input-fields-button__success {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  color: #C9A875;
  font-family: "Gallery Gotham", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
}

.input-fields-button__success[data-align="center"] {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.input-fields-button__success[data-align="right"] {
  right: 0;
  left: auto;
  text-align: right;
  white-space: normal;
}

.input-fields-button.is-showing-success .input-fields-button__label {
  opacity: 0;
}

.input-fields-button.is-showing-success .input-fields-button__success {
  opacity: 1;
}

.input-fields-button--muted {
  color: #575757;
}

.input-fields-button--muted:hover,
.input-fields-button--muted:focus-visible {
  color: #ffffff;
}

.input-fields-button:focus-visible {
  outline: 1px solid var(--site-gold);
  outline-offset: 6px;
}

.input-fields-button-separator {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 10px;
}

.input-fields-status {
  display: block;
  min-height: 14px;
  margin-top: 14px;
  color: #9e9e9e;
  font-family: "Input Gotham Light", var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.input-fields-status:empty {
  display: none;
}

.input-fields-actions--right + .input-fields-status {
  text-align: right;
}

.input-fields-actions--split + .input-fields-status,
.input-fields-group--signup-popup .input-fields-status {
  text-align: center;
}

.input-fields-status--error {
  color: var(--site-gold);
}

.input-fields-status--success {
  color: var(--site-text);
}

.site-signup-popup {
  position: fixed;
  right: max(30px, env(safe-area-inset-right, 0px));
  bottom: max(30px, env(safe-area-inset-bottom, 0px));
  z-index: 40;
  width: 326px;
  max-width: calc(100vw - 60px);
}

.site-signup-popup[hidden] {
  display: none;
}

.input-fields-group--signup-popup {
  padding: 39px 40px 41px;
  outline: 1px solid #ffffff;
  background: #151515;
  opacity: 1;
  transition: opacity 0.22s ease-out;
}

.input-fields-group--signup-popup .input-fields-form {
  margin-right: auto;
  margin-left: auto;
}

.input-fields-group--signup-popup .input-fields-title-text {
  font-size: 9px;
  line-height: 10px;
}

.input-fields-group--signup-popup .input-fields-stack {
  overflow: hidden;
  max-height: 90px;
  opacity: 1;
  transition:
    max-height 0.24s ease-out,
    opacity 0.2s ease-out;
}

.input-fields-group--signup-popup[data-signup-popup-state="signup"] .input-fields-stack {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.input-fields-group--signup-popup[data-signup-popup-state="signup"] .input-fields-title {
  margin-bottom: 0;
}

.input-fields-group--signup-popup .input-fields-actions {
  gap: 0;
  margin-top: 20px;
}

.input-fields-group--signup-popup .input-fields-button {
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
}

.input-fields-group--signup-popup .input-fields-button-separator {
  flex: 0 0 29px;
  width: 29px;
}

.input-fields-group--signup-popup.is-closing {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .input-fields-button__label,
  .input-fields-button__success,
  .input-field__label,
  .input-fields-button,
  .input-fields-group--signup-popup,
  .input-fields-group--signup-popup .input-fields-stack {
    transition: none;
  }
}

/* Source: assets/css/collections.css */
/*
  Desktop collections page layout.
  Shared chrome, page title, link, and fade styles live in site_global.css.
*/

:root {
  --content-max: 1250px;
  --content-side-gap: 61px;
}

html,
body {
  min-width: var(--page-min);
}

body {
  overflow-x: auto;
}

.collections-content {
  width: min(var(--content-max), calc(max(100vw, var(--page-min)) - (var(--content-side-gap) * 2)));
  margin: 0 auto;
  padding-bottom: 160px;
}

.collections-hero {
  padding-top: 145px;
}

/* Source: assets/css/collections_grid.css */
/*
  Desktop Collections thumbnail grid.
  This grid is independent from gallery and future page grids.
*/

:root {
  --collections-cell-width: 382px;
  --collections-image-ratio: 382 / 306;
  --collections-column-gap: 50px;
  --collections-row-gap: 80px;
  --collections-grid-top-gap: 89px;
  --collections-name-top-gap: 24px;
  --collections-line-top-gap: 22px;
  --collections-motion-duration: 0.3s;
}

.collections-grid {
  --collections-column-count: 1;
  position: relative;
  contain: layout;
  display: grid;
  grid-template-columns: repeat(var(--collections-column-count), var(--collections-cell-width));
  column-gap: var(--collections-column-gap);
  row-gap: var(--collections-row-gap);
  justify-content: center;
  margin-top: var(--collections-grid-top-gap);
}

.collections-thumbnail {
  position: relative;
  display: block;
  width: var(--collections-cell-width);
  min-width: 0;
  margin: 0;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.collections-thumbnail:focus-visible {
  outline: 1px solid #c9a875;
  outline-offset: 8px;
}

.collections-thumbnail__media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--collections-image-ratio);
  overflow: hidden;
  background: #1c1c1c;
}

.collections-thumbnail__media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(77, 77, 77, 0.7);
  content: "";
  pointer-events: none;
}

.collections-thumbnail__media > img,
.collections-thumbnail__media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  will-change: transform;
  transition:
    opacity var(--collections-motion-duration) ease-out,
    transform var(--collections-motion-duration) cubic-bezier(0.2, 0, 0.2, 1);
}

.collections-thumbnail__media > .is-active.is-grid-media-ready {
  opacity: 1;
}

.collections-thumbnail:hover .collections-thumbnail__media > img,
.collections-thumbnail:hover .collections-thumbnail__media > video,
.collections-thumbnail:focus-within .collections-thumbnail__media > img,
.collections-thumbnail:focus-within .collections-thumbnail__media > video {
  transform: scale(1.04);
}

.collections-thumbnail__name {
  height: 20px;
  margin: var(--collections-name-top-gap) 0 0;
  overflow: hidden;
  color: #fff;
  font-family: var(--site-font-body);
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  transition: color var(--collections-motion-duration) ease-out;
}

.collections-thumbnail:hover .collections-thumbnail__name,
.collections-thumbnail:focus-within .collections-thumbnail__name {
  color: #c9a875;
}

.collections-thumbnail__line {
  width: 100%;
  height: 1px;
  margin-top: var(--collections-line-top-gap);
  background: #4e402a;
}

.collections-thumbnail--placeholder .collections-thumbnail__name {
  visibility: hidden;
}

.collections-thumbnail--placeholder .collections-thumbnail__media {
  background: #151515;
}

.collections-thumbnail--placeholder .collections-thumbnail__media::after {
  display: none;
}

.collections-thumbnail--placeholder .collections-thumbnail__line {
  background: #151515;
}

/* 2*382 + 50 = 814px content width, plus the existing 122px side gutters. */
@media (min-width: 936px) {
  .collections-grid {
    --collections-column-count: 2;
  }
}

/* 3*382 + 2*50 = 1246px content width, plus the existing 122px side gutters. */
@media (min-width: 1368px) {
  .collections-grid {
    --collections-column-count: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-thumbnail__media > img,
  .collections-thumbnail__media > video,
  .collections-thumbnail__name {
    transition: none;
    will-change: auto;
  }
}

/* Source: assets/css/about.css */
/*
  Desktop ABOUT page layout and ABOUT-only content styles.
*/

@font-face {
  font-family: "About 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;
}

:root {
  --about-content-max: 1250px;
  --about-content-side-gap: 61px;
  --about-column-max: 390px;
  --about-column-gap: 46px;
  --about-body-top-gap: 89px;
  --about-slideshow-fade-duration: 0.6s;
}

html,
body {
  min-width: var(--page-min);
}

body {
  overflow-x: auto;
}

.about-content {
  width: min(var(--about-content-max), calc(max(100vw, var(--page-min)) - (var(--about-content-side-gap) * 2)));
  margin: 0 auto;
  padding-bottom: 160px;
}

.about-hero {
  padding-top: 145px;
}

.about-content-section {
  margin-top: var(--about-body-top-gap);
}

.about-content-section[hidden],
.about-content-column[hidden],
[data-about-text][hidden],
.about-slideshow__image[hidden] {
  display: none;
}

.about-content-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--about-column-gap);
  width: 100%;
}

.about-content-column {
  flex: 1 1 0;
  min-width: 0;
  max-width: var(--about-column-max);
}

.about-copy-desktop {
  color: #fff;
  font-family: "About Gotham Light", var(--site-font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.about-copy-desktop p {
  margin: 0 0 24px;
}

.about-copy-desktop p:last-child {
  margin-bottom: 0;
}

.about-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: var(--about-slideshow-ratio, 1170 / 1830);
  overflow: hidden;
  background: #151515;
  contain: layout paint;
}

.about-slideshow::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(68, 68, 68, 1);
  content: "";
  pointer-events: none;
}

.about-slideshow__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity var(--about-slideshow-fade-duration) ease-out;
}

.about-slideshow__image.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-slideshow__image {
    transition: none;
  }
}

/* Source: assets/css/connect.css */
/*
  Desktop CONNECT webpage name spacing.
  Base page-title layout is inherited from collections.css.
*/

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

.connect-content-section {
  width: 100%;
}

.connect-input-block {
  width: 100%;
}

.connect-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 384px), 384px));
  justify-content: start;
  column-gap: 42px;
  row-gap: 68px;
  margin-top: 100px;
  contain: layout;
}

.connect-info-cell {
  width: 384px;
  max-width: 100%;
  border-top: 1px solid var(--site-line-muted);
}

.connect-info-cell__title {
  margin: 27px 0 0;
  color: #b2b2b2;
  font-family: var(--site-font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.connect-info-cell__text {
  margin: 22px 0 0;
  color: var(--site-contact-muted);
  font-family: var(--site-font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
}

.connect-info-cell__text a {
  color: var(--site-clickable-text);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .connect-info-cell {
    transition: none;
  }
}

/* Source: assets/css/books.css */
/*
  Desktop books-only content. Shared chrome, title, and link behavior stay in
  site_global.css and collections.css.
*/

@font-face {
  font-family: "Books 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: 300;
}

@font-face {
  font-family: "Books 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: "Books Gotham Medium";
  src:
    url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.ttf") format("truetype"),
    url("../fonts/Gotham-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

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

:root {
  --books-slider-height: 400px;
  --books-image-ratio: 380 / 430;
  --books-middle-space: 40px;
  --books-nav-width: 80px;
  --books-fade-duration: 0.3s;
}

.books-slider-section {
  margin-top: 90px;
}

.books-slider {
  width: 100%;
}

.books-slider__viewport {
  position: relative;
  width: 100%;
  height: var(--books-slider-height);
  overflow: hidden;
}

.books-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--books-middle-space) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--books-fade-duration) ease-out;
}

.books-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.books-slide__media-cell,
.books-slide__info-cell {
  display: flex;
  min-width: 0;
  height: 100%;
}

.books-slide__media-cell {
  justify-content: flex-end;
  align-items: center;
}

.books-slide__middle-space {
  width: var(--books-middle-space);
  height: 100%;
}

.books-slide__image-wrap {
  position: relative;
  width: min(calc(var(--books-slider-height) * 380 / 430), 100%);
  height: auto;
  aspect-ratio: var(--books-image-ratio);
  margin: 0;
  overflow: hidden;
}

.books-slide__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.books-slide__image-wrap:has(img[option="1"])::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px #4d4d4d;
}

.books-slide__info-cell {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 354px;
}

.books-slide__info-line {
  width: 100%;
  height: 1px;
  margin: 0 0 33px;
  background: #4d4d4d;
}

.books-slide__title {
  margin: 0 0 30px;
  color: #fff;
  font-family: "Books Gotham XLight", var(--site-font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.books-slide__title:empty {
  margin-bottom: 0;
}

.books-slide__text {
  color: #b1b1b1;
  font-family: "Books Gotham Light", var(--site-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
}

.books-slide__text em {
  font: inherit;
  font-style: italic;
  color: inherit;
  text-transform: none;
}

.books-slide__text p {
  margin: 0 0 22px;
}

.books-slide__text p:last-child {
  margin-bottom: 0;
}

.books-emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-variant-emoji: emoji;
  text-transform: none;
}

.books-slide__link,
.books-slide__text a {
  color: var(--site-clickable-text);
  font-family: "Books Gotham Medium", var(--site-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: none;
}

.books-slider__nav {
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  width: var(--books-nav-width);
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
}

.books-slider__nav img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-width: none;
}

.books-slider__nav--prev {
  left: 0;
  justify-content: flex-start;
}

.books-slider__nav--next {
  right: 0;
  justify-content: flex-end;
}

.books-slider.is-single .books-slider__nav,
.books-slider.is-single .books-slider__pagination {
  display: none;
}

.books-slider__pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 120px;
}

.books-slider__pagination-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.books-slider__dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
}

.books-slider__dot::before {
  width: 10px;
  height: 10px;
  content: "";
  background: #4e402a;
  border-radius: 50%;
  transition: background-color 0.15s ease-out;
}

.books-slider__dot.is-active {
  cursor: default;
  pointer-events: none;
}

.books-slider__dot.is-active::before {
  background: #c9a875;
}

.books-slider__dot:focus-visible {
  outline: 1px solid var(--site-gold);
  outline-offset: 2px;
}

@supports not selector(:has(*)) {
  .books-slide__image-wrap img[option="1"] {
    outline: 1px solid #4d4d4d;
    outline-offset: -1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .books-slide,
  .books-slider__dot::before {
    transition: none;
  }
}

/* Source: assets/css/podcast.css */
/*
  Desktop podcast page content.
  Shared page chrome stays in site_global.css and collections.css.
*/

@font-face {
  font-family: "Podcast Desktop 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: "Podcast Desktop Gotham Medium";
  src:
    url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.ttf") format("truetype"),
    url("../fonts/Gotham-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --podcast-grid-top-gap: 89px;
  --podcast-cell-max-width: 354px;
  --podcast-column-gap: 48px;
  --podcast-row-gap: 80px;
  --podcast-line-color: #4d4d4d;
  --podcast-line-to-heading-gap: 25px;
  --podcast-heading-to-text-gap: 22px;
  --podcast-heading-color: #c9a875;
  --podcast-text-color: #b1b1b1;
  --podcast-link-color: var(--site-clickable-text);
  --podcast-desktop-heading-font: "Podcast Desktop Gotham Light", var(--site-font-body);
  --podcast-desktop-text-font: "Podcast Desktop Gotham Light", var(--site-font-body);
  --podcast-desktop-link-font: "Podcast Desktop Gotham Medium", var(--site-font-body);
}

.podcast-section {
  margin-top: var(--podcast-grid-top-gap);
}

.podcast-grid {
  --podcast-column-count: 2;
  position: relative;
  contain: layout;
  display: grid;
  grid-template-columns: repeat(var(--podcast-column-count), minmax(0, var(--podcast-cell-max-width)));
  column-gap: var(--podcast-column-gap);
  row-gap: var(--podcast-row-gap);
  justify-content: start;
  width: 100%;
}

.podcast-cell {
  width: 100%;
  max-width: var(--podcast-cell-max-width);
  min-width: 0;
  margin: 0;
}

.podcast-cell__line {
  width: 100%;
  height: 1px;
  background: var(--podcast-line-color);
}

.podcast-cell__heading {
  margin: var(--podcast-line-to-heading-gap) 0 0;
  color: var(--podcast-heading-color);
  font-family: var(--podcast-desktop-heading-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.podcast-cell__text {
  margin: var(--podcast-heading-to-text-gap) 0 0;
  color: var(--podcast-text-color);
  font-family: var(--podcast-desktop-text-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
}

.podcast-cell__link {
  color: var(--podcast-link-color);
  font-family: var(--podcast-desktop-link-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
}

@media (min-width: 1280px) {
  .podcast-grid {
    --podcast-column-count: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-cell {
    transition: none;
  }
}

/* Source: assets/css/home.css */
@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: #151515;
  --home-title-area-height: 82px;
  --home-title-bottom-height: 82px;
  --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-bottom-height);
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  background: var(--site-bg);
}

.home-title-block__top {
  border-bottom: 0;
}

.home-slideshow-area {
  position: relative;
  overflow: hidden;
  background: var(--home-slideshow-bg);
}
.home-playback-toggle {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  visibility: hidden;
}

.home-playback-toggle.is-visible {
  visibility: visible;
}

.home-playback-toggle:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -4px;
}

.home-sound-toggle {
  position: absolute;
  right: 6px;
  bottom: 7px;
  z-index: 3;
  display: block;
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.home-sound-toggle.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.home-sound-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
}

.home-sound-toggle svg {
  display: block;
  width: 26px;
  height: 26px;
}

.home-sound-toggle [hidden] {
  display: none;
}

.home-sound-toggle:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .home-sound-toggle {
    transition: none;
  }
}

.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-slide.has-video-render-fallback .home-slide__media {
  opacity: 0;
}

.home-slide__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

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

.home-title-block__bottom {
  position: relative;
  border-top: 0;
}

.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.collections-content,
.home-cast.about-content {
  padding-bottom: 80px;
}

.home-cast .collections-hero,
.home-cast .about-hero {
  padding-top: 83px;
}

.home-lazy-cast {
  display: block;
  width: 100%;
  min-height: 1px;
}

.home-cast-first-part-boundary {
  display: none;
}

.home-cast[data-cast-mode="first-part"] [data-cast-first-part-boundary],
.home-cast[data-cast-mode="first-part"] [data-cast-first-part-boundary] ~ * {
  display: none !important;
}

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

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

[data-home-content-flow],
.home-testimonial-slide__content,
.about-copy-desktop,
.about-copy-mobile,
.books-slide__text,
.books-mobile-block__text,
.site-optional-paragraph {
  text-wrap: pretty;
}

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

.home-testimonials__line {
  width: 100%;
  height: 1px;
  background: #c9a875;
}

.home-testimonials-slider {
  --home-testimonials-slider-height: 300px;
  width: 100%;
  margin-top: 60px;
}

.home-testimonials-slider__viewport {
  position: relative;
  width: 100%;
  height: var(--home-testimonials-slider-height);
  min-height: 300px;
  overflow: hidden;
}

.home-testimonials-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 0;
  transform: translate3d(100%, 0, 0);
  transition: none;
}

.home-testimonial-slide.is-visible {
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.46s cubic-bezier(0.22, 0.72, 0.18, 1);
}

.home-testimonial-slide.is-outgoing {
  z-index: 2;
}

.home-testimonial-slide.is-incoming {
  z-index: 1;
}

.home-testimonial-slide.is-active {
  pointer-events: auto;
}

.home-testimonials-slider.is-dragging .home-testimonial-slide.is-visible {
  transition: none;
}

.home-testimonials-slider.is-resetting .home-testimonial-slide {
  transition: none;
}

.home-testimonial-slide__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  text-align: center;
}

.home-testimonial-slide__media-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  max-width: 100%;
  height: 58px;
  margin-bottom: 24px;
}

.home-testimonial-slide__media-cell img,
.home-testimonial-slide__media-cell svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

.home-testimonial-slide__notes {
  width: min(440px, 100%);
  color: #dfdfdf;
  font-family: "Home Gotham Light", var(--site-font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

.home-testimonial-slide__notes {
  margin-bottom: 26px;
  text-transform: uppercase;
}

.home-testimonial-slide__content {
  width: min(440px, 100%);
  color: #dfdfdf;
  font-family: "Home Gotham Light", var(--site-font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

.home-testimonial-slide__notes p,
.home-testimonial-slide__content p {
  margin: 0;
}

.home-testimonial-slide__content a {
  color: inherit;
}

.home-testimonials-slider__nav {
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 80px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
}

.home-testimonials-slider__nav img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-width: none;
}

.home-testimonials-slider__nav--prev {
  left: 0;
  justify-content: flex-start;
}

.home-testimonials-slider__nav--next {
  right: 0;
  justify-content: flex-end;
}

.home-testimonials-slider.is-single .home-testimonials-slider__nav,
.home-testimonials-slider.is-single .home-testimonials-slider__pagination {
  display: none;
}

.home-testimonials-slider__pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.home-testimonials-slider__pagination-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.home-testimonials-slider__dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
}

.home-testimonials-slider__dot::before {
  width: 10px;
  height: 10px;
  content: "";
  background: #4e402a;
  border-radius: 50%;
  transition: background-color 0.15s ease-out;
}

.home-testimonials-slider__dot.is-active {
  cursor: default;
  pointer-events: none;
}

.home-testimonials-slider__dot.is-active::before {
  background: #c9a875;
}

.home-testimonials-slider__dot:focus-visible,
.home-testimonials-slider__nav:focus-visible {
  outline: 1px solid var(--site-gold);
  outline-offset: 2px;
}

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

.home-cast-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 120px;
  height: auto;
  color: #dfdfdf;
  font: 16px/25px var(--site-font-body);
}

.home-cast-retry {
  padding: 8px;
  border: 0;
  background: transparent;
  color: #c9a875;
  font: inherit;
  cursor: pointer;
}

