:root {
  --bg: #5b5b5b;
  --text: #5b5b5b;
  --wine: #5e293f;
  --sky: #7bb2d0;
  --panel-shadow: 0 18px 48px rgba(49, 35, 43, 0.08);
  --page-gutter: clamp(28px, 8.5vw, 150px);
  --wrap: min(1160px, calc(100vw - (var(--page-gutter) * 2)));
  --uniform-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: white;
  color: var(--text);
  font-family: "Microsoft Sans Serif", sans-serif;
  font-size: 11px;
  overflow-x: hidden;
  position: relative;
}

.site-stage {
  position: relative;
  margin: 0 auto;
}

.site-canvas {
  position: relative;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p {
  margin: 0;
  line-height: 1.3;
}

li {
  line-height: 1.3;
}

.page {
  padding: 48px 0 56px;
}

.section,
.hero {
  width: var(--wrap);
  margin: 0 auto 64px;
  position: relative;
}

.hero__topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.hero__brand {
  width: min(100%, 212px);
}

.hero__brand-secondary {
  margin-left: auto;
  width: min(100%, 234px);
}

.hero__brand-secondary img {
  margin-left: auto;
  transform: translateY(5px);
}

.hero__tagline {
  padding-top: 16px;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 300;
  text-align: right;
}

.hero__frame {
  background: var(--wine);
  padding: 0 0 28px;
}

.hero__mobile-header,
.hero__mobile-drawer {
  display: none;
}

.hero__video {
  position: relative;
  aspect-ratio: 6 / 4;
  width: 86%;
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}

.hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.hero__video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease;
}

.hero__video-media.is-idle {
  filter: blur(10px);
}

.hero__video-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(700px, 100%);
  transform: translate(-50%, -50%);
}

.hero__video-copy img {
  width: 100%;
}

.hero__video-button {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 48%;
  height: 16%;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero__video-copy.is-hidden {
  display: none;
}

.hero__video-logo {
  position: absolute;
  right: 13%;
  bottom: 17%;
  width: min(20%, 270px);
}

.hero__video-logo img {
  filter: brightness(0) invert(1);
}

.hero__video-logo img + img {
  margin-top: 8px;
}

.hero__menu {
  position: relative;
  width: min(66%, 760px);
  margin: 18px 4.8% 0 auto;
  background: transparent;
}

.hero__menu-art {
  width: 100%;
}

.hero__menu-link {
  position: absolute;
  top: 0;
  bottom: 0;
  background: transparent;
}

.hero__menu-link--biography {
  left: 0;
  width: 24%;
}

.hero__menu-link--cars {
  left: 24%;
  width: 19%;
}

.hero__menu-link--exhibitions {
  left: 43%;
  width: 17%;
}

.hero__menu-link--story {
  left: 60%;
  width: 28%;
}

.hero__menu-link--contact {
  right: 0;
  width: 12%;
}

.section {
  padding-bottom: 36px;
}

.section-label {
  width: min(100%, 360px);
}

.section-label--small {
  width: min(100%, 250px);
}

.section-label--medium {
  width: min(100%, 300px);
}

.biography__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 310px) minmax(0, 560px);
  gap: clamp(18px, 3.8vw, 46px);
  align-items: start;
  justify-content: center;
  padding: 108px clamp(20px, 4vw, 56px) 120px;
  background: white;
  box-shadow: none;
}

.biography__photo {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 310px);
  transform: translate(60px, -20px);
}

.biography__photo img {
  height: 350px;
  width: auto;
  max-width: 100%;
}

.biography__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 34px;
  padding-top: 0;
  width: min(100%, 550px);
  max-width: 550px;
  font-size: 16px;
  letter-spacing: 0;
  transform: translateY(-20px);
}

.biography__copy .section-label {
  width: 199px;
}

.biography__copy p {
  width: 100%;
  max-width: 550px;
  font-size: 16px;
  text-align: justify;
  color: var(--text);
}

.biography__accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.biography__accents img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.fictional {
  background: var(--wine);
  color: var(--sky);
  padding-bottom: 90px;
}

