:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gold: #CCB458;
  --color-stone: #9A9483;
  --color-gray: #676767;
  --color-blue: #0033A0;
  --color-red: #E33434;
}

:root {
  --imgHoverTiming: 0.15s;
  --fadeInDuration: 1s;
  --fadeInEase: cubic-bezier(0.4, 0, 0.2, 1);
  --fadeInDistance: 4px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in--pending {
  opacity: 0;
}

.fade-in--visible {
  opacity: 1;
  -webkit-transition: opacity var(--fadeInDuration) var(--fadeInEase);
  transition: opacity var(--fadeInDuration) var(--fadeInEase);
}

:root {
  --header-height: 112px;
  --margin-page: 128px;
  --space--section: 108px;
  --space--header-below: 48px;
  --space--text-list-vert: 32px;
  --grid-gap: 64px;
  --grid-gap--row: 0;
  --gap--footer-links: 24px;
  --gap--related: 24px;
  --gap--link: 8px;
  --grid-col-count: 12;
  --inset--x: 48px;
  --inset--y: 48px;
  --modal--inset-img-y: 95px;
}
@media (max-width: 1024px) {
  :root {
    --margin-page: 32px;
    --grid-gap: 32px;
  }
}
:root {
  --mobile-spacer1-above:40px;
  --mobile-spacer1-below:48px;
}
@media (max-width: 768px) {
  :root {
    --margin-page: 24px;
    --space--section: 24px;
    --grid-gap: 32px;
    --grid-col-count: 6;
    --space--text-list-vert: 24px;
    --space--header-below: 24px;
    --inset--x: 24px;
    --inset--y: 24px;
    --mobile-space--bigger:80px;
  }
}

/*=================================
=          BASE IMPORTS           =
=================================*/
@font-face {
  font-family: "Life-AAC";
  src: url("/fonts/Life-Reg.woff2") format("woff2"), url("/fonts/Life-Reg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Life-AAC";
  src: url("/fonts/Life-RegIta.woff2") format("woff2"), url("/fonts/Life-RegIta.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  color: var(--fg);
  text-wrap: pretty;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  font-variant-numeric: oldstyle-nums proportional-nums;
}
body:has(.page--info) {
  background-color: #f2f2f2;
}

section {
  display: grid;
  grid-template-columns: repeat(var(--grid-col-count, 12), 1fr);
  grid-gap: var(--grid-gap);
  row-gap: var(--grid-gap-row);
  -webkit-margin-before: var(--space--section);
          margin-block-start: var(--space--section);
  padding-inline: var(--margin-page);
}
section + section {
  -webkit-margin-before: var(--space--section);
          margin-block-start: var(--space--section);
}
section section {
  padding-inline: 0;
}
section header {
  grid-column: 1/-1;
}
section header > :first-child {
  margin-top: 0;
}
section header > :last-child {
  margin-bottom: 0;
}
section header {
  margin-bottom: var(--space--header-below);
}
section header h2 {
  opacity: 0.4;
}
@supports (text-box-trim: trim-both) {
  section header h2 {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

main > section:first-child {
  -webkit-margin-before: calc(var(--header-height) + 24px);
          margin-block-start: calc(var(--header-height) + 24px);
}

main > section.home__hero:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

article {
  grid-column: 1/-1;
}
article > :first-child {
  margin-top: 0;
}
article > :last-child {
  margin-bottom: 0;
}
article.rte {
  grid-column: 4/-4;
}
@media (max-width: 1024px) {
  article.rte {
    grid-column: 2/-2;
  }
}
@media (max-width: 768px) {
  article.rte {
    grid-column: 1/-1;
  }
}
article.rte p:has(+ ul),
article.rte p:has(+ ol) {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
article.rte .hang-quote {
  text-indent: -0.375em;
}
article.rte ul,
article.rte ol {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  padding-inline: 0.05em;
}
article.rte ul {
  list-style: none;
}
article.rte ul li {
  position: relative;
  padding-left: 1em;
}
article.rte ul li:BEFORE {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 0.5em;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
}
article.rte strong,
article.rte b {
  font-weight: normal;
}

aside > :first-child {
  margin-top: 0;
}
aside > :last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  font-weight: normal;
}

h1 {
  color: var(--color-stone);
}
h1.page__title {
  text-align: center;
  font-family: "Life-AAC", serif;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: normal;
  text-transform: uppercase;
  color: inherit;
}
@supports (text-box-trim: trim-both) {
  h1.page__title {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
h1:has(.page__subtitle) {
  font-style: italic;
}
h1:has(.page__subtitle) .page__subtitle {
  font-style: normal;
  display: block;
}

ul.list {
  list-style: none;
  padding-left: 0.75em;
}
ul.list li {
  position: relative;
}

.hidden-label, .visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

figure {
  margin: 0;
  position: relative;
}
figure img {
  display: block;
  width: 100%;
  height: auto;
}

figcaption,
.specifications {
  font-variant: diagonal-fractions;
}

.mo-over {
  display: none;
}
@media (max-width: 768px) {
  .mo-over {
    display: block;
  }
  .mo-over + img {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--color--link-underline);
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: text-decoration-color, color;
  transition-property: text-decoration-color, color;
}
@media (hover: hover) {
  a:hover {
    color: var(--color-blue);
  }
}
a.presentation__title {
  text-decoration: none;
}
a.overlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
a.anchor__target {
  position: absolute;
  top: -100px;
}
a.link--breadcrumb {
  opacity: 0.54;
}

section.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
section.cards > header {
  margin-bottom: calc(-1 * var(--grid-gap));
}
section.cards .card {
  grid-column: span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
section.cards .card--type {
  color: var(--color-stone);
}
@media (max-width: 768px) {
  section.cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card--title {
  font-style: italic;
}

.subtitle {
  margin-block: 0;
}

section.cards--bibliography a {
  text-decoration: none;
}
@media (max-width: 768px) {
  section.cards--bibliography header h2 {
    margin-bottom: var(--mobile-spacer1-below);
  }
  section.cards--bibliography {
    margin-top: var(--mobile-space--bigger);
  }
}

@media (hover: hover) {
  .card,
  .related__publication {
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
  }
  .card:has(a:HOVER),
  .related__publication:has(a:HOVER) {
    color: var(--color-blue);
  }
}
.gallery {
  grid-column: 1/-1;
  margin-inline: calc(-1 * var(--margin-page));
  margin-block: var(--space--header-below);
}

.gallery__stage {
  position: relative;
  overflow: hidden;
  height: clamp(450px, 70svh, 800px);
}
@media (max-width: 768px) {
  .gallery__stage {
    height: 450px;
  }
}

.gallery__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 8px;
  padding-inline: 50vw;
}

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

.gallery__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 100%;
  scroll-snap-align: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.gallery__slide figure {
  height: 100%;
  width: 100%;
  margin: 0;
}

.gallery__slide figure img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .gallery__slide {
    width: 90vw;
    height: 450px;
  }
  .gallery__slide figure img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/* Invisible nav buttons */
.gallery__nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: transparent;
  border: none;
  padding: 0;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  z-index: 1;
}
@media (max-width: 768px) {
  .gallery__nav {
    display: none;
  }
}

.gallery__nav--prev {
  left: 0;
  cursor: w-resize;
}

.gallery__nav--next {
  right: 0;
  cursor: e-resize;
}

.gallery__nav:disabled {
  cursor: default;
  pointer-events: none;
}

/* Caption */
.gallery__caption {
  margin: 0;
  padding: 0.75rem var(--margin-page);
  text-align: center;
  min-height: 2em;
}

/* Purchase */
.purchase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  grid-column: -4/-1;
  text-align: right;
  color: var(--color-red);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 1024px) {
  .purchase {
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .purchase {
    grid-column: 1/-1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: var(--mobile-spacer1-below);
  }
}

.purchase__price {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
}

.purchase__btn {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: none;
  outline: 0;
  color: inherit;
}

.purchase__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  backdrop-filter: blur(4px);
}

.cart-modal {
  background: var(--color-white);
  width: min(560px, 100vw - 2rem);
  max-height: calc(100vh - 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--inset--y) var(--inset--x);
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cart-modal {
    width: min(710px, 100vw - 2rem);
  }
}

.cart-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}

.cart-modal__header h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

.cart-modal__empty {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-gray);
}

.cart-modal__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}

.cart-modal__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.cart-modal__line-img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .cart-modal__line-img {
    display: none;
  }
}

.cart-modal__line-img--placeholder {
  background: #f0f0f0;
}

.cart-modal__line-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.cart-modal__line-title {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  line-height: 1.3;
}

.cart-modal__qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cart-modal__qty-btn {
  background: none;
  border: none;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  color: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .cart-modal__qty-btn svg path {
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
  }
  .cart-modal__qty-btn:HOVER svg path {
    opacity: 1;
  }
}

.cart-modal__qty-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.cart-modal__qty-input {
  width: 28px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  background: none;
  border: none;
  text-align: center;
  padding: 0;
}

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

.cart-modal__line-price {
  white-space: nowrap;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-modal__subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 1.25rem;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding-top: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .cart-modal__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.cart-modal__tax-note {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  color: var(--color-gray, #888);
}

.cart-modal__checkout {
  display: inline-block;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  color: inherit;
  text-decoration: none;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart-modal__checkout:hover {
  color: var(--color-blue);
}

.cart-modal__error {
  color: #c0392b;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  margin-top: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.newsletter__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.newsletter__form input[type=text],
.newsletter__form input[type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  outline: 0;
  color: inherit;
  border-radius: 0;
  border-bottom: solid 1px black;
  padding-block: 13px;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
}
.newsletter__form input[type=text]::-webkit-input-placeholder, .newsletter__form input[type=email]::-webkit-input-placeholder {
  color: var(--color-stone);
}
.newsletter__form input[type=text]::-moz-placeholder, .newsletter__form input[type=email]::-moz-placeholder {
  color: var(--color-stone);
}
.newsletter__form input[type=text]:-ms-input-placeholder, .newsletter__form input[type=email]:-ms-input-placeholder {
  color: var(--color-stone);
}
.newsletter__form input[type=text]::-ms-input-placeholder, .newsletter__form input[type=email]::-ms-input-placeholder {
  color: var(--color-stone);
}
.newsletter__form input[type=text]::placeholder,
.newsletter__form input[type=email]::placeholder {
  color: var(--color-stone);
}
.newsletter__form input[type=text]:-moz-placeholder, .newsletter__form input[type=email]:-moz-placeholder {
  border-color: var(--color-stone);
}
.newsletter__form input[type=text]:-ms-input-placeholder, .newsletter__form input[type=email]:-ms-input-placeholder {
  border-color: var(--color-stone);
}
.newsletter__form input[type=text]:placeholder-shown,
.newsletter__form input[type=email]:placeholder-shown {
  border-color: var(--color-stone);
}
.newsletter__form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  color: inherit;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  cursor: pointer;
}
@media (hover: hover) {
  .newsletter__form button:HOVER {
    color: var(--color-blue);
  }
}
.newsletter__form:has(input:-moz-placeholder) button {
  opacity: 0;
  pointer-events: none;
}
.newsletter__form:has(input:-ms-input-placeholder) button {
  opacity: 0;
  pointer-events: none;
}
.newsletter__form:has(input:placeholder-shown) button {
  opacity: 0;
  pointer-events: none;
}

.newsletter__label,
.site__credit {
  margin-block: 64px 0;
}

section.related article {
  grid-column: 1/8;
}
section.related aside {
  grid-column: 8/-1;
}
section.related h3 {
  margin-block: 0 var(--gap--link);
  color: var(--color-stone);
}
@supports (text-box-trim: trim-both) {
  section.related h3 {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
@media (max-width: 768px) {
  section.related {
    margin-top: 80px;
  }
  section.related article,
  section.related aside {
    grid-column: 1/-1;
  }
  section.related header + article {
    margin-top: 24px;
  }
  section.related article + aside {
    margin-top: 36px;
  }
}

.related__publication {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: var(--gap--related);
}
@media (max-width: 768px) {
  .related__publication figure {
    max-width: 50%;
    margin-right: auto;
  }
}

.related__publication-link {
  text-decoration: none;
  font-style: italic;
}

.related__publication-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap--link);
}
@supports (text-box-trim: trim-both) {
  .related__publication-text span,
  .related__publication-text p,
  .related__publication-text a {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

.header__primary,
.nav__primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 2;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
@media (hover: hover) {
  .header__primary a:HOVER,
  .nav__primary a:HOVER {
    color: var(--color-blue);
  }
}

.header__primary a {
  text-decoration: none;
}

.nav__toggle {
  display: none;
  position: absolute;
  right: var(--margin-page);
  top: 50%;
  -webkit-transform: translateY(-68%);
      -ms-transform: translateY(-68%);
          transform: translateY(-68%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  letter-spacing: inherit;
  display: block;
}
@media (hover: hover) {
  .nav__toggle {
    display: none;
  }
  .nav__toggle:hover {
    color: var(--color-blue);
  }
}
.nav__toggle svg circle {
  fill: #676767;
}
body:has(.fg-invert.active) .nav__toggle svg circle {
  fill: rgba(255, 255, 255, 0.7);
}

.cart-indicator {
  position: absolute;
  top: 56px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: var(--margin-page);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  z-index: 4;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, color;
  transition-property: opacity, color;
  top: 1.5em;
}
.cart-indicator.cart-indicator--active {
  pointer-events: all;
  opacity: 1;
}
@media (hover: hover) {
  .cart-indicator {
    top: 56px;
  }
  .cart-indicator:hover {
    color: var(--color-blue);
  }
}

nav.nav__primary {
  z-index: 3;
  opacity: 0;
}
@media (hover: hover) {
  nav.nav__primary {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  nav.nav__primary:hover {
    opacity: 1;
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  nav.nav__primary:hover + .header__primary {
    opacity: 0;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
@media (hover: none) {
  nav.nav__primary {
    opacity: 0;
    pointer-events: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    row-gap: 0;
  }
  nav.nav__primary > :first-child {
    display: none;
  }
  nav.nav__primary.nav__primary--open {
    opacity: 1;
    pointer-events: all;
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  nav.nav__primary.nav__primary--open + .header__primary {
    opacity: 0;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
nav .nav__close {
  display: none;
}
@media (hover: none) {
  nav .nav__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: var(--margin-page);
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    letter-spacing: inherit;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (hover: hover) {
  nav .nav__close:hover {
    color: var(--color-blue);
  }
}
nav .nav__close svg path {
  stroke: #676767;
}
body:has(.fg-invert.active) nav .nav__close svg path {
  stroke: rgba(255, 255, 255, 0.7);
}

nav a {
  text-decoration: none;
}

.home__hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.home__hero a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  z-index: 2;
}
.home__hero figure {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.home__hero figure.active {
  opacity: 1;
}
.home__hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__hero figcaption {
  position: absolute;
  bottom: var(--grid-gap, 64px);
  left: 0;
  width: 100%;
  text-align: center;
}
.home__hero figcaption > :first-child {
  margin-top: 0;
}
.home__hero figcaption > :last-child {
  margin-bottom: 0;
}
@supports (text-box-trim: trim-both) {
  .home__hero figcaption {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.home__hero figcaption {
  z-index: 2;
  opacity: 0;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.home__hero .active figcaption {
  opacity: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body:has(.fg-invert.active) {
  color: white;
}
@media (hover: hover) {
  body:has(.fg-invert.active) a:HOVER {
    color: rgba(255, 255, 255, 0.8);
  }
}
body:has(.fg-invert.active) .cart-modal {
  color: black;
}
@media (hover: hover) {
  body:has(.fg-invert.active) .cart-modal a:HOVER {
    color: var(--color-blue);
  }
}

.artist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@supports (text-box-trim: trim-both) {
  .artist__list li {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.artist__list li + li {
  margin-top: var(--gap--link);
}
.artist__list a {
  text-decoration: none;
}

.page--artist header {
  margin-bottom: var(--mobile-spacer1-below);
}
.page--artist h1.page__title {
  margin-bottom: 0;
}

.page--info a {
  text-decoration: none;
}
.page--info article {
  grid-column: 1/span 6;
}
@media (max-width: 768px) {
  .page--info article {
    grid-column: 1/-1;
  }
}
.page--info aside {
  grid-column: 9/-1;
}
@media (max-width: 768px) {
  .page--info aside {
    grid-column: 1/-1;
  }
}

.page--presentation header {
  margin-bottom: var(--space--header-below);
}

.presentations--current > article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.presentations--current > article figure {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.presentations--current > article figure img {
  max-height: 50svh;
  -o-object-fit: contain;
     object-fit: contain;
}
.presentations--current .presentation__title {
  font-style: italic;
}
@media (max-width: 768px) {
  .presentations--current header {
    margin-bottom: 48px;
  }
}

.presentations--past__preview {
  position: sticky;
  grid-column: 7/-1;
  grid-row: 1;
  top: 0;
  height: 0;
  margin-top: -30vh;
  pointer-events: none;
}
.presentations--past__preview .preview__inner {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .presentations--past__preview {
    display: none;
  }
}

nav.presentation__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  grid-column: 1/-1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@supports (text-box-trim: trim-both) {
  nav.presentation__tabs {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
nav.presentation__tabs a {
  text-decoration: none;
}
@supports (text-box-trim: trim-both) {
  nav.presentation__tabs a {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
nav.presentation__tabs a.active {
  color: var(--color-blue);
}
@media (max-width: 768px) {
  nav.presentation__tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-block: 16px var(--mobile-spacer1-below);
  }
}

.presentation__overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1/-1;
  gap: var(--grid-gap);
}
.presentation__overview article {
  grid-column: span 1;
}
.presentation__overview figure {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .presentation__overview article {
    grid-column: 1/-1;
  }
  .presentation__overview figure {
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-inline: calc(-1 * var(--margin-page));
  }
}

@media (max-width: 768px) {
  .presentations--past {
    margin-top: 0;
  }
  .presentations--past header {
    margin-block: var(--mobile-space--bigger) var(--mobile-spacer1-below);
  }
}
@supports (text-box-trim: trim-both) {
  .presentations--past article {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.presentations--past article {
  padding-right: 50%;
}
@media (max-width: 768px) {
  .presentations--past article {
    padding-right: 0;
  }
}
.presentations--past article + article {
  margin-top: var(--space--text-list-vert);
}
.presentations--past__preview img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 50svh;
  -o-object-fit: contain;
     object-fit: contain;
}

.presentation__text--past a {
  text-decoration: none;
}
.presentation__text--past .past__label {
  text-decoration: none;
  font-style: italic;
}

@media (hover: hover) {
  .presentations--current article {
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-property: color;
    transition-property: color;
  }
  .presentations--current article:has(a:HOVER) {
    color: var(--color-blue);
  }
}

.presentation__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  grid-column: 1/-1;
}
@supports (text-box-trim: trim-both) {
  .presentation__grid figcaption {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.presentation__grid figcaption {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}
.presentation__grid .portrait img {
  max-width: 80%;
  margin-inline: auto;
}
.presentation__grid figure a {
  display: block;
}
@media (max-width: 1024px) {
  .presentation__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .presentation__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.modal-backdrop .modal-backdrop__close {
  display: block;
  width: 100%;
  height: 100%;
}

.modal-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(255, 255, 255, 0.95);
}
.modal-lightbox figure {
  height: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-block: var(--modal--inset-img-y, 0);
}
@media (max-width: 768px) {
  .modal-lightbox figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: safe center;
        -ms-flex-pack: safe center;
            justify-content: safe center;
  }
}
.modal-lightbox figure img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (max-width: 768px) {
  .modal-lightbox figure img {
    -webkit-transform: translateY(-24px);
        -ms-transform: translateY(-24px);
            transform: translateY(-24px);
  }
}
.modal-lightbox figure img.image--visible {
  opacity: 1;
}
.modal-lightbox figure figcaption {
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  opacity: 0;
  -webkit-transition: opacity 0.05s ease;
  transition: opacity 0.05s ease;
}
.modal-lightbox figure figcaption br {
  content: " ";
  display: none;
}
.modal-lightbox figure figcaption.caption--visible {
  opacity: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.modal-lightbox figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 210px);
  display: block;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-inline: var(--inset--x);
}
@supports (text-box-trim: trim-both) {
  .modal-lightbox figure figcaption {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.modal-lightbox figure figcaption {
  padding-top: 3px;
  padding-bottom: 42px;
}
@media (max-width: 768px) {
  .modal-lightbox figure figcaption {
    bottom: 10px;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 1em;
    text-align: center;
    padding-bottom: 40px;
  }
}
.modal-lightbox nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: var(--inset--y) var(--inset--x);
  gap: 2.5em;
}

.modal-lightbox__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
}
.modal-lightbox__controls > * {
  display: block;
}
@supports (text-box-trim: trim-both) {
  .modal-lightbox__controls > * {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
@media (max-width: 768px) {
  .modal-lightbox__controls {
    width: 100%;
  }
}

.modal-lightbox__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.modal-lightbox__nav a,
.modal-lightbox__nav span {
  display: block;
}
@supports (text-box-trim: trim-both) {
  .modal-lightbox__nav a,
  .modal-lightbox__nav span {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.modal-lightbox__nav .disabled {
  pointer-events: none;
  color: var(--color-stone);
}

.modal-lightbox__close {
  text-decoration: none;
  position: absolute;
  top: var(--inset--y);
  right: var(--inset--x);
}
@supports (text-box-trim: trim-both) {
  .modal-lightbox__close {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}
.modal-lightbox__close {
  z-index: 2;
}

.read-more__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 1em 0 0;
  font-family: "Life-AAC", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: normal;
  cursor: pointer;
}
@media (hover: hover) {
  .read-more__toggle:HOVER {
    color: var(--color-blue);
  }
}

.gallery__caption--inner {
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}
.gallery__caption ul {
  padding: 0 1em;
}

.related__publication-link {
  margin-right: auto;
}

@media (max-width: 768px) {
  section.page--publication header {
    margin-bottom: var(--mobile-spacer1-below);
  }
  section.page--publication .purchase {
    margin-top: -8px;
  }
}
.footer {
  padding-block: 150px 36px;
  -webkit-margin-before: auto;
          margin-block-start: auto;
}
body:has(.home__hero) .footer {
  display: none;
}
.footer aside {
  grid-column: 1/span 2;
}
.footer article {
  grid-column: 3/-3;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--gap--footer-links);
}
.footer .copyright {
  grid-column: -2/-1;
  text-align: right;
}
.footer a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-block: 80px 36px;
  }
  .footer article {
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer aside,
  .footer .copyright {
    grid-column: span 1;
  }
}/*# sourceMappingURL=styles.css.map */