:root {
  color-scheme: light;
  font-family:
    "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* Page canvas color — set here only; lower layers stay transparent. */
  --site-bg: #f4f4f4;
  background: #f4f4f4;
  color: #fff;
  scrollbar-color: #d6d6d6 var(--site-bg);
  --page-margin: 2rem;
  --site-header-top: var(--page-margin);
  --page-content-side: var(--page-margin);
  /* Gallery gap is set on .sculpture-layout--gallery (container cqi units). */
  --gallery-gap: 1.5rem;
  --site-header-title-size: 1.5rem;
  --site-header-title-leading: 1.1;
  --site-header-block-width: 14rem; /* determines distance between gallery and header */
  --site-header-side: var(--page-content-side);
  --site-header-title-nav-gap: 2rem;
  --site-nav-toggle-icon-width: 23px;
  --site-nav-toggle-bar-offset: 8px;
  --site-nav-toggle-icon-height: calc(2 * var(--site-nav-toggle-bar-offset) + 2px);
  --site-nav-toggle-hit-size: 43px;
  --site-nav-toggle-hit-pad-x: calc(
    (var(--site-nav-toggle-hit-size) - var(--site-nav-toggle-icon-width)) / 2
  );
  --site-nav-toggle-hit-pad-y: calc(
    (var(--site-nav-toggle-hit-size) - var(--site-nav-toggle-icon-height)) / 2
  );
  --site-header-menu-top: calc(
    var(--site-header-top)
    + var(--site-header-title-size) * var(--site-header-title-leading)
    + var(--site-header-title-nav-gap)
  );
  --site-nav-font-size: 0.95rem;
  --site-nav-line-height: 1.2;
  --site-nav-item-gap: 0.55rem;
  --site-nav-link-padding-bottom: 0.3rem;
  --site-nav-item-height: calc(
    var(--site-nav-font-size) * var(--site-nav-line-height) + var(--site-nav-link-padding-bottom)
  );
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #d6d6d6;
}

html {
  scrollbar-gutter: stable;
}

html:has(body.body--home) {
  scrollbar-gutter: auto;
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  background: transparent;
}

body:has(.page.sculpture-layout--gallery) {
  --page-scrollbar-visual-correction: 0.25rem;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: var(--site-header-top);
  left: var(--site-header-side);
  width: var(--site-header-block-width);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--site-header-title-nav-gap);
  color: #111;
  text-shadow: none;
}

.site-header__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.site-nav-toggle {
  display: none;
  flex-shrink: 0;
  width: var(--site-nav-toggle-hit-size);
  height: var(--site-nav-toggle-hit-size);
  margin-top: 0;
  margin-right: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.site-nav-toggle__icon,
.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
  display: block;
  width: var(--site-nav-toggle-icon-width);
  height: 2px;
  background: #111;
  content: "";
}

.site-nav-toggle__icon {
  position: relative;
}

.site-nav-toggle__icon::before {
  position: absolute;
  top: calc(-1 * var(--site-nav-toggle-bar-offset));
  left: 0;
}

.site-nav-toggle__icon::after {
  position: absolute;
  top: var(--site-nav-toggle-bar-offset);
  left: 0;
}

.site-header.is-nav-open .site-nav-toggle__icon {
  background: transparent;
}