.fictional__columns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(24px, 6vw, 100px);
  width: calc(100% - 60px);
  margin: 0 auto;
}

.fictional__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(100%, 420px);
}

.fictional__column--left {
  align-items: flex-start;
  padding-top: 35px;
}

.fictional__column--right {
  align-items: flex-start;
  padding-top: 30px;
}

.fictional__group {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.fictional__intro {
  display: grid;
  gap: 10px;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
  width: 100%;
}

.fictional__intro .section-label {
  width: 160px;
  margin: 0;
  transform: translateY(-8px);
}

.fictional__intro p {
  margin: 0;
  text-align: justify;
  font-size: 16px;
}

.fictional__card {
  margin: 0;
  background: transparent;
  width: 100%;
}

.fictional__card img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.fictional__card--interactive {
  overflow: visible;
}

.fictional__stack {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

.fictional__stack-image {
  width: 100%;
}

.fictional__stack-image--base {
  position: relative;
  z-index: 1;
}

.fictional__stack-image--top {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.fictional__stack-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  z-index: 3;
  width: 28px;
  transform: translateX(-50%);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.fictional__stack-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(60, 11, 64, 0.16);
}

.fictional__stack-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(94, 41, 63, 0.5);
}

.fictional__banner {
  width: 100%;
  display: block;
}

.fictional__banner--left {
  width: calc(100% + 110px);
  margin-left: -112px;
  max-width: none;
}

.fictional__banner--pencil {
  width: calc(100% + 112px);
}

.fictional__banner--right {
  width: calc(100% + 112px);
  max-width: none;
}

.fictional__banner--bottom {
  width: calc(100% + 232px);
  margin-left: -232px;
  max-width: none;
}

.fictional__bottom {
  width: 700px;
  max-width: 100%;
  margin: 18px auto 0;
}

.fictional__card--wide-bottom {
  width: 100%;
}

.fictional__card--wide-bottom img {
  width: 100%;
}

.fictional__footer-art {
  width: min(100%, 1610px);
  margin: 20px auto -250px;
  transform: scale(1.01);
  transform-origin: center top;
}

.exhibitions {
  margin-top: 350px;
}

.exhibitions__title {
  width: min(100%, 1500px);
  margin: 0 auto 0px;
  display: block;
}

.exhibitions__panel {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  background: var(--wine);
  box-shadow: var(--panel-shadow);
  align-items: stretch;
  min-height: 420px;
}

.exhibitions__panel--exhi-01 {
  min-height: 470px;
}

.exhibitions__copy {
  display: grid;
  gap: 18px;
  padding: 92px 48px 70px 48px;
  color: var(--sky);
  font-size: 16px;
  align-content: center;
}

.exhibitions__copy p{
  font-size: 16px;
  text-align: justify;
  overflow-wrap: anywhere;
}

.exhibitions__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  overflow: visible;
  padding: 0 56px 0 0;
}

.exhibitions__media--exhi-01 {
  height: 480px;
  min-height: 480px;
  align-items: center;
}

.exhibitions__media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.exhibitions__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  min-height: 0;
  object-fit: contain;
  margin: 0 auto;
}

.exhibitions__media .exhibitions__image--exhi-01 {
  width: auto;
  max-width: 100%;
  height: 470px;
  min-height: 0;
  object-fit: contain;
  margin: 0 auto;
}

.exhibitions__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  appearance: none;
  background-color: transparent;
  border: 0;
  color: var(--sky);
  font: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.exhibitions__nav--prev {
  left: 12px;
  border-top: 2px solid var(--sky);
  border-left: 2px solid var(--sky);
}

.exhibitions__nav--next {
  right: 70px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
}

.exhibitions__bottom {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  padding: 42px 0 0;
  align-items: start;
}

.exhibitions__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.exhibitions__list li {
  text-align: left;
}

.exhibitions__list-item--center {
  text-align: center;
  transform: translateX(260px);
}


.exhibitions__bottom .section-label {
  width: 210px;
  margin: 0;
}

.story__panel {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  /* padding: 56px 78px 60px; */
  padding-top: 56px;
  padding-bottom: 60px;
  background: var(--sky);
  box-shadow: var(--panel-shadow);
  align-items: center;
}

