@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue"), local("HelveticaNeue");
  font-weight: 300 700;
  font-style: normal;
}

@font-face {
  font-family: "Orb Helvetica Light";
  src:
    local("Helvetica Neue Light"),
    local("HelveticaNeue-Light");
  font-weight: 300;
  font-style: normal;
}

:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --frame: #ece7dd;
  --gutter: clamp(20px, 5vw, 64px);
  --header-top: 28px;
  --maroon-light: #744b4b;
  --maroon-mid: #562d2d;
  --maroon-dark: #421919;
  --periwinkle-light: #a8b5fc;
  --periwinkle-mid: #8a97de;
  --periwinkle-dark: #7683ca;
  --brown-light: #7a726a;
  --brown-mid: #4a4139;
  --brown-dark: #302720;
  --navy-light: #4d5665;
  --navy-mid: #2f3847;
  --navy-dark: #1b2433;
}

body.theme-home {
  --page-accent: #1a1a1a;
  --page-subaccent: #929292;
}

body.theme-about {
  --ink: var(--maroon-mid);
  --page-accent: var(--maroon-mid);
  --page-subaccent: var(--maroon-light);
}

body.theme-graphic {
  --ink: var(--periwinkle-mid);
  --page-accent: var(--periwinkle-mid);
  --page-subaccent: var(--periwinkle-light);
}

body.theme-art {
  --ink: #66758a;
  --page-accent: #66758a;
  --page-subaccent: #9aa6b8;
}

body.theme-strategy {
  --ink: var(--brown-mid);
  --page-accent: var(--brown-mid);
  --page-subaccent: var(--brown-light);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

body.page-ready {
  opacity: 1;
}

body.page-exiting {
  opacity: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  letter-spacing: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: var(--header-top) var(--gutter) 0;
  flex: 0 0 auto;
}

.header-left,
.header-right {
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}

.wordmark,
.back-link {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.wordmark {
  grid-column: 2;
  white-space: nowrap;
}

.wordmark:hover,
.back-link:hover {
  opacity: 0.5;
}

.menu-btn {
  position: relative;
  z-index: 1000;

  width: 44px;
  height: 44px;

  top: auto;
  right: auto;
  
  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;

  appearance: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn:focus,
.menu-btn:focus-visible {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.menu-btn span {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 20px;
  height: 1px;

  margin: 0;
  padding: 0;

  background: var(--ink);
  border-radius: 0;

  transform-origin: 50% 50%;

  transition:
    transform 170ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 120ms linear;

  will-change: transform, opacity;
}

.menu-btn span:nth-child(1) {
  transform:
    translate(-50%, -50%)
    translateY(-6px)
    rotate(0deg);
}

.menu-btn span:nth-child(2) {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scaleX(1);
}

.menu-btn span:nth-child(3) {
  transform:
    translate(-50%, -50%)
    translateY(6px)
    rotate(0deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform:
    translate(-50%, -50%)
    translateY(0)
    rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    scaleX(0);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform:
    translate(-50%, -50%)
    translateY(0)
    rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  width: 100%;
  height: 100dvh;

  padding:
    clamp(110px, 14vh, 160px)
    max(24px, var(--gutter))
    70px;

  overflow-x: hidden;
  overflow-y: auto;

  background: #fff;
  color: #000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.nav-overlay.is-open,
.nav-overlay[aria-hidden="false"],
body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel {
  width: min(100%, 980px);
  margin: 0 auto;
}

.nav-primary,
.nav-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(38px, 5vh, 64px);
  width: 100%;
}

.nav-primary > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}

.nav-primary > li > a {
  display: block;

  font-family: inherit;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;

  color: inherit;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-group {
  gap: clamp(22px, 2.7vh, 32px);
}

.nav-sub {
  display: grid;
  justify-content: center;
  align-items: center;

  grid-template-columns: max-content max-content;

  column-gap: clamp(34px, 4vw, 62px);
  row-gap: clamp(14px, 1.8vh, 22px);

  width: 100%;
  max-width: 900px;
}

.nav-sub li {
  margin: 0;
  text-align: center;
}

.nav-sub a {
  display: block;

  font-family: inherit;
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;

  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-group--art .nav-sub li:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.nav-group--graphic .nav-sub li:nth-child(3),
.nav-group--graphic .nav-sub li:nth-child(6) {
  grid-column: 1 / -1;
  justify-self: center;
}

.nav-primary a {
  transition: opacity 160ms ease;
}

.nav-primary a:hover,
.nav-primary a:focus-visible,
.nav-primary a.is-current {
  opacity: 0.5;
}

.menu-btn {
  z-index: 10002;
}

@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(96px + env(safe-area-inset-top))
      20px
      calc(48px + env(safe-area-inset-bottom));
  }

  .nav-panel {
    width: 100%;
  }

  .nav-primary {
    gap: clamp(32px, 5.5vh, 48px);
  }

  .nav-primary > li > a {
    font-size: clamp(40px, 10vw, 56px);
  }

  .nav-group {
    gap: 20px;
  }

  .nav-sub {
    column-gap: clamp(20px, 6vw, 38px);
    row-gap: 14px;
  }

  .nav-sub a {
    font-size: clamp(18px, 4.7vw, 25px);
    line-height: 1.05;
  }
}

.footer-area {
  margin-top: auto;
  flex: 0 0 auto;
  background: var(--paper);
}

.footer-rule {
  margin: 0 var(--gutter);
  border: 0;
  border-top: 1px solid var(--ink);
}

.site-footer {
  height: 54px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}

.site-footer a {
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.55;
}

.home-page {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--gutter) 28px;
}

.home-stage {
  position: relative;
  width: min(760px, 100%);
  height: clamp(410px, calc(100svh - 190px), 720px);
  max-height: 720px;
  overflow: hidden;
  touch-action: none;
  background: var(--frame);
  border-radius: 0;
}

.orb {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: grab;
  touch-action: none;
  will-change: transform;
}

.orb.is-dragging {
  cursor: grabbing;
}

.orb-glow {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.orb-label {
  position: relative;
  z-index: 2;
  max-width: 70%;
  color: #fff;
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.orb.is-active .orb-label,
.orb--always-labeled .orb-label {
  opacity: 1;
}

.orb--about .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--maroon-light) 0%,
    var(--maroon-mid) 55%,
    var(--maroon-dark) 100%
  );
}

.orb--graphic .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--periwinkle-light) 0%,
    var(--periwinkle-mid) 55%,
    var(--periwinkle-dark) 100%
  );
}

