/* Font Families */

@font-face {
  font-family: "Untitled Sans Medium";
  src: url("../fonts/UntitledSans-Medium.eot");
  src: url("../fonts/UntitledSans-Medium.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/UntitledSans-Medium.woff2") format("woff2"),
    url("../fonts/UntitledSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Root Elements */

:root {
  --F120: 7.5rem;
  --F40: 2.5rem;
  --F19: 1.225rem;
  --Fb: 0.833rem;
  --black: #000000;
  --white: #ffffff;
  --fg: var(--black);
  --bg: var(--white);
  --Pm: 1.25rem;
  --Pg: 1.25rem;
  --Ph: calc(0.5 * var(--Pg));
  --Pd: calc(2 * var(--Pg));
  --Hh: 4.375rem;
  --vh: 100vh;
  --Hs: calc(var(--vh) - var(--Hh));
  --Wf: calc(100% + (2 * var(--Pg)));
  --Wg: calc(100% + var(--Pg));
  --Ml: calc(-1 * var(--Pg));
  --Gm: repeat(16, 1fr);
  --Gf: 1/17;
}

@supports (height: 100dvh) {
  :root {
    --vh: 100dvh;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

textarea,
input,
button,
select {
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

textarea {
  resize: none;
}

input:not([type="submit"]),
textarea {
  display: block;
  width: 100%;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  background: none;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  color: var(--fg);
  margin: 0;
  padding: 0;
}

select option {
  color: var(--fg);
  margin: 0;
  padding: 0;
  background: var(--bg);
}

select:focus {
  outline: none;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

/* Input Elements */

button,
input[type="submit"],
input[type="reset"],
div[role="button"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="button"],
input[type="button"]:focus {
  outline: none;
}

a:link,
a:visited,
a:link span,
a:visited span {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/* Details Elements */

summary,
summary:focus {
  outline: none;
  list-style-type: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

details summary::marker,
details summary::-webkit-details-marker {
  content: "";
  visibility: hidden;
  position: absolute;
  z-index: -10;
  list-style-type: none;
  display: none;
}

summary > * {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

summary > *::after {
  content: "+";
  margin-left: var(--Pm);
}

@media (hover: hover) and (pointer: fine) {
  details summary:hover {
    opacity: 0.5;
  }
}

details[open] summary > *::after {
  content: "-";
}

details[open] summary ~ * {
  animation: appear 0.4s ease-in;
  -webkit-animation: appear 0.4s ease-in;
}

details.closing summary ~ * {
  animation: close 0.4s ease-out;
}

@keyframes appear {
  0% {
    opacity: 0;
    max-height: 0;
  }

  100% {
    opacity: 1;
    max-height: 100vh;
  }
}

@keyframes close {
  0% {
    opacity: 1;
    max-height: 100vh;
  }

  100% {
    opacity: 0;
    max-height: 0;
  }
}

/* Image/Video Elements */

.aspectholder > * {
  display: block;
}

.vsc-controller {
  height: 0 !important;
  width: 0 !important;
  -o-object-fit: unset !important;
  object-fit: unset !important;
}

/* Universal Elements */

html {
  font-size: 16px;
  font-family: "Untitled Sans Medium", "Arial", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.23;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color: var(--fg);
  background: var(--bg);
  overscroll-behavior: none;
  -webkit-overflow-behavior: none;
}

/* Universal Text Styling */

h1,
h2,
h3,
h4,
p,
a,
input,
button,
span {
  font-size: var(--Fb);
  line-height: 1.23;
}

.font_120,
.richtext.font_120 * {
  font-size: var(--F120);
  line-height: 1;
}

.font_40,
.richtext.font_40 * {
  font-size: var(--F40);
  line-height: 1;
}

.font_19,
.richtext.font_19 * {
  font-size: var(--F19);
  line-height: 1.32;
}

.font_b,
.richtext.font_b * {
  font-size: var(--Fb);
  line-height: 1.23;
}

.font_up {
  text-transform: uppercase;
}

.font_fade {
  opacity: 0.5;
}

.font_blend {
  color: var(--white) !important;
  mix-blend-mode: difference;
}

.font_blend svg path {
  fill: var(--white);
}

.richtext > * {
  min-height: 1em;
}

.richtext > *:not(:last-child) {
  margin-bottom: 1em;
}

.richtext ul {
  margin-left: 1rem;
}

.richtext ul li {
  list-style: circle;
}

/* Link Elements */

@media (hover: hover) and (pointer: fine) {
  a.link_anchor:hover,
  .link_anchor a:hover,
  button.link_anchor:hover,
  .link_anchor button:hover {
    opacity: 0.5;
  }
}

a.link_reverse,
.link_reverse a,
button.link_reverse,
.link_reverse button {
  opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  a.link_reverse:hover,
  .link_reverse a:hover,
  button.link_reverse:hover,
  .link_reverse button:hover {
    opacity: 1;
  }
}

/* Card Styling */

.card {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}

.card__heading > *:nth-child(even) {
  text-align: right;
}

.card .aspectholder {
  width: 100%;
  height: 100%;
}

.card .aspectholder > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.works__card {
  aspect-ratio: 158/236;
  overflow: hidden;
}

/* exhibitions page */

.exhibitions__index-container {
  display: none;
  grid-template-columns: repeat(16, 1fr);
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  row-gap: 1.25rem;
}

.exhibitions__index-container.active {
  display: grid;
}

.exhibitions__index-titles {
  grid-column: 1/-1;
}

.exhibitions__index-titles a {
  display: block;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.exhibitions__index-titles p {
  transition: all 0.3s ease;
  opacity: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.exhibitions__index-titles p.active {
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: translateX(30px);
}

.exhibitions__index-imagery {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  grid-column: 10/14;
  width: 100%;
}

.exhibitions__index-imagery .index-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.exhibitions__index-imagery .index-image.active {
  display: block;
}

.exhibitions__index-imagery img {
  aspect-ratio: 335/480;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.works__card .card__heading {
  top: 1.25rem;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
}

.art__card {
  aspect-ratio: 335/500;
}

.art__card .card__heading {
  bottom: 0.75rem;
  left: 0.75rem;
  width: calc(100% - 1.5rem);
  opacity: 0;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .art__card .card__heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
  .art__card .card__heading > *:nth-child(even) {
    text-align: left;
  }
}

@media (min-width: 1441px) and (max-width: 1640px) {
  .art__card .card__heading {
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .art__card:hover .card__heading {
    opacity: 1;
  }
}

/* Forms */

.form_form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
}

.form_fields {
  grid-column: 1/6;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  width: 100%;
}

.form_field {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid;
}

.form_field :focus {
  outline: none;
}

.form_submit {
  grid-column: 6/7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form_response {
  grid-column: 1/7;
}

/* Splash Styling */

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 100000;
  transition: all 0s 1s, background-color 0.1s;
}

.splash.loading {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  background-color: var(--bg);
}

.splash__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.splash__left {
  padding-left: 4.625rem;
  transform: translateY(-100%);
}

.splash__right {
  align-items: flex-end;
  padding-right: 4.625rem;
  transform: translateY(100%);
}

.splash.loading .splash__inner {
  transform: translateY(0%);
}

.splash__inner .aspectholder {
  width: calc(100vw - 9.25rem);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.splash.alt .splash__inner .aspectholder:nth-child(2) {
  display: none;
}

.splash__inner .aspectholder > * {
  width: 100%;
  height: auto;
}

/* Main Styling */

.page-content {
  min-height: var(--vh);
  display: flex;
  flex-direction: column;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  overscroll-behavior: none;
  -webkit-overflow-behavior: none;
}

body.loading,
body.active {
  overflow: hidden;
}

header,
main section,
footer {
  display: grid;
  grid-template-columns: var(--Gm);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  align-items: flex-start;
  position: relative;
  width: 100%;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: var(--Pg);
  color: var(--fg);
}

section[data-type="homepage"] {
  padding: var(--Pg), 0;
  min-height: 100dvh;
  overflow: hidden;
}

main section:not(:last-child) {
  margin-bottom: 1.25rem;
}

/* Header */

header {
  grid-auto-rows: 1fr;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--Hh);
  z-index: 10;
}

header button,
header a,
header span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1 !important;
}

.header__page {
  grid-column: 1/7;
}

.header__site {
  grid-column: 10/15;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.45s;
}

.header__site.active {
  transform: translateX(calc(-100% - 32px));
}

.header__menu {
  grid-column: 15/17;
  display: flex;
  justify-self: flex-end;
  position: relative;
}

.header__menu-close {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .header__menu:hover .header__menu-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.header__menu-btn > span:nth-child(1) {
  display: block;
}

.header__menu-btn > span:nth-child(2) {
  display: none;
}

.header__menu-nav {
  white-space: nowrap;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.625rem;
  position: absolute;
  top: 0;
  right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: right;
}

@media (hover: hover) and (pointer: fine) {
  .header__menu:hover .header__menu-nav,
  .header__menu-nav:hover {
    display: flex;
  }
}

.contact {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--vh);
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 0s 0.45s;
}

.contact.active {
  opacity: 1;
  visibility: visible;
  transition: all 0s;
}

.contact__btn {
  flex: 1 1 auto;
  height: 100%;
  cursor: e-resize;
}

.contact__inner {
  --fg: var(--white);
  --bg: var(--black);
  display: flex;
  flex-direction: column;
  row-gap: 7.375rem;
  width: 552px;
  height: 100%;
  color: var(--fg);
  background-color: var(--bg);
  padding: 1.25rem var(--Pg);
  transform: translateX(100%);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: all 0.45s;
}

.contact__inner::-webkit-scrollbar {
  display: none;
}

.contact.active .contact__inner {
  transform: translateX(0%);
}

.contact nav {
  display: flex;
  flex-direction: column;
}

.contact nav a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact__inner .aspectholder {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.contact__inner .aspectholder > * {
  width: 100%;
  height: auto;
}

.bio {
  display: grid;
  grid-template-columns: var(--Gm);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  align-items: flex-start;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.25rem var(--Pg);
  opacity: 0;
  visibility: hidden;
  z-index: 6;
}

.bio:not(.font_blend) {
  background-color: var(--bg);
}

.bio.active {
  opacity: 1;
  visibility: visible;
}

.bio__text {
  grid-column: 1/13;
}

.bio__button {
  grid-column: 16/17;
  justify-self: flex-end;
}

.bio__button svg {
  width: 8px;
  height: 8px;
}

.bio:not(.font_blend) .bio__button svg path {
  fill: var(--fg);
}

/* Pages */

.page-margin_top {
  margin-top: calc(var(--Hh) + 8.5rem);
}

.page-padding_top {
  padding-top: calc(var(--Hh) + 8.5rem);
}

/* Home Page */
[data-template="home"] header {
  display: none;
}

.home__container {
  grid-column: var(--Gf);
  display: flex;
  width: var(--Wf);
  height: var(--vh);
  margin-left: var(--Ml);
  overflow: hidden;
  background-color: var(--black);
}

.home__container-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  width: 100%;
  transition: z-index 0s 0.6s;
}

@media (hover: hover) and (pointer: fine) {
  .home__container-item:hover {
    z-index: 4;
    transition: z-index 0s;
  }
}

.home__container-item a {
  z-index: 2;
}

.home__container-item .aspectholder {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.home__container-item:first-child .aspectholder {
  left: 0;
}

.home__container-item:last-child .aspectholder {
  right: 0;
}

@media (hover: hover) and (pointer: fine) {
  .home__container-item a:hover + .aspectholder {
    width: 200%;
  }
}

.home__container-item .aspectholder > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Works Page */
[data-type="workspage"] {
  padding-bottom: var(--Pg);
}

.works__container {
  grid-column: var(--Gf);
  display: grid;
}

.works__container > * {
  grid-column: 1/2;
  grid-row: 1;
}

.works__grid {
  display: none;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  row-gap: 1.25rem;
}

.works__grid.active {
  display: grid;
}

.works__grid-categories {
  grid-template-columns: repeat(3, 1fr);
}

.works__grid-index {
  grid-template-columns: repeat(8, 1fr);
}

.page-nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 0.25rem;
  position: fixed;
  bottom: 1.25rem;
  left: var(--Pg);
  max-width: calc(50% - var(--Pg));
  z-index: 5;
}

.page-nav.inactive {
  display: none;
}

.page-nav__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.page-nav__inner nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.page-nav__inner nav .link_anchor:not(.active) {
  opacity: 0.5;
}

.page-nav__inner nav .link_anchor:not(.active):hover {
  opacity: 1;
}

/* Work Page */
[data-template="work"] {
  padding-bottom: 1.25rem;
}

/* [data-template="work"] header:not(.fix) {
  position: relative;
}

[data-template="work"] header:not(.fix) .header__site {
  position: fixed;
} */

/* [data-template="work"] .page-margin_top {
  margin-top: 7.25rem;
} */

[data-type="workpage"] {
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: var(--Hh);
  left: var(--Pg);
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 6;
}

[data-type="workpage"].single {
  top: 4.375rem !important;
}

[data-type="workpage"].double {
  top: 5.375rem !important;
}

.work__heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.exhibition__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 43px;
}

/* .exhibition__heading p {
  width: 400px;
} */

[data-type="workpage"] .aspectholder {
  grid-column: 7/17;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

[data-type="workpage"] .aspectholder > * {
  width: 100%;
  height: auto;
}

/* Art Page */
[data-type="artpage"] {
  min-height: var(--vh);
  overflow: hidden;
  color: var(--fg);
  background-color: var(--bg);
  padding-bottom: var(--Pg);
}

[data-type="artpage"].theme_dark {
  --fg: var(--white);
  --bg: var(--black);
}

.art__container {
  grid-column: var(--Gf);
  display: grid;
}

.art__container > * {
  grid-column: 1/2;
  grid-row: 1;
}

.art__canvas {
  display: none;
  position: absolute;
  top: 0;
  left: var(--Ml);
  /* width: 0;
  height: 0; */
  /* -ms-overflow-style: none;
  scrollbar-width: none; */
  height: var(--vh);
  width: 100vw;
}

/* .art__canvas::-webkit-scrollbar {
  display: none;
} */

.art__canvas-inner {
  width: 150vw;
  height: var(--vh);
  left: -20vw !important;
  /* top: -40vh!important; */
}

.art__canvas-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  z-index: 10;
  pointer-events: none;
}

/* .art__canvas-position {
  position: fixed;
  z-index: 4;
}

.art__canvas-top {
  top: 0;
  left: 100px;
  width: calc(100% - 200px);
  height: 100px;
}

.art__canvas-right {
  top: 100px;
  right: 0;
  width: 100px;
  height: calc(var(--vh) - 200px);
}

.art__canvas-bottom {
  bottom: 0;
  left: 100px;
  width: calc(100% - 200px);
  height: 100px;
}

.art__canvas-left {
  top: 100px;
  left: 0;
  width: 100px;
  height: calc(var(--vh) - 200px);
}

.art__canvas-top_left {
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.art__canvas-top_right {
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
}

.art__canvas-bottom_right {
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
}

.art__canvas-bottom_left {
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
} */

.art__canvas.active {
  display: block;
}

.art__canvas .art__card {
  position: absolute;
  top: var(--cVert);
  left: var(--cHor);
  width: var(--cW);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: unset;
  pointer-events: all;
  /* transform: translate(-50%, -50%); */
}

/* .art__canvas.click .art__card {
  pointer-events: none;
} */

.art__canvas .art__card .aspectholder {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.art__canvas .art__card .aspectholder > * {
  height: auto;
  -o-object-fit: unset;
  object-fit: unset;
}

.art__grid-container {
  display: none;
  flex-direction: column;
  row-gap: 6rem;
}

.art__grid-container.active {
  display: flex;
}

.art__grid-item {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}

.art__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  row-gap: 1.25rem;
}

.art__grid-empty-item {
  display: block;
}

.art__nav-right {
  left: calc(50% + (var(--Pm) / 2));
}

.lightbox {
  position: fixed;
  z-index: 1000;
}

.lightbox-image figure {
  display: none;
}

.lightbox-image figure.active {
  display: block;
  max-width: 70vw;
}

.lightbox-buttons {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.lightbox-buttons.active {
  display: flex;
}

.lightbox-buttons figure {
  width: 115px !important;
  height: 145px !important;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lightbox-buttons figure.active {
  opacity: 1;
}

.lightbox__item {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh);
  overflow: hidden;
  background-color: var(--bg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.3s; */
}

.lightbox__item.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__item-line {
  display: grid;
  grid-template-columns: var(--Gm);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -moz-column-gap: var(--Pm);
  column-gap: var(--Pm);
  width: 100%;
  padding: 0 var(--Pg);
}

.lightbox__item-col1 {
  grid-column: 1/5;
}

.lightbox__item-col2 {
  grid-column: 5/9;
}

.lightbox__item-col23 {
  grid-column: 5/13;
}

.lightbox__item-col3 {
  grid-column: 9/13;
}

.lightbox__item-col4 {
  grid-column: 13/17;
}

.lightbox__item-spread {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  width: 100%;
}

.lightbox__item-media {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 1.25rem var(--Pg);
}

.lightbox__item-media button {
  position: fixed;
  top: 1.25rem;
  left: unset;
  right: var(--Pg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}

.lightbox__item-media .aspectholder {
  width: 100%;
  height: 100%;
}

.lightbox__item-media .lightbox-image .aspectholder > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.lightbox__item-media .lightbox-buttons .aspectholder > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.art__lightbox-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 2;
  transition: all 0.3s;
}

.purchase-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-items: end;
  text-align: end;
}
.purchase-text {
  display: block;
  text-align: end;
}

.stripe-text {
  display: none;
  white-space: nowrap;
}

.stripe-text svg {
  width: auto;
  height: 30px;
}

@media (hover: hover) and (pointer: fine) {
  .art__lightbox-info:hover {
    background-color: var(--bg);
    padding: 2.5rem 0 0 0;
  }

  .art__lightbox-info:hover .purchase-text {
    display: none;
  }

  .art__lightbox-info:hover .stripe-text {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-right: -8px;
  }
}

.art__lightbox-toggle {
  display: none;
}

.art__lightbox-info_upper {
  align-items: flex-end;
}

.art__lightbox-info_min {
  opacity: 0;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .art__lightbox-info:hover .art__lightbox-info_min {
    opacity: 1;
  }
}

.art__lightbox-info_lower {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .art__lightbox-info:hover .art__lightbox-info_lower {
    margin-top: 2.375rem;
    padding-bottom: 2.5rem;
    height: 432px;
  }
}

.art__lightbox-info_text {
  display: flex;
  flex-direction: column;
  row-gap: 43px;
  height: inherit;
  /* height: calc(432px + 2.5rem); */
}

.art__lightbox-info_body {
  flex: 1 1 auto;
  padding-bottom: 2.5rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.art__lightbox-info_body::-webkit-scrollbar {
  display: none;
}

.art__lightbox-info_price-mob {
  display: none;
}

/* Blocks */

/* Media Block */

.media__item:first-of-type {
  grid-column-start: var(--mStart);
}

.media__item.width_small {
  grid-column-end: span 4;
}

.media__item.width_med {
  grid-column-end: span 8;
}

.media__item.width_large {
  grid-column-end: span 10;
}

.media__item.width_full {
  grid-column: var(--Gf);
}

.media__item-btn {
  display: flex;
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.media__item-btn .media_item-heading {
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  max-width: calc(100% - 1.25rem);
  opacity: 0;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .media__item-btn:hover .media_item-heading {
    opacity: 1;
  }
}

.media__item-btn .aspectholder {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.media__item-btn .aspectholder > * {
  width: 100%;
  height: auto;
}

.media__lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh);
  padding: 1.25rem var(--Pg);
  background-color: var(--bg);
  opacity: 0;
  visibility: hidden;
  z-index: 8;
}

.media__lightbox.active {
  opacity: 1;
  visibility: visible;
}

.media__lightbox-heading {
  position: absolute;
  bottom: 1.25rem;
  left: var(--Pg);
  z-index: 2;
}

.media__lightbox-media {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.media__lightbox-media button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.media__lightbox-media button span {
  display: none;
}

.media__lightbox-media .aspectholder {
  width: 100%;
  height: 100%;
}

.media__lightbox-media .aspectholder > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* klaviyo */
.klaviyo-form-holder {
  position: absolute;
  bottom: 70px;
  left: var(--Pg);
  z-index: 5;
}
.klaviyo-form [data-testid="form-row"]:last-of-type {
  display: none !important;
}
.klaviyo-form {
  grid-column: 1/9;
  max-width: 300px;
}
.klaviyo-form input {
  padding: 0 !important;
  border-bottom: 1px solid white !important;
  min-width: 300px !important;
}
.klaviyo-form input:hover {
  border-bottom: 1px solid white !important;
}
.klaviyo-form button {
  position: relative !important;
  left: 20px !important;
}

@media screen and (max-width: 1023px) {
  .klaviyo-form-holder {
    bottom: var(--Pg);
  }
}