.story__copy {
  display: grid;
  gap: 24px;
  padding: 0 0 0 78px;
  font-size: 16px;
  color: var(--wine);
  align-content: start;
}

.story__copy p{
  text-align: justify;
  color: #5e293f;
}

.story__copy .section-label {
  width: 200px;
}

.story__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}

.story__media img {
  width: min(100%, 500px);
  height: auto;
  object-fit: cover;
  display: block;
  transform: none;
}

.story__quote {
  width: min(100%, 1500px);
  margin-top: 0;
  display: block;
}

.contact {
  margin-bottom: 0;
}

.contact__panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--wine);
  box-shadow: var(--panel-shadow);
}

.contact__content {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: 0;
}

.contact__mail {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contact__mail-hitbox {
  position: absolute;
  left: calc(30% - 140px);
  top: 58%;
  width: calc(38% + 20px);
  height: calc(8.5% + 30px);
  display: block;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.contact__bottom {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}

.contact__also {
  display: block;
  width: min(100%, 760px);
  height: auto;
}

.to-top-layer {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--wrap);
  height: 0;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 20;
}

.to-top {
  position: absolute;
  display: block;
  width: 54px;
  pointer-events: auto;
}

.to-top img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.52;
}

@media (max-width: 1280px) {
  .hero__menu {
    width: min(74%, 760px);
    margin-right: 2.5%;
  }

  .biography__photo {
    transform: translate(24px, -10px);
  }

  .biography__copy {
    width: min(100%, 520px);
    max-width: 520px;
    font-size: 18px;
  }

  .biography__copy p {
    width: 100%;
    max-width: 520px;
    font-size: 18px;
  }

  .fictional__columns {
    width: calc(100% - 40px);
  }

  .exhibitions {
    margin-top: 240px;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: clamp(20px, 5vw, 56px);
    --wrap: calc(100vw - (var(--page-gutter) * 2));
  }

  .hero__topline,
  .biography__inner,
  .exhibitions__panel,
  .exhibitions__bottom,
  .story__panel {
    grid-template-columns: 1fr;
  }

  .hero__tagline {
    text-align: left;
    padding-top: 0;
  }

  .hero__brand-secondary {
    margin-left: 0;
  }

  .hero__brand-secondary img {
    margin-left: 0;
  }

  .hero__video {
    width: 84%;
    margin: 0 auto;
  }

  .hero__video-logo {
    width: min(24%, 220px);
    right: 9%;
  }

  .hero__video-copy {
    width: min(52%, 420px);
  }

  .hero__menu {
    width: min(74%, 760px);
    margin-right: 24px;
  }

  .biography__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 92px 28px 110px;
    justify-content: stretch;
  }

  .biography__photo {
    transform: none;
    justify-self: center;
  }

  .biography__copy {
    width: 100%;
    max-width: 560px;
    transform: none;
  }

  .biography__copy p {
    width: 100%;
    max-width: 100%;
  }

  .biography__accents {
    inset: 0;
  }

  .biography__accents img {
    width: 100%;
  }

  .fictional__columns {
    gap: 24px;
    width: 100%;
    padding: 0 20px;
  }

  .fictional__column {
    width: min(100%, 700px);
  }

  .fictional__intro,
  .fictional__bottom,
  .fictional__footer-art {
    width: min(100%, 700px);
  }

  .fictional__banner--left,
  .fictional__banner--right,
  .fictional__banner--bottom {
    width: calc(100% + 20px);
    margin-left: -15px;
    max-width: none;
  }

  .fictional__footer-art {
    margin-bottom: -120px;
  }

  .exhibitions__media {
    padding: 0;
    min-height: 320px;
    height: 320px;
    overflow: hidden;
  }

  .exhibitions__copy {
    padding: 48px 32px 32px;
  }

  .exhibitions__panel--exhi-01 {
    min-height: 320px;
  }

  .exhibitions__media--exhi-01 {
    min-height: 320px;
    height: 320px;
  }

  .exhibitions__image,
  .exhibitions__media img,
  .exhibitions__media .exhibitions__image--exhi-01 {
    max-height: 320px;
    height: auto;
  }

  .exhibitions__bottom {
    gap: 24px;
    padding-top: 28px;
  }


  .story__panel {
    padding: 24px;
  }

  .story__copy {
    padding: 0;
  }

  .story__media {
    justify-content: center;
  }

  .story__media img {
    transform: none;
    max-width: 100%;
  }

  .contact__panel {
    min-height: 560px;
  }

  .contact__content {
    min-height: 560px;
  }

  .contact__mail-hitbox {
    left: 21%;
    top: 57%;
    width: 46%;
    height: calc(8.8% + 24px);
  }

  .to-top-layer {
    display: none;
  }
}