.orb--art .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--navy-light) 0%,
    var(--navy-mid) 55%,
    var(--navy-dark) 100%
  );
}

.orb--strategy .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--brown-light) 0%,
    var(--brown-mid) 55%,
    var(--brown-dark) 100%
  );
}

.overview-page,
.detail-page,
.orb-page {
  flex: 1 1 auto;
  min-height: 0;
}

.page-heading {
  padding: 38px var(--gutter) 0;
}

.page-heading h1 {
  margin: 0 0 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-heading hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--ink);
}

.page-heading--detail {
  padding-top: 36px;
}
.page-heading--detail h1 {
  gap: 2px;
  margin-bottom: 19px;
}

.detail-heading-main {
  display: block;
  color: var(--page-accent, var(--ink));
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: normal;
  text-transform: uppercase;
  transition: opacity 0.16s ease;
}

.detail-heading-main:hover,
.detail-heading-main:focus-visible {
  opacity: 0.5;
}

.detail-heading-sub {
  display: block;
  margin: 0;

  color: var(--page-subaccent, #929292);

  font-family: inherit;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;

  cursor: default;
}

.overview-sections {
  width: 100%;
  padding: 32px 0 52px;
}

.gallery-row {
  scroll-margin-top: 24px;
  margin-bottom: 46px;
}

.gallery-row:last-child {
  margin-bottom: 0;
}

.gallery-row-header {
  min-height: 30px;
  margin: 0 var(--gutter) 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery-row-title {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.2;
}

a.gallery-row-title {
  transition: opacity 0.2s ease;
}

a.gallery-row-title:hover {
  opacity: 0.5;
}

.gallery-row-controls {
  display: flex;
  gap: 14px;
}

.gallery-row-controls button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-row-controls button:disabled {
  opacity: 0.16;
  cursor: default;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 46px);
  min-height: 280px;
  margin: 0 var(--gutter);
  padding: 0 0 5px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  height: 274px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.gallery-image-wrap {
  position: relative;
  display: inline-flex;
  max-width: 360px;
  max-height: 260px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.gallery-image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.32s ease;
}

.gallery-image-wrap img.has-border,
.detail-main-frame img.has-border,
.detail-thumb img.has-border {
  border: 0.5px solid #000;
}

.detail-main-frame img.has-border,
.detail-thumb img.has-border {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.91);
  opacity: 0;
  transition: opacity 0.25s ease;
  line-height: normal;
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.012);
}