.site-header.is-nav-open .site-nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .site-nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header__title {
  font-size: var(--site-header-title-size);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: var(--site-header-title-leading);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--site-nav-item-gap);
  font-size: var(--site-nav-font-size);
  line-height: var(--site-nav-line-height);
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-nav__link {
  position: relative;
  padding-bottom: var(--site-nav-link-padding-bottom);
  text-decoration: none;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav__link:is(:hover, :focus-visible, .is-active)::after {
  opacity: 1;
  transform: scaleX(1);
}

.home {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  --hero-fade-duration: 1.6s;
  transition: opacity var(--hero-fade-duration) ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  object-fit: cover;
}

.hero__image--ken-burns {
  transform: scale(1.03);
  animation: ken-burns var(--hero-ken-burns-duration, 10s) ease-out forwards;
  animation-play-state: paused;
}

.hero__slide.is-active .hero__image--ken-burns {
  animation-play-state: running;
}

.hero__caption {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--empty {
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.intro {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
  color: #111;
}

.page {
  --page-content-top: clamp(9rem, 16vw, 13rem);
  --page-content-offset: calc(var(--site-header-block-width) + var(--site-header-top));
  --page-column-width: calc(
    100% - var(--page-content-offset) + var(--page-scrollbar-visual-correction, 0rem)
  );
  min-height: 100vh;
  padding: var(--page-content-top) var(--page-content-side) 4rem;
  color: #111;
}

.page.sculpture-layout--artwork {
  --page-content-top: var(--site-header-menu-top);
  --artwork-content-width: min(75%, 42rem);
}

.page.sculpture-layout--gallery {
  --page-content-top: var(--page-content-side);
}

.sculpture-layout--gallery {
  --gallery-gap-ratio: 0.25;
  --gallery-row-height-min: 16rem;
  --gallery-row-height-max: 22rem;
  --gallery-row-height: clamp(
    var(--gallery-row-height-min),
    38cqi,
    var(--gallery-row-height-max)
  );
  --gallery-grid-max: calc(102rem + var(--page-scrollbar-visual-correction, 0rem));
}

/* @media (width <= 539px) {
  .sculpture-layout--gallery {
    --gallery-gap-ratio: 0.2;
  }
} */

.sculpture-layout--gallery .sculpture-layout__inner {
  container-type: inline-size;
  container-name: gallery;
  gap: 0;
  width: min(100%, var(--page-column-width), var(--gallery-grid-max));
}

.sculpture-layout--artwork .sculpture-layout__intro {
  width: var(--artwork-content-width);
  max-width: 100%;
}

.page__header h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.page__header p,
.page__placeholder {
  max-width: 40rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.sculpture-layout {
  --stack-gap: clamp(1rem, 2vw, 1.5rem);
  --sculpture-content-width: min(100%, var(--page-column-width), 56rem);
}

.sculpture-layout__inner {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  width: min(100%, var(--page-column-width), 56rem);
  margin-left: var(--page-content-offset);
}

.sculpture-layout__preface {
  min-height: 1lh;
  font-size: 0.78rem;
  line-height: 1.2;
}

.sculpture-layout__intro {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
}

.sculpture-layout__intro > *,
.sculpture-layout__header > * {
  margin: 0;
}

.sculpture-layout__header {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  width: var(--sculpture-content-width);
  max-width: 100%;
}

.sculpture-layout__header h1,
.sculpture-layout__intro h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.artwork-meta {
  display: grid;
  grid-template-columns: 30% repeat(3, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 0;
}

.artwork-meta div {
  min-width: 0;
}

.artwork-meta__title h1 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.artwork-meta dt {
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-meta dd {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.gallery-masonry {
  --gallery-gap: calc(var(--gallery-row-height) * var(--gallery-gap-ratio));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gallery-gap);
  align-items: flex-end;
  width: 100%;
  margin: 0;
}

.gallery-masonry__item {
  position: relative;
  flex: 0 1 auto;
  margin: 0;
}

.gallery-masonry__trigger {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.gallery-masonry__caption {
  position: absolute;
  top: calc(100% + var(--gallery-gap) * 0.05);
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-inline: auto;
  padding: 0;
  color: #111;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-masonry__caption-title,
.gallery-masonry__caption-year {
  overflow: hidden;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (width <= 699px) {
  .gallery-masonry__caption {
    top: calc(100% + var(--gallery-gap) * 0.15);
  }
}

.gallery-masonry__caption-title {
  text-align: left;
}

.gallery-masonry__caption-year {
  flex-shrink: 0;
  text-align: right;
  opacity: 0.72;
}

.gallery-masonry__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: var(--gallery-row-height);
  object-fit: contain;
  background: transparent;
  filter: grayscale(100%);
  transition: filter 200ms ease;
}

@media (min-width: 541px) and (max-width: 699px) {
  .gallery-masonry {
    display: block;
  }

  .gallery-masonry__item {
    margin: 0 0 var(--gallery-gap);
  }

  .gallery-masonry__trigger,
  .gallery-masonry__item img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.gallery-masonry__trigger:is(:hover, :focus-visible, .is-scroll-focus) img {
  filter: grayscale(0%);
}

.gallery-masonry__item:has(.gallery-masonry__trigger:is(:hover, :focus-visible, .is-scroll-focus))
  .gallery-masonry__caption {
  opacity: 1;
}

.gallery-lightbox:not([open]) {
  display: none;
}

.gallery-lightbox {
  --lightbox-cursor-prev: url('../cursors/lightbox-prev.svg') 16 16, pointer;
  --lightbox-cursor-next: url('../cursors/lightbox-next.svg') 16 16, pointer;
  --lightbox-cursor-info: url('../cursors/info-cursor.svg') 11 11, help;
}

.gallery-lightbox[open] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: clamp(0.5rem, 2vw, 1.25rem);
  border: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: rgb(0 0 0 / 0.82);
}

.gallery-lightbox__figure {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.gallery-lightbox__media {
  position: relative;
  display: inline-grid;
  place-items: center;
  max-width: 100%;
  max-height: min(96vh, calc(100vh - 1rem));
  background: #000;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(96vh, calc(100vh - 1rem));
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 200ms ease;
}

.gallery-lightbox__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-content: center;
  gap: 0.65rem;
  width: min(var(--lightbox-caption-zone, 10rem), 100%);
  max-width: 100%;
  max-height: 100%;
  padding: 0.75rem 1rem;
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.gallery-lightbox__title {
  font-size: clamp(0.8rem, 1vw, 1rem);
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gallery-lightbox__details {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  width: 100%;
  text-align: left;
}

.gallery-lightbox__detail {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) 1fr;
  gap: 0.65rem;
  align-items: baseline;
  margin: 0;
}

.gallery-lightbox__detail dt {
  margin: 0;
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gallery-lightbox__detail dd {
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.gallery-lightbox__media.is-caption-open .gallery-lightbox__image {
  opacity: 0.28;
}

.gallery-lightbox__media.is-prev-zone-hover .gallery-lightbox__image {
  cursor: var(--lightbox-cursor-prev);
}

.gallery-lightbox__media.is-next-zone-hover .gallery-lightbox__image {
  cursor: var(--lightbox-cursor-next);
}

.gallery-lightbox__media.is-next-zone-reversed-hover .gallery-lightbox__image {
  cursor: var(--lightbox-cursor-prev);
}

.gallery-lightbox__media.is-prev-zone-reversed-hover .gallery-lightbox__image {
  cursor: var(--lightbox-cursor-next);
}

.gallery-lightbox__media.is-caption-zone-hover .gallery-lightbox__image {
  cursor: var(--lightbox-cursor-info);
}

.gallery-lightbox__media.is-caption-open .gallery-lightbox__caption:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  cursor: var(--lightbox-cursor-info);
}

.gallery-lightbox__close {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  color: #111;
  background: none;
  font: inherit;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-lightbox__media.is-close-zone-hover .gallery-lightbox__image {
  cursor: pointer;
}

.gallery-lightbox__media.is-close-zone-hover .gallery-lightbox__close,
.gallery-lightbox__close:is(:hover, :focus-visible) {
  opacity: 0.85;
}

.gallery-lightbox__close:is(:hover, :focus-visible) {
  opacity: 1;
}

.sculpture-layout--artwork .sculpture-layout__media {
  display: contents;
}

.artwork-gallery__item {
  width: var(--artwork-content-width, min(75%, 42rem));
  margin: 0;
}

.artwork-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes ken-burns {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.12);
  }
}

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

  .hero__image--ken-burns {
    animation: none;
  }
}

@media (width <= 540px) {
  .site-header {
    --site-mobile-nav-inset: 0.35rem;
  }

  .site-header {
    right: auto;
    left: var(--page-content-side);
    width: calc(
      100% - (2 * var(--page-content-side)) + var(--page-scrollbar-visual-correction, 0rem)
    );
    max-width: none;
    align-items: stretch;
  }

  .site-header.is-nav-open {
    background: color-mix(in srgb, var(--site-bg) 75%, transparent);
    backdrop-filter: blur(6px);
  }

  .site-header__bar {
    box-sizing: border-box;
    flex-direction: row-reverse;
    width: 100%;
    padding-inline: var(--site-mobile-nav-inset);
  }

  .site-header__title {
    text-align: right;
    margin-top: 1px;      /* down */
    margin-right: -3.5px;     /* right (negative = toward viewport edge) */
  }

  .site-nav-toggle {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: var(--site-nav-toggle-hit-size);
    height: var(--site-nav-toggle-hit-size);
    padding: 0;
    margin-top: calc(-0.375rem - 1px);
    margin-right: 0;
    margin-left: calc(-1 * var(--site-nav-toggle-hit-pad-x));
  }

  .site-nav-toggle__icon {
    position: absolute;
    top: calc(var(--site-nav-toggle-hit-pad-y) + var(--site-nav-toggle-bar-offset));
    left: var(--site-nav-toggle-hit-pad-x);
    margin: 0;
  }

  .site-nav {
    display: none;
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    min-width: 100%;
    max-width: none;
    margin-top: 0.65rem;
    margin-inline: 0;
    padding-block: 0.85rem;
    padding-inline: 0;
    background: transparent;
  }

  .site-nav__link {
    margin-left: var(--site-mobile-nav-inset);
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }

  .page {
    --page-content-top: clamp(5.5rem, 14vw, 8rem);
  }

  .page.sculpture-layout--gallery {
    --page-content-top: var(--page-content-side);
    padding-right: calc(var(--page-content-side) - var(--page-scrollbar-visual-correction, 0rem));
  }

  .page.sculpture-layout--artwork {
    --page-content-top: clamp(5.5rem, 14vw, 8rem);
  }

  .page.sculpture-layout--gallery .sculpture-layout__inner {
    margin-left: 0;
    width: 100%;
  }

  .gallery-masonry {
    display: block;
  }

  .gallery-masonry__item {
    margin: 0 0 var(--gallery-gap);
  }

  .gallery-masonry__trigger,
  .gallery-masonry__item img {
    display: block;
    width: 100%;
    height: auto;
  }

  .page__header,
  .sculpture-layout__inner,
  .page__placeholder {
    margin-left: 0;
  }
}

@media (width <= 330px) {
  :root {
    --page-content-side: clamp(0.35rem, 2.5vw, 0.75rem);
  }

  .site-header__title {
    display: none;
  }

  .site-header__bar {
    justify-content: flex-start;
    padding-inline: 0;
  }

  .site-nav__link {
    margin-left: 0;
  }
}

@media (width <= 720px) {
  .sculpture-layout--artwork {
    --artwork-content-width: 100%;
  }

  .artwork-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.text-page {
  --page-content-top: var(--site-header-menu-top);
}

.text-page--about {
  --about-column-gap: clamp(1.5rem, 3vw, 2.5rem);
  --about-column-min: 13rem;
}

.prose {
  font-size: 0.78rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.prose p {
  margin: 0 0 1rem;
}

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

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--about-column-min)), 1fr));
  gap: var(--about-column-gap);
  align-items: start;
}

.about-hero__main {
  grid-column: span 1;
}

.about-hero__portrait {
  grid-column: span 1;
}

.about-hero figure {
  margin: 0;
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  column-count: 3;
  column-width: var(--about-column-min);
  column-gap: var(--about-column-gap);
  column-fill: balance;
}

.about-text p {
  break-inside: avoid;
}

.about-exhibitions {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgb(0 0 0 / 0.12);
}

.about-exhibitions h2 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-exhibitions__list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-exhibitions__item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.about-exhibitions__year {
  color: rgb(0 0 0 / 0.6);
}

.about-exhibitions__body,
.about-exhibitions__title,
.about-exhibitions__meta {
  display: block;
}

.about-exhibitions__meta {
  margin-top: 0.15rem;
  color: rgb(0 0 0 / 0.65);
}

@media (width > 720px) {
  .about-hero__main {
    grid-column: span 2;
  }
}

@media (width <= 540px) {
  .text-page .sculpture-layout__inner {
    width: 100%;
  }

  .about-exhibitions__item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.blog-feed__item + .blog-feed__item {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.blog-feed__media {
  margin: 0 0 1rem;
}

.blog-feed__media img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-feed__date {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-feed__title {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-page__intro {
  margin: 0 0 1rem;
}

.contact-page__email {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.contact-page__credits {
  margin: 0 0 2rem;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.contact-page__legal {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgb(0 0 0 / 0.12);
}

.contact-page__legal h2 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-page__status {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