@media (max-width: 900px) {
  .page {
    padding: 32px 0 40px;
  }

  .section,
  .hero {
    margin-bottom: 48px;
  }

  .hero__video {
    width: 100%;
  }

  .hero__video-copy {
    width: min(56%, 360px);
  }

  .hero__video-button {
    width: 58%;
    height: 18%;
  }

  .biography__inner {
    padding: 76px 24px 92px;
  }

  .biography__copy,
  .biography__copy p {
    font-size: 16px;
  }

  .fictional {
    padding-bottom: 72px;
  }

  .fictional__columns {
    padding: 0 16px;
  }

  .fictional__column {
    gap: 24px;
  }

  .fictional__stack-handle {
    width: 36px;
  }

  .fictional__card img {
    box-shadow: none;
  }

  .fictional__footer-art {
    margin-bottom: -90px;
  }

  .exhibitions {
    margin-top: 140px;
  }

  .exhibitions__title {
    margin-bottom: -10px;
  }

  .exhibitions__copy {
    padding: 28px 24px 20px;
    font-size: 15px;
  }

  .exhibitions__copy p,
  .exhibitions__list {
    font-size: 15px;
  }

  .exhibitions__list-item--center {
    transform: translateX(120px);
  }

  .exhibitions__media,
  .exhibitions__media--exhi-01 {
    min-height: 280px;
    height: 280px;
  }

  .exhibitions__image,
  .exhibitions__media img,
  .exhibitions__media .exhibitions__image--exhi-01 {
    max-height: 280px;
  }

  .story__panel {
    padding: 24px 20px 28px;
    gap: 20px;
  }

  .story__copy {
    gap: 18px;
  }

  .story__copy p {
    font-size: 15px;
  }

  .story__quote {
    width: 100%;
  }

  .contact__panel,
  .contact__content {
    min-height: 480px;
  }

  .contact__mail-hitbox {
    left: 19%;
    top: 56.5%;
    width: 49%;
    height: calc(9% + 20px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 14px;
    --wrap: calc(100vw - (var(--page-gutter) * 2));
    --mobile-header-height: 92px;
  }

  .page {
    padding-top: calc(var(--mobile-header-height) + 16px);
  }

  .section,
  .hero {
    margin-bottom: 40px;
  }

  .hero__topline {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__frame {
    padding: 80px 0 80px;
  }

  .hero__topline,
  .hero__menu {
    display: none;
  }

  .hero__mobile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 22px 14px 26px;
    border-top: 2px solid var(--wine);
    border-bottom: 2px solid var(--bg);
    background: var(--wine);
  }

  .hero__mobile-brand {
    display: grid;
    gap: 4px;
    width: min(100%, 190px);
  }

  .hero__mobile-brand img:first-child {
    width: 116px;
  }

  .hero__mobile-brand img:last-child {
    width: 164px;
  }

  .hero__mobile-menu-toggle {
    flex: 0 0 auto;
    position: relative;
    margin-top: 4px;
    padding: 6px 10px 16px 10px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 18px;
    text-transform: lowercase;
    cursor: pointer;
  }

  .hero__mobile-menu-toggle::before,
  .hero__mobile-menu-toggle::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 47px;
    height: 2px;
    background: #fff;
  }

  .hero__mobile-menu-toggle::before {
    bottom: 8px;
  }

  .hero__mobile-menu-toggle::after {
    bottom: 2px;
  }

  .hero__mobile-menu-toggle span {
    position: relative;
    display: inline-block;
    padding-right: 2px;
  }

  .hero__mobile-menu-toggle span::after {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    right: -12px;
    width: 2px;
    height: calc(100% + 29px);
    background: #fff;
    pointer-events: none;
  }

  .hero__mobile-drawer {
    display: grid;
    gap: 24px;
    position: fixed;
    top: var(--mobile-header-height);
    left: 0;
    right: 0;
    z-index: 59;
    padding: 18px 24px 28px;
    background: var(--wine);
    color: var(--sky);
  }

  .hero__mobile-drawer[hidden] {
    display: none;
  }

  .hero__mobile-menu-close {
    justify-self: end;
    border: 0;
    background: transparent;
    color: var(--sky);
    font: inherit;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
  }

  .hero__mobile-drawer a {
    color: var(--sky);
    font-size: 18px;
    text-transform: uppercase;
  }

  .hero__video {
    width: 100%;
    aspect-ratio: 6 / 4;
    margin: 0;
  }

  .hero__video-media {
    inset: 50% auto auto 50%;
    width: 100%;
    height: 100%;
    max-width: none;
    left: auto;
    transform: translate(-50%, -50%) scale(2);
    transform-origin: center center;
    object-position: center center;
  }

  .hero__video-copy,
  .hero__video-logo {
    right: auto;
    width: 44%;
  }

  .hero__video-copy {
    left: 50%;
  }

  .hero__video-button {
    width: 54%;
    height: 18%;
    bottom: 11%;
  }

  .hero__video-logo {
    bottom: 12%;
  }

  .hero__menu {
    width: 100%;
    margin-right: 0;
    margin-top: 12px;
  }

  .biography__photo {
    width: min(100%, 280px);
  }

  .biography__copy,
  .exhibitions__copy,
  .story__copy,
  .exhibitions__list,
  .contact__also {
    width: min(100%, 520px);
  }

  .biography__copy {
    gap: 18px;
    padding-top: 0;
    width: min(100%, 360px);
    max-width: 360px;
    font-size: 18px;
    justify-self: center;
  }

  .biography__copy .section-label {
    width: 220px;
  }

  .biography {
    padding-bottom: 20px;
  }

  .biography::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    bottom: -10px;
    width: 2px;
    background: var(--wine);
    z-index: 1;
  }

  .biography__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 20px 20px 22px;
    overflow: hidden;
  }

  .biography__inner::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 100%;
    background: var(--wine);
    z-index: 0;
  }

  .biography::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0px;
    width: 2px;
    background: var(--wine);
    z-index: 1;
  }

  .biography__inner::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    background: var(--sky);
    z-index: 0;
  }

  .biography__copy {
    order: 1;
    width: 100%;
    max-width: none;
    gap: 20px;
    padding-right: 38px;
    transform: none;
  }

  .biography__copy .section-label {
    width: 180px;
    margin-left: 6px;
  }

  .biography__copy p {
    width: 100%;
    max-width: none;
    text-align: justify;
    text-indent: 3px;
    line-height: 1.28;
  }

  .biography__photo {
    order: 2;
    width: min(100%, 260px);
    margin: 6px auto 0;
    transform: none;
    justify-self: center;
  }

  .biography__photo img {
    width: 100%;
    height: auto;
  }

  .biography__accents {
    display: none;
  }

  .fictional__group {
    width: 100%;
  }

  .fictional__column--left > .fictional__group:nth-of-type(2) .fictional__card {
    margin-left: auto;
    margin-right: 0;
  }

  .fictional__card,
  .fictional__column > img,
  .fictional__stack,
  .fictional__bottom {
    width: min(100%, calc(74% + 50px));
    margin-left: auto;
    margin-right: auto;
  }

  .fictional__column--left > .fictional__group:nth-of-type(2) .fictional__card:first-child,
  .fictional__column--left > .fictional__group:nth-of-type(2) .fictional__card:last-child {
    margin-left: auto !important;
    margin-right: -12px !important;
    align-self: flex-end;
  }

  .exhibitions__title {
    margin-bottom: 0px;
  }

  .exhibitions__copy {
    width: min(100%, 300px);
    margin: 0 auto 40px;
    color: #fff;
  }

  .exhibitions__copy p {
    color: #fff;
  }

  .exhibitions__bottom .section-label {
    width: 150px;
    margin: 0;
  }

  .exhibitions__list-item--center {
    transform: translateX(16px);
  }

  .exhibitions__bottom {
    width: min(100%, 320px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
  }

  .exhibitions__list {
    width: 100%;
    font-size: 20px;
    line-height: 1.15;
  }

  .exhibitions__list li {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .exhibitions__media,
  .exhibitions__media--exhi-01 {
    min-height: 260px;
    height: 260px;
    margin-bottom: 40px;
  }

  .exhibitions__image,
  .exhibitions__media img,
  .exhibitions__media .exhibitions__image--exhi-01 {
    max-height: 260px;
  }

  .exhibitions__nav--prev {
    left: 8px;
  }

  .exhibitions__nav--next {
    right: 8px;
  }

  .story__media img {
    width: min(100%, 420px);
    transform: none;
  }

  .story__panel {
    gap: 18px;
  }

  .biography__copy p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }


  .fictional {
    padding: 16px 16px 40px;
  }

  .fictional__columns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fictional__column,
  .fictional__intro,
  .fictional__bottom,
  .fictional__footer-art {
    width: 100%;
  }

  .fictional__column {
    gap: 20px;
  }

  .fictional__stack-handle {
    width: 40px;
  }

  .fictional__column--left,
  .fictional__column--right {
    padding-top: 0;
  }

  .fictional__banner--left,
  .fictional__banner--right,
  .fictional__banner--bottom {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .fictional__footer-art {
    margin-bottom: -50px;
  }

  .contact__panel,
  .contact__content {
    min-height: 420px;
  }

  .contact__mail-hitbox {
    left: 17%;
    top: 56%;
    width: 56%;
    height: calc(10% + 10px);
  }

  .to-top-layer {
    display: none;
  }
}

@media (max-width: 560px) {
  .page {
    padding: calc(var(--mobile-header-height) + 12px) 0 28px;
  }

  .hero__mobile-header {
    padding: 10px 10px 14px;
  }

  .hero__mobile-brand {
    width: min(100%, 160px);
  }

  .hero__mobile-brand img:first-child {
    width: 98px;
  }

  .hero__mobile-brand img:last-child {
    width: 142px;
  }

  .hero__mobile-drawer {
    padding: 16px 18px 22px;
    gap: 18px;
  }

  .hero__mobile-drawer a {
    font-size: 16px;
  }

  .hero__video-copy {
    width: 56%;
  }

  .hero__video-button {
    width: 62%;
    height: 20%;
    bottom: 10%;
  }

  .hero__video-logo {
    width: 52%;
    bottom: 10%;
  }

  .biography__inner {
    padding: 14px 18px 18px 20px;
  }

  .biography__photo img {
    height: auto;
    width: 100%;
  }

  .biography__copy .section-label {
    width: 170px;
  }

  .biography__copy,
  .biography__copy p {
    font-size: 16px;
  }

  .biography__copy {
    width: min(100%, 400px);
    max-width: 400px;
  }

  .biography__inner::before {
    width: 30px;
  }

  .biography__inner::after {
    width: 38px;
    height: 38px;
    left: 10px;
    bottom: 10px;
  }

  .biography__copy {
    padding-right: 32px;
  }

  .biography__photo {
    width: min(100%, 245px);
  }

  .fictional {
    padding: 12px 12px 32px;
  }

  .fictional__columns {
    padding: 0;
    gap: 14px;
  }

  .fictional__column {
    gap: 16px;
  }

  .fictional__group {
    width: 100%;
  }

  .fictional__card,
  .fictional__column > img,
  .fictional__stack,
  .fictional__bottom {
    width: min(100%, calc(70% + 50px));
  }

  .fictional__column--left > .fictional__group:nth-of-type(2) .fictional__card:first-child,
  .fictional__column--left > .fictional__group:nth-of-type(2) .fictional__card:last-child {
    margin-left: auto !important;
    margin-right: -12px !important;
    align-self: flex-end;
  }

  .fictional__banner--left,
  .fictional__banner--right,
  .fictional__banner--bottom {
    width: calc(100% + 24px);
    margin-left: -12px;
    max-width: none;
  }

  .fictional__stack-handle {
    width: 44px;
  }

  .fictional__intro {
    gap: 8px;
    font-size: 14px;
  }

  .fictional__intro p {
    font-size: 14px;
  }

  .fictional__intro .section-label {
    width: 140px;
  }

  .fictional__bottom {
    margin-top: 12px;
  }

  .fictional__footer-art {
    margin-bottom: -36px;
  }

  .exhibitions {
    margin-top: 72px;
  }

  .exhibitions__copy {
    padding: 22px 18px 16px;
    width: min(100%, 360px);
    margin: 0 auto 40px;
    color: #fff;
  }

  .exhibitions__copy p {
    color: #fff;
  }

  .exhibitions__media,
  .exhibitions__media--exhi-01 {
    min-height: 220px;
    height: 220px;
    margin-bottom: 40px;
  }

  .exhibitions__image,
  .exhibitions__media img,
  .exhibitions__media .exhibitions__image--exhi-01 {
    max-height: 220px;
  }

  .exhibitions__nav {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    font-size: 24px;
  }

  .exhibitions__bottom {
    width: min(100%, 270px);
    margin: 0 auto;
    gap: 14px;
  }

  .exhibitions__bottom .section-label {
    width: 130px;
  }

  .exhibitions__list {
    font-size: 13px;
    line-height: 1.12;
  }

  .exhibitions__list li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .exhibitions__bottom {
    padding-top: 20px;
    gap: 16px;
  }

  .exhibitions__list-item--center {
    transform: translateX(0);
  }


  .story__panel {
    padding: 18px 14px 22px;
  }

  .story__copy .section-label {
    width: 140px;
  }

  .story__copy p {
    font-size: 14px;
  }

  .story__media img {
    width: 100%;
  }

  .contact__panel,
  .contact__content {
    min-height: 320px;
  }

  .contact__mail-hitbox {
    left: 15%;
    top: 55.5%;
    width: 60%;
    height: calc(10% + 8px);
  }

  .contact__bottom {
    margin-top: 6px;
  }
}

body.uniform-layout {
  --page-gutter: 150px;
  --wrap: 1160px;
  overflow-x: auto;
}

body.uniform-layout .site-canvas {
  width: 1460px;
  transform: scale(var(--uniform-scale));
  transform-origin: top left;
}

body.uniform-layout .page {
  padding: 48px 0 56px;
}

body.uniform-layout .section,
body.uniform-layout .hero {
  width: var(--wrap);
  margin: 0 auto 64px;
}

body.uniform-layout .hero__topline {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

body.uniform-layout .hero__brand-secondary {
  margin-left: auto;
}

body.uniform-layout .hero__brand-secondary img {
  margin-left: auto;
  transform: translateY(5px);
}

body.uniform-layout .hero__mobile-header,
body.uniform-layout .hero__mobile-drawer {
  display: none !important;
}

body.uniform-layout .hero__menu {
  display: block;
  width: min(66%, 760px);
  margin: 18px 4.8% 0 auto;
}

body.uniform-layout .hero__video {
  width: 86%;
  margin: 0 auto;
}

body.uniform-layout .hero__video-media {
  inset: 0;
  width: 100%;
  left: auto;
}

body.uniform-layout .hero__video-copy {
  width: min(700px, 100%);
}

body.uniform-layout .hero__video-logo {
  right: 13%;
  bottom: 17%;
  width: min(20%, 270px);
}

body.uniform-layout .biography__inner {
  display: grid;
  grid-template-columns: minmax(280px, 310px) minmax(0, 560px);
  gap: 46px;
  padding: 108px 56px 120px;
}

body.uniform-layout .biography__photo {
  transform: translate(60px, -20px);
}

body.uniform-layout .biography__photo img {
  height: 350px;
  width: auto;
}

body.uniform-layout .biography__copy {
  width: min(100%, 550px);
  max-width: 550px;
  font-size: 16px;
  transform: translateY(-20px);
}

body.uniform-layout .biography__copy .section-label {
  width: 199px;
}

body.uniform-layout .biography__copy p {
  max-width: 550px;
  font-size: 16px;
  transform: translateY(20px);
}

body.uniform-layout .fictional {
  padding: 0 0 90px;
}

body.uniform-layout .fictional__columns {
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
  width: calc(100% - 60px);
  padding: 0;
}

body.uniform-layout .fictional__column {
  width: min(100%, 420px);
  gap: 40px;
}

body.uniform-layout .fictional__column--left {
  padding-top: 35px;
}

body.uniform-layout .fictional__column--right {
  padding-top: 30px;
}

body.uniform-layout .fictional__stack-handle {
  width: 28px;
}

body.uniform-layout .fictional__banner--left {
  width: calc(100% + 110px);
  margin-left: -112px;
}

body.uniform-layout .fictional__banner--pencil {
  width: calc(100% + 112px);
}

body.uniform-layout .fictional__banner--right {
  width: calc(100% + 112px);
  margin-left: 0;
}

body.uniform-layout .fictional__banner--bottom {
  width: calc(100% + 232px);
  margin-left: -232px;
}

body.uniform-layout .fictional__bottom {
  width: 700px;
  margin: 18px auto 0;
}

body.uniform-layout .fictional__footer-art {
  width: min(100%, 1610px);
  margin: 20px auto -250px;
}

body.uniform-layout .exhibitions {
  margin-top: 350px;
}

body.uniform-layout .exhibitions__panel {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  min-height: 420px;
}

body.uniform-layout .exhibitions__panel--exhi-01 {
  min-height: 470px;
}

body.uniform-layout .exhibitions__copy {
  padding: 92px 48px 70px 48px;
  font-size: 16px;
}

body.uniform-layout .exhibitions__copy p,
body.uniform-layout .exhibitions__list {
  font-size: 16px;
}

body.uniform-layout .exhibitions__media {
  padding: 0 56px 0 0;
  min-height: 100%;
  height: 100%;
  overflow: visible;
}

body.uniform-layout .exhibitions__media--exhi-01 {
  min-height: 480px;
  height: 480px;
}

body.uniform-layout .exhibitions__image,
body.uniform-layout .exhibitions__media img {
  max-height: 420px;
}

body.uniform-layout .exhibitions__media .exhibitions__image--exhi-01 {
  height: 470px;
  max-height: none;
}

body.uniform-layout .exhibitions__nav {
  width: 42px;
  height: 42px;
  margin-top: -21px;
}

body.uniform-layout .exhibitions__nav--prev {
  left: 12px;
}

body.uniform-layout .exhibitions__nav--next {
  right: 70px;
}

body.uniform-layout .exhibitions__bottom {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  padding-top: 42px;
}

body.uniform-layout .exhibitions__bottom .section-label {
  width: 210px;
}

body.uniform-layout .exhibitions__list-item--center {
  transform: translateX(260px);
}

body.uniform-layout .story__panel {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  padding: 56px 0 60px;
}

body.uniform-layout .story__copy {
  padding-left: 78px;
  gap: 24px;
  font-size: 16px;
}

body.uniform-layout .story__copy .section-label {
  width: 200px;
}

body.uniform-layout .story__media {
  justify-content: flex-end;
}

body.uniform-layout .story__media img {
  width: min(100%, 500px);
}

body.uniform-layout .contact__panel,
body.uniform-layout .contact__content {
  min-height: 650px;
}

body.uniform-layout .contact__mail-hitbox {
  left: calc(30% - 140px);
  top: 58%;
  width: calc(38% + 20px);
  height: calc(8.5% + 30px);
}

body.uniform-layout .to-top-layer {
  display: block;
}

@media (max-width: 720px) {
  body.uniform-layout .to-top-layer,
  body.uniform-layout .to-top {
    display: none !important;
  }
}