.gallery-overlay-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.gallery-overlay-title {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.2;
}

.gallery-overlay-title em {
  font-style: italic;
  font-weight: 500;
}

.gallery-overlay-type {
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 300;
  line-height: 1.15;
}

.detail-layout {
  width: 100%;
  padding: 38px var(--gutter) 54px;
  display: grid;
  grid-template-columns: minmax(132px, 160px) minmax(330px, 620px) minmax(220px, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}

.detail-layout--lookbook {
  grid-template-columns: minmax(142px, 170px) minmax(450px, 720px) minmax(220px, 1fr);
}

.detail-sidebar {
  min-width: 0;
}

.detail-thumbnails {
  width: 100%;
  max-height: min(64vh, 640px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1px 4px 1px 1px;
  scrollbar-width: thin;
  scrollbar-color: currentColor transparent;
}

.detail-thumb {
  position: relative;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.detail-thumb--poster {
  height: auto;
  aspect-ratio: 1080 / 1600;
}

.detail-thumb-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.detail-thumb--poster img {
  object-fit: cover;
}

.detail-thumb-overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.91);
  text-align: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.detail-thumb-overlay span {
  font-size: 8px;
  font-weight: 500;
  line-height: 1.12;
}

.detail-thumb-overlay small {
  font-size: 7px;
  font-weight: 300;
  line-height: 1.1;
}

.detail-thumb-overlay em {
  font-style: italic;
}

.detail-thumb:hover .detail-thumb-overlay,
.detail-thumb:focus-visible .detail-thumb-overlay {
  opacity: 1;
}

.detail-thumb:hover img,
.detail-thumb:focus-visible img {
  transform: scale(1.018);
}

.detail-feature {
  min-width: 0;
  width: 100%;
}

.detail-main-frame {
  width: 100%;
  height: min(62vh, 650px);
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.detail-main-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.3s ease;
}

.detail-main-frame img.is-changing {
  opacity: 0;
}

.detail-main-frame--poster {
  width: min(100%, 400px);
  aspect-ratio: 1080 / 1600;
  height: auto;
  max-height: min(66vh, 650px);
  margin-inline: auto;
}

.detail-main-frame--poster img {
  object-fit: contain;
}

.detail-main-frame--lookbook {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(64vh, 650px);
}

.viewer-controls {
  width: 100%;
  min-height: 38px;
  padding-top: 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 400;
}

.viewer-controls button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.viewer-controls button:first-child {
  justify-self: start;
}

.viewer-controls button:last-child {
  justify-self: end;
}

.viewer-controls button:hover {
  opacity: 0.5;
}

.detail-info {
  min-width: 0;
}

.detail-copy {
  padding-top: clamp(72px, 9vh, 112px);
  max-width: 380px;
}

.detail-copy h2 {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.poster-title em {
  font-style: italic;
  font-weight: 500;
}

.detail-made-with,
.lookbook-description {
  margin: 0;

  font-family: inherit;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 300;
  font-style: normal;

  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

.detail-copy h2 + .detail-made-with {
  margin-top: 8px;
}

.lookbook-description + .detail-made-with {
  margin-top: 5px;
}

.lookbook-description {
  max-width: 330px;
  margin-top: 12px;
}

.lookbook-description:empty {
  display: none;
}

.variant-nav {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.variant-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.variant-button:hover,
.variant-button.is-active {
  opacity: 1;
}

.variant-dot {
  width: 25px;
  height: 25px;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--variant-color);
}

.variant-label {
  font-size: 8px;
  font-weight: 500;
}

.poster-stats {
  width: min(100%, 320px);
  margin: 34px 0 0;
}

.poster-stats > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  margin-bottom: 10px;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.15;
}

.poster-stats dt,
.poster-stats dd {
  margin: 0;
}

.poster-stats dt {
  font-weight: 400;
}

.poster-stats dd {
  font-weight: 300;
}

.lookbook-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lookbook-thumb {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.lookbook-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.lookbook-thumb span {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lookbook-thumb:hover span,
.lookbook-thumb:focus-visible span {
  opacity: 1;
}

.lookbook-thumb:hover img,
.lookbook-thumb:focus-visible img {
  transform: scale(1.015);
}

.about-page {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 0 48px;
}

.about-layout {
  width: min(
    1280px,
    calc(100% - (var(--gutter) * 2))
  );

  margin: 32px auto 0;

  display: grid;
  grid-template-columns:
    64px
    minmax(280px, 1fr)
    minmax(260px, 1.1fr);

  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.about-thumbs {
  align-self: center;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-thumb {
  width: 64px;
  height: 80px;

  margin: 0;
  padding: 0;

  border: 0;
  overflow: hidden;

  appearance: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 200ms ease;

  will-change: transform;
}

.about-thumb:hover,
.about-thumb:focus-visible {
  transform: translateY(-2px);
}

.about-thumb img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.about-thumb:hover img,
.about-thumb:focus-visible img {
  opacity: 1;
  transform: none;
  filter: none;
}

.about-photo-column {
  min-width: 0;
}

.about-main-photo {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;
  background: var(--paper);
}

.about-main-photo img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  opacity: 0;
  transition: opacity 500ms ease;
}

.about-main-photo img.is-active {
  z-index: 1;
  opacity: 1;
}

.about-copy {
  align-self: start;
  min-width: 0;
}

.about-copy p {
  max-width: 520px;

  margin: 0 0 17px;

  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.5;
}

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

.orb-page {
  display: flex;
  flex-direction: column;
}

.floating-orb-field {
  position: relative;
  flex: 1 1 auto;
  min-height: 380px;
  margin: 18px var(--gutter) 18px;
  overflow: hidden;
  touch-action: none;
}

.floating-orb-field .orb-label {
  font-size: clamp(11px, 1.15vw, 15px);
}

@media (max-width: 820px) {
  :root {
    --header-top: 22px;
  }

  .site-header {
    min-height: 50px;
  }

  .page-heading {
    padding-top: 30px;
  }

  .detail-layout,
  .detail-layout--lookbook {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 32px;
  }

  .detail-feature {
    order: 1;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .detail-info {
    order: 2;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .detail-copy {
    padding-top: 12px;
  }

  .detail-sidebar {
    order: 3;
    width: 100%;
  }

  .detail-thumbnails {
    max-height: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 7px;
  }

  .detail-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 94px;
  }

  .detail-thumb--poster {
    height: auto;
  }

  .lookbook-thumbnails {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .lookbook-thumb {
    flex: 0 0 160px;
  }

  .about-layout {
    grid-template-columns: 56px minmax(250px, 1fr);
  }

  .about-copy {
    grid-column: 2;
  }

  .about-thumb {
    width: 56px;
    height: 70px;
  }
}

@media (max-width: 560px) {
  .about-page {
    padding-top: 0;
  }

  .about-layout {
    width: calc(100% - (var(--gutter) * 2));

    margin-top: 24px;

    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-photo-column {
    order: 1;
  }

  .about-thumbs {
    order: 2;
    align-self: auto;

    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 4px;
  }

  .about-copy {
    order: 3;
    grid-column: auto;
  }

  .about-thumb {
    flex: 0 0 58px;

    width: 58px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 821px) {

  .detail-layout {
    width: 100%;
    padding-inline: var(--gutter);

    grid-template-columns:
      minmax(330px, 620px)
      minmax(132px, 160px)
      minmax(220px, 1fr);

    grid-template-areas:
      "feature sidebar info";

    align-items: start;
  }

  
  .detail-layout--lookbook {
    grid-template-columns:
      minmax(450px, 720px)
      minmax(142px, 170px)
      minmax(220px, 1fr);
  }

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;
  }

  .detail-info {
    grid-area: info;
  }

  

  .about-layout {
    grid-template-columns:
      minmax(280px, 1fr)
      64px
      minmax(260px, 1.1fr);

    grid-template-areas:
      "photo thumbs copy";

    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
  }

  .about-copy {
    grid-area: copy;
  }
}

@media (min-width: 821px) and (max-width: 1060px) {

  .detail-layout,
  .detail-layout--lookbook {
    grid-template-columns:
      minmax(300px, 1fr)
      minmax(120px, 145px)
      minmax(190px, 0.72fr);

    gap: 30px;
  }

  .about-layout {
    grid-template-columns:
      minmax(300px, 1fr)
      56px
      minmax(230px, 0.9fr);

    gap: 30px;
  }

  .about-thumb {
    width: 56px;
    height: 70px;
  }
}

@media (min-width: 821px) {
  .detail-sidebar,
  .about-thumbs {
    align-self: start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .detail-thumbnails,
  .about-thumbs {
    justify-content: flex-start;
  }
}


.detail-main-frame--campaign {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(64vh, 650px);
}

.detail-main-frame--campaign video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.detail-main-frame--campaign img[hidden],
.detail-main-frame--campaign video[hidden] {
  display: none;
}
.gallery-image-wrap video {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
  max-height: 260px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.32s ease;
}

.gallery-card:hover video,
.gallery-card:focus-visible video {
  transform: scale(1.012);
}

.detail-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
@media (min-width: 821px) {
  .detail-sidebar {
    min-height: 0;
    overflow: hidden;
  }

  .detail-sidebar > .detail-thumbnails,
  .detail-sidebar > .lookbook-thumbnails {
    width: 100%;
    height: 100%;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1px 6px 1px 1px;
    scrollbar-width: thin;
    scrollbar-color: currentColor transparent;
  }

  .detail-thumbnails {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 16px;
  }

  .lookbook-thumbnails {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .detail-sidebar {
    height: auto !important;
    overflow: visible;
  }

  .detail-sidebar > .detail-thumbnails,
  .detail-sidebar > .lookbook-thumbnails {
    width: 100%;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 7px;
  }

  .detail-thumb {
    flex: 0 0 72px;
    width: 72px;
  }

  .lookbook-thumb {
    flex: 0 0 160px;
    width: 160px;
  }
}

@media (min-width: 821px) {
  .detail-layout,
  .detail-layout--lookbook,
  .detail-layout--campaign {
    grid-template-columns:
      minmax(300px, 1.8fr)
      clamp(140px, 13vw, 184px)
      minmax(190px, 0.9fr);

    grid-template-areas: "feature sidebar info";
    column-gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
  }

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;
    min-width: 0;
    align-self: start;
    overflow: hidden;
  }

  .detail-info {
    grid-area: info;
  }

  .detail-sidebar > .detail-thumbnails,
  .detail-sidebar > .lookbook-thumbnails {
    width: 100%;
    height: 100%;
  }

  .about-layout {
    grid-template-columns:
      minmax(300px, 1.8fr)
      clamp(140px, 13vw, 184px)
      minmax(220px, 0.9fr);

    grid-template-areas: "photo thumbs copy";
    column-gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
    align-self: start;
  }

  .about-copy {
    grid-area: copy;
  }

  .detail-thumbnails,
  .lookbook-thumbnails,
  .about-thumbs {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 14px;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 0 8px 0 0;

    scrollbar-width: thin;
    scrollbar-color: currentColor transparent;
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
  }

  .detail-thumb,
  .detail-thumb--poster,
  .lookbook-thumb,
  .about-thumb {
    flex: 0 0 112px !important;

    width: 100% !important;
    height: 112px !important;
    aspect-ratio: auto !important;

    margin: 0;
    padding: 8px;

    border: 0;
    overflow: hidden;

    background: rgba(0, 0, 0, 0.025);
    opacity: 0.72;

    transition: opacity 180ms ease;
    scroll-snap-align: start;
  }

  .detail-thumb:hover,
  .detail-thumb:focus-visible,
  .lookbook-thumb:hover,
  .lookbook-thumb:focus-visible,
  .about-thumb:hover,
  .about-thumb:focus-visible {
    opacity: 1;
    transform: none;
  }

  .detail-thumb-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .detail-thumb img,
  .detail-thumb video,
  .lookbook-thumb img,
  .about-thumb img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100%;
    max-height: 100%;

    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;

    transform: none !important;
  }
}

.detail-thumb-overlay,
.lookbook-detail-page .lookbook-thumb span {
  display: none !important;
}

#dior-detail-root .detail-main-frame--campaign {
  width: min(100%, 510px, 51vh);
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 4;
  margin-inline: auto;
}

#dior-detail-root .detail-main-frame--campaign img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#dior-detail-root .detail-main-frame--campaign + .viewer-controls {
  width: min(100%, 510px, 51vh);
  margin-inline: auto;
}

.detail-main-frame--poster + .viewer-controls {
  width: min(100%, 400px);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .detail-layout,
  .detail-layout--lookbook,
  .detail-layout--campaign {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "sidebar"
      "info";

    gap: 26px;
  }

  .detail-feature,
  .detail-sidebar,
  .detail-info {
    order: initial !important;
  }

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;

    width: 100%;
    height: auto !important;

    overflow: visible;
  }

  .detail-info {
    grid-area: info;
  }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "thumbs"
      "copy";

    gap: 24px;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
    height: auto !important;
  }

  .about-copy {
    grid-area: copy;
  }

  .detail-thumbnails,
  .lookbook-thumbnails,
  .about-thumbs {
    width: 100%;
    height: auto !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 0 8px;
  }

  .detail-thumb,
  .detail-thumb--poster,
  .lookbook-thumb,
  .about-thumb {
    flex: 0 0 124px !important;

    width: 124px !important;
    height: 92px !important;
    aspect-ratio: auto !important;

    padding: 6px;
  }

  #dior-detail-root .detail-main-frame--campaign,
  #dior-detail-root .detail-main-frame--campaign + .viewer-controls {
    width: min(100%, 440px);
  }
}
.detail-layout,
.detail-layout--campaign,
.detail-layout--lookbook {
  align-items: start !important;
}

.detail-info {
  align-self: start !important;
  justify-self: start !important;
  justify-content: flex-start !important;

  height: auto !important;
  min-height: 0 !important;

  margin-top: 0 !important;
  padding-top: 0 !important;

  transform: none !important;
}
@media (min-width: 821px) {
  .detail-info,
  .detail-copy {
    align-self: start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 820px) {
  .orb-label {
    opacity: 1 !important;
  }

  .gallery-track {
    overflow-x: auto !important;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
  }

  .gallery-card {
    scroll-snap-align: start;
  }

  .detail-main-frame,
  .about-main-photo {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .detail-main-frame img,
  .about-main-photo img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }
}

@media (min-width: 821px) {
  .about-layout {
    grid-template-columns:
      minmax(300px, 1.8fr)
      minmax(260px, 0.9fr) !important;

    grid-template-areas:
      "photo copy" !important;

    column-gap: clamp(40px, 6vw, 88px);
    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-copy {
    grid-area: copy;
    align-self: start;
  }
}

@media (max-width: 820px) {
  .about-layout {
    grid-template-columns: 1fr !important;

    grid-template-areas:
      "photo"
      "copy" !important;

    gap: 24px;
  }

  .about-photo-column {
    grid-area: photo;
    order: initial !important;
  }

  .about-copy {
    grid-area: copy;
    grid-column: auto !important;
    order: initial !important;
  }
}
.about-main-photo {
  width: min(100%, 560px);
  margin-inline: auto;
}
@media (min-width: 821px) {
  .about-layout {
    width: calc(100% - (var(--gutter) * 2)) !important;
    max-width: none;

    grid-template-columns:
      minmax(0, 520px)
      minmax(260px, 1fr) !important;

    grid-template-areas: "photo copy" !important;
  }

  .about-photo-column {
    grid-area: photo;
    width: 100%;
    min-width: 0;
    justify-self: stretch !important;
  }

  .about-main-photo {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(96px + env(safe-area-inset-top))
      20px
      calc(48px + env(safe-area-inset-bottom));
  }

  .nav-panel {
    width: 100%;
  }

  .nav-primary {
    gap: clamp(32px, 5.5vh, 48px);
  }

  .nav-primary > li > a {
    font-size: clamp(40px, 10vw, 56px);
    line-height: 0.95;
  }

  .nav-group {
    gap: 20px;
  }

  .nav-sub {
    column-gap: clamp(20px, 6vw, 38px);
    row-gap: 14px;
  }

  .nav-sub a {
    font-size: clamp(18px, 4.7vw, 25px);
    line-height: 1.05;
  }
}

.nav-overlay {
  padding:
    clamp(76px, 9vh, 105px)
    max(24px, var(--gutter))
    48px;
}

.nav-panel {
  width: min(100%, 760px);
}

.nav-primary {
  gap: clamp(26px, 3.5vh, 38px);
}

.nav-primary > li > a {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.nav-group {
  gap: clamp(14px, 1.8vh, 20px);
}

.nav-sub {
  column-gap: clamp(24px, 3vw, 42px);
  row-gap: clamp(9px, 1.2vh, 14px);
  max-width: 720px;
}

.nav-sub a {
  font-size: clamp(14px, 1.55vw, 20px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(76px + env(safe-area-inset-top))
      18px
      calc(38px + env(safe-area-inset-bottom));
  }

  .nav-primary {
    gap: 27px;
  }

  .nav-primary > li > a {
    font-size: clamp(29px, 8vw, 38px);
  }

  .nav-group {
    gap: 14px;
  }

  .nav-sub {
    column-gap: 20px;
    row-gap: 10px;
  }

  .nav-sub a {
    font-size: clamp(13px, 3.8vw, 17px);
  }
}

.nav-overlay {
  color: var(--ink) !important;
}

.nav-primary a,
.nav-primary > li > a,
.nav-sub a {
  color: inherit !important;
}

.nav-primary a.is-current {
  opacity: 1 !important;
}

.menu-btn {
  color: var(--ink) !important;
}

.menu-btn span {
  background: currentColor !important;
}

.nav-group--strategy .nav-sub {
  grid-template-columns: max-content;
}
.orb-label,
.floating-orb-field .orb-label {
  font-family:
    "Helvetica Neue Light",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif !important;

  font-weight: 200 !important;
  font-synthesis: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.nav-primary > li > a {
  font-size: clamp(22px, 2.5vw, 32px) !important;
}

.nav-sub a {
  font-size: clamp(10px, 1.1vw, 14px) !important;
}

@media (max-width: 820px) {
  .nav-primary > li > a {
    font-size: clamp(22px, 6vw, 28px) !important;
  }

  .nav-sub a {
    font-size: clamp(10px, 2.8vw, 12px) !important;
  }
}

@media (max-width: 820px) {
  .overview-sections .gallery-track {
    justify-content: flex-start !important;
    scroll-behavior: auto !important;
    scroll-padding-left: 0 !important;
    overflow-anchor: none;
  }

  .overview-sections .gallery-card:first-child {
    margin-left: 0 !important;
  }
}
.gallery-image-wrap,
.detail-thumb {
  position: relative;
}

.video-marker {
  position: relative !important;
}

.video-marker::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;

  width: 20px;
  height: 20px;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.38);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6 4.25L11.5 8L6 11.75Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;

  pointer-events: none;
}

.video-marker::after {
  content: none !important;
}

.detail-thumb.video-marker::before {
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  background-size: 9px 9px;
}

.detail-main-frame.video-marker::before {
  top: 10px;
  right: 10px;
  width: 23px;
  height: 23px;
  background-size: 14px 14px;
}
.detail-description {
  max-width: 34ch;
  margin: 16px 0 0;

  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.45;

  color: currentColor;
}

.detail-zoom-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: grid;
  place-items: center;

  padding:
    calc(56px + env(safe-area-inset-top))
    clamp(18px, 4vw, 64px)
    calc(36px + env(safe-area-inset-bottom));

  background: rgba(0, 0, 0, 0.72);

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox__image {
  display: block;

  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 88vh;

  object-fit: contain;

  background: #fff;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.32);
}

.image-lightbox__close {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  right: calc(22px + env(safe-area-inset-right));
  z-index: 20001;

  width: 40px;
  height: 40px;
  padding: 0;

  border: 0;
  background: transparent;

  color: #fff;
  font-family: inherit;
  font-size: 36px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .image-lightbox__image {
    max-width: 94vw;
    max-height: 82vh;
  }

  .image-lightbox__close {
    top: calc(12px + env(safe-area-inset-top));
    right: 14px;
  }
}
.detail-confidentiality {
  margin: 10px 0 0;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.7;
}
.strategy-intro {
  width: 900px;
  max-width: 100%;
  margin: 34px 0 0;
  padding: 0;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;

  color: color-mix(in srgb, var(--ink) 65%, white);
}
@media (max-width: 820px) {
  .strategy-intro {
    width: 100%;
    font-size: 14px;
  }

  .strategy-intro br {
    display: none;
  }
}