@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/prata-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../assets/fonts/source-sans-pro-200.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/source-sans-pro-300.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/source-sans-pro-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/source-sans-pro-600.woff2") format("woff2");
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --paper: #fffcf9;
  --line: rgba(255, 255, 255, 0.32);
  --accent: #d0ff00;
  --serif: "Prata", Georgia, serif;
  --sans: "Source Sans Pro", Arial, sans-serif;
  --page-bg: none;
  --layout-min-height: 375px;
  --home-button-list-gap: 1.25rem;
  --home-button-width: 2rem;
  --home-button-height: 1.875rem;
  --home-button-padding-x: 0.46875rem;
  --home-button-letter-spacing: 0.2rem;
  --home-button-font-size: 0.875em;
  --home-button-icon-width: 1.40625em;
  --home-button-icon-min-width: 18px;
  --home-button-icon-margin-left: -0.125em;
  --home-button-icon-margin-right: calc(0rem + var(--home-button-letter-spacing));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: max(100vh, var(--layout-min-height));
  background-color: var(--bg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), var(--page-bg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

body[data-page="home"] {
  --page-bg: none;
}

body[data-page="paintings"] {
  --page-bg: url("../assets/site/container01.jpg");
  --gallery-title-font-size: 44px;
  --gallery-title-line-height: 1.625;
  --gallery-shell-padding: 24px 46px;
  --gallery-title-button-gap: 0;
  --gallery-tell-width: 270px;
  --gallery-tell-hover-bg: rgba(133,101,65,0.322);
  --gallery-more-width: 210px;
  --gallery-more-height: 34px;
  --gallery-more-line-height: 34px;
  --gallery-more-weight: 400;
  --gallery-more-top: 30px;
  background-color: rgba(74,74,74,0.729);
  background-attachment: scroll;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.109375%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(to top, rgba(31,2,2,0.322), rgba(31,2,2,0.322)), var(--page-bg);
  background-size: 512px, auto, cover;
  background-position: center, 0% 0%, 50% 50%;
  background-repeat: repeat, repeat, no-repeat;
}

body[data-page="ceramics"] {
  --page-bg: url("../assets/site/container08.jpg");
  --gallery-title-font-size: 44px;
  --gallery-title-line-height: 1.625;
  --gallery-shell-padding: 24px 46px;
  --gallery-title-button-gap: 0;
  --gallery-tell-width: 264px;
  --gallery-tell-hover-bg: rgba(84,84,84,0.741);
  --gallery-more-width: 206px;
  --gallery-more-height: 32px;
  --gallery-more-line-height: 32px;
  --gallery-more-weight: 300;
  --gallery-more-top: 30px;
  background-attachment: scroll;
  background-image: linear-gradient(0deg, rgba(255,250,250,0.369) 0%, rgba(0,0,0,0.29) 53%), var(--page-bg);
  background-position: 0% 0%, 50% 50%;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
}

body[data-page="about"] {
  --page-bg: url("../assets/site/container06.jpg");
  background-attachment: scroll, scroll;
  background-image: linear-gradient(0deg, rgba(255,250,250,0.369) 0%, rgba(0,0,0,0.29) 53%), var(--page-bg);
  background-position: 0% 0%, 50% 50%;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
}

body[data-page="contact"] {
  --page-bg: url("../assets/site/container03.jpg");
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.2890625%200%200%200%200%200%200.203125%200%200%200%200%200%200.07421875%200%200%200%200%200%200.26953125%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(0deg, rgba(0,0,0,0.29) 40%, transparent 100%), var(--page-bg);
  background-size: 512px, cover, cover;
  background-position: center, 0% 0%, 50% 50%;
  background-repeat: repeat, repeat, no-repeat;
}

body[data-page="exhibitions"] {
  --page-bg: none;
  background-color: #D9B2B2;
  background-image: none;
}

body[data-page="more-work"] {
  --page-bg: url("../assets/site/container07.jpg");
  background-image: linear-gradient(20deg, rgba(0,0,0,0.541) 40%, transparent 100%), var(--page-bg);
  background-position: 0% 0%, 0% 0%;
  background-repeat: repeat, repeat;
  background-size: cover, cover;
}

.background-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.background-slide.is-active {
  opacity: 1;
}

.background-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

@keyframes carrd-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes carrd-fade-right-0 {
  from {
    opacity: 0;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes carrd-fade-right-10 {
  from {
    opacity: 0;
    transform: translateX(-15rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes carrd-blur-in-0 {
  from {
    opacity: 0;
    filter: blur(0rem);
  }

  to {
    opacity: 1;
    filter: none;
  }
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.site-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 3.75rem 4rem;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.hero-copy {
  width: 70%;
  max-width: none;
  margin: 0;
}

.page-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}

.home-button-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: var(--home-button-list-gap);
  margin: 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.home-button-list > li {
  max-width: 100%;
  text-align: left;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--home-button-width);
  max-width: 100%;
  height: var(--home-button-height);
  padding: 0 var(--home-button-padding-x);
  padding-left: calc(var(--home-button-letter-spacing) + var(--home-button-padding-x));
  border: solid 1px #FFFFFF;
  border-radius: 2.5rem;
  color: transparent;
  font-size: var(--home-button-font-size);
  font-weight: 400;
  letter-spacing: var(--home-button-letter-spacing);
  line-height: var(--home-button-height);
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
}

.home-button > svg {
  display: block;
  flex: 0 0 auto;
  width: var(--home-button-icon-width);
  min-width: var(--home-button-icon-min-width);
  height: 100%;
  margin-left: var(--home-button-icon-margin-left);
  margin-right: var(--home-button-icon-margin-right);
  fill: #FFFFFF;
  pointer-events: none;
  transition: fill 0.25s ease;
}

.home-button > .label {
  overflow: hidden;
  direction: ltr;
  text-decoration: none;
}

.home-button:hover,
.home-button:focus {
  border-color: #FCD447 !important;
  color: #FCD447 !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.home-button:hover > svg,
.home-button:focus > svg {
  fill: #FCD447 !important;
}

.brand {
  font-family: var(--serif);
  margin: 0.25rem 0;
  padding-left: 0.375rem;
  font-size: 3.875em;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.025rem;
}

.site-nav,
.footer-links {
  color: var(--fg);
  font-weight: 600;
  text-transform: uppercase;
}

.kicker {
  width: calc(100% + 0.5rem);
  margin: 0 0 2.0rem;
  padding-left: 0.375rem;
  color: var(--fg);
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.5rem;
  line-height: 1.75;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.25rem;
  max-width: 36rem;
  text-align: right;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 3.0rem;
  max-width: 32.75rem;
  margin: 1.0rem 0 0;
  padding-left: 0.375rem;
  color: rgba(255,255,255,0.859);
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.075rem;
  line-height: 2;
}

.intro {
  max-width: 32.75rem;
  margin: 1.2rem 0;
  padding-left: 0.375rem;
  color: var(--fg);
  font-size: 1em;
  font-weight: 300;
  line-height: 1.7;
}

.home-hero {
  min-height: max(100vh, var(--layout-min-height));
  display: grid;
  align-items: center;
}

body[data-page="home"] .site-shell {
  width: 100%;
  max-width: none;
  min-height: max(100vh, var(--layout-min-height));
  margin: 0;
  padding: 5.25rem 4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

body[data-page="home"] .background-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body[data-page="home"] .site-shell > :not(.background-slideshow) {
  position: relative;
  z-index: 1;
}

.page-title {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

body[data-page="exhibitions"] .page-title {
  margin: 0.125rem 0;
  font-size: 48px;
  line-height: 1.875;
}

.content-page {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.prose {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  text-align: left;
}

.prose p + p {
  margin-top: 1.4rem;
}

.contact-shell {
  width: 100%;
  max-width: none;
  min-height: max(100vh, var(--layout-min-height));
  margin: 0;
  padding: 4rem;
}

.contact-shell .page-header {
  margin-bottom: 0;
}

.contact-spacer {
  min-height: 1rem;
  margin: 8.875rem 0;
}

.contact-content {
  width: 66vw;
  margin: 0;
  text-align: left;
}

.contact-content .page-title {
  width: calc(100% + 0.025rem);
  margin: 0;
  font-size: 3.875em;
  letter-spacing: 0.025rem;
  line-height: 0.875;
  text-align: left;
}

.contact-content .prose {
  width: 100%;
  margin: 1.25rem 0 0;
  color: #FFFFFF;
  font-size: 1.125em;
  line-height: 1.875;
  text-align: left;
}

.contact-content .prose p {
  margin: 0;
}

.more-work-shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: max(100vh, var(--layout-min-height));
  padding: 3.75rem 4rem;
}

.more-work-content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.more-work-label {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-work-label a {
  display: inline-block;
  width: 13.5rem;
  max-width: 32rem;
  height: 2.25rem;
  padding: 0 0.5rem 0 calc(0.3rem + 0.5rem);
  overflow: hidden;
  border-radius: 2.5rem;
  background-color: transparent;
  direction: ltr;
  font-size: 0.875em;
  font-weight: 300;
  letter-spacing: 0.3rem;
  line-height: 2.25rem;
  text-align: center;
  text-overflow: ellipsis;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.more-work-label a:hover,
.more-work-label a:focus {
  text-decoration: none;
  transform: scale(1.0425);
}

.more-work-content .page-title {
  margin: 0;
  font-size: 3.375em;
  line-height: 1.875;
  text-shadow: 0.088rem 0.088rem 0.125rem rgba(0,0,0,0.4);
}

.more-work-prose {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.875;
  text-align: center;
}

.more-work-prose p {
  margin: 0;
}

.more-work-prose a {
  text-decoration: underline;
}

.more-work-spacer {
  min-height: 1rem;
  width: min(100%, 100rem);
  margin-right: auto;
  margin-left: auto;
}

.more-work-spacer.divider-4 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.more-work-spacer.divider-1 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.more-work-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.more-work-buttons.archive,
.more-work-buttons.large:not(.instagram) {
  margin: 1rem 0;
}

.more-work-buttons.instagram {
  margin: 1.875rem 0;
}

.more-work-buttons.small {
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.more-work-buttons.calendar {
  margin: 0.25rem 0;
}

.more-work-buttons > li {
  max-width: 100%;
  text-align: center;
}

.more-work-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 0.5rem;
  border-radius: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
}

.more-work-button.large {
  width: 19rem;
  height: 3.125rem;
  padding-left: calc(0.375rem + 0.5rem);
  background-color: #FFFFFF;
  color: #0F0404;
  font-size: 1em;
  letter-spacing: 0.375rem;
  line-height: 3.125rem;
}

.more-work-button.small {
  width: 11.75rem;
  height: 2.125rem;
  padding-left: calc(0.2rem + 0.5rem);
  background-color: rgba(255,255,255,0.82);
  color: #452D00;
  font-size: 0.875em;
  letter-spacing: 0.2rem;
  line-height: 2.125rem;
}

.more-work-button > svg {
  display: block;
  flex: 0 0 auto;
  height: 100%;
  min-width: 18px;
  margin-left: -0.125em;
  pointer-events: none;
  transition: fill 0.25s ease;
}

.more-work-button.large > svg {
  width: 1.875em;
  margin-right: calc(1rem + 0.375rem);
  fill: #0F0404;
}

.more-work-button.small > svg {
  width: 1.25em;
  margin-right: calc(0.25rem + 0.2rem);
  fill: rgba(0,0,0,0.839);
}

.more-work-button > .label {
  overflow: hidden;
  direction: ltr;
}

.more-work-button.large:hover,
.more-work-button.large:focus {
  background-color: #DAA2DB !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.more-work-button.small:hover,
.more-work-button.small:focus {
  background-color: #FCD447 !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.about-content {
  text-align: center;
}

.about-label {
  width: calc(100% + 0.35rem);
  margin: 0;
  font-size: 0.75em;
  font-weight: 200;
  letter-spacing: 0.35rem;
  line-height: 1.375;
  text-align: center;
}

.about-content .page-title {
  margin: 0.125rem 0;
  font-size: 3em;
  line-height: 1.875;
}

.prose.about-prose {
  width: calc(100% + 0.025rem);
  max-width: 50rem;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 0.025rem;
  line-height: 1.375;
  text-align: center;
  text-shadow: 0.085rem 0.091rem 0.5rem rgba(0,0,0,0.31);
}

.prose.about-prose p {
  margin: 0;
}

.prose.about-prose p + p {
  margin-top: 0.75rem;
}

.about-action-buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.25rem 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.about-action-button {
  display: inline-block;
  width: 12rem;
  max-width: 100%;
  height: 2.25rem;
  padding: 0 0.5rem 0 calc(0.275rem + 0.5rem);
  overflow: hidden;
  border-radius: 2.5rem;
  background-color: #FFFFFF;
  color: #000000;
  direction: ltr;
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.275rem;
  line-height: 2.25rem;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.about-action-button:hover,
.about-action-button:focus {
  background-color: #FCD447 !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.about-contact-buttons {
  display: flex;
  justify-content: center;
  margin: 2.25rem 0 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.about-work-title {
  margin: 0.125rem 0;
  font-family: var(--serif);
  font-size: 3em;
  font-weight: 400;
  line-height: 1.875;
  text-align: center;
}

.about-work-browser {
  position: relative;
  width: 100%;
  max-width: 790px;
  max-height: 358px;
  aspect-ratio: 790 / 358;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
}

.about-work-slides {
  position: absolute;
  inset: 0;
}

.about-work-slides img {
  position: absolute;
  inset: 0;
}

.about-work-slides img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.about-work-slides img.is-active {
  opacity: 1;
}

.about-slide-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
}

.about-slide-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-top: 4px solid #FFFFFF;
  border-right: 4px solid #FFFFFF;
}

.about-slide-nav.previous {
  left: 0;
}

.about-slide-nav.next {
  right: 0;
}

.about-slide-nav.previous::before {
  left: 1.25rem;
  transform: translateY(-50%) rotate(-135deg);
}

.about-slide-nav.next::before {
  right: 1.25rem;
  transform: translateY(-50%) rotate(45deg);
}

.rule {
  width: min(100%, 49rem);
  height: 1px;
  margin: 2rem auto;
  background: var(--line);
}

.home-buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 1.25rem;
  margin: 1.125rem 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.home-buttons > li {
  max-width: 100%;
  text-align: left;
}

.home-buttons > li > a {
  display: inline-block;
  width: 13rem;
  max-width: 100%;
  height: 3.375rem;
  padding: 0 0.5rem 0 calc(0.425rem + 0.5rem);
  overflow: hidden;
  border: solid 1px #FFFFFF;
  border-radius: 2.5rem;
  color: #FFFFFF;
  direction: ltr;
  font-family: var(--sans);
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0.425rem;
  line-height: calc(3.375rem - 2px);
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.home-buttons > li > a:hover,
.home-buttons > li > a:focus {
  border-color: #FFE2AB !important;
  color: #FFE2AB !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.carrd-action-buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0;
  cursor: default;
  letter-spacing: 0;
  list-style: none;
}

.carrd-action-buttons > li {
  max-width: 100%;
  text-align: left;
}

.carrd-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  max-width: 100%;
  height: 2.875rem;
  padding: 0 0.5rem;
  padding-left: calc(0.375rem + 0.5rem);
  border-radius: 2.5rem;
  background-color: #FFFFFF;
  color: #0F0404;
  font-size: 0.875em;
  font-weight: 400;
  letter-spacing: 0.375rem;
  line-height: 2.875rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
}

.carrd-action-button > svg {
  display: block;
  flex: 0 0 auto;
  width: 1.5625em;
  min-width: 18px;
  height: 100%;
  margin-left: -0.125em;
  margin-right: calc(0.375rem + 0.375rem);
  fill: #0F0404;
  pointer-events: none;
  transition: fill 0.25s ease;
}

.carrd-action-button > .label {
  overflow: hidden;
  direction: ltr;
}

.carrd-action-button:hover,
.carrd-action-button:focus {
  background-color: #FCD447 !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.button,
.text-button {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.28rem;
  line-height: 1.4;
  padding: 0.8rem 1.1rem;
  text-transform: uppercase;
}

.button:hover,
.text-button:hover,
.button:focus,
.text-button:focus {
  background: rgba(255, 255, 255, 0.12);
}

.gallery-page {
  min-height: max(100vh, var(--layout-min-height));
  overflow-x: hidden;
}

.gallery-page .site-shell {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: max(100vh, var(--layout-min-height));
  margin: 0;
  padding: var(--gallery-shell-padding);
}

.gallery-page .page-header {
  justify-content: space-between;
  margin-bottom: 0;
}

.gallery-view-button-list {
  display: none;
  justify-content: flex-end;
}

.gallery-view-button {
  appearance: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.gallery-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.gallery-wrap .page-title {
  width: 100%;
  margin: 0;
  font-size: var(--gallery-title-font-size);
  line-height: var(--gallery-title-line-height);
}

.caroussel-mount {
  width: 100%;
  margin-top: var(--gallery-title-button-gap);
}

.caroussel-area {
  width: 100%;
}

.caroussel-tell-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 26px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.caroussel-tell-list > li {
  max-width: 100%;
}

.caroussel-tell-button {
  display: inline-block;
  width: var(--gallery-tell-width);
  height: 28px;
  padding: 0 7px;
  padding-left: 11.4px;
  overflow: hidden;
  border: 0;
  border-radius: 2.5rem;
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  direction: ltr;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4.4px;
  line-height: 28px;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.caroussel-tell-button:hover,
.caroussel-tell-button:focus {
  background-color: var(--gallery-tell-hover-bg) !important;
  outline: 0;
  text-decoration: none;
}

.caroussel-table {
  border-collapse: separate;
  width: 100%;
  max-width: 900px;
  min-height: 330px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.caroussel-slider-cell {
  cursor: pointer;
  vertical-align: middle;
}

.caroussel-slide-cell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
  user-select: none;
}

.caroussel-arrow-cell {
  width: 60px;
  vertical-align: middle;
}

.caroussel-arrow-cell img,
.caroussel-mobile-arrow img {
  display: block;
  width: 100%;
  max-width: none;
}

.caroussel-mobile-arrow img {
  width: 40px;
  height: 60px;
  padding-top: 0;
}

.caroussel-indicator-table {
  width: auto;
  min-width: 50%;
  height: 60px;
  max-height: 60px;
  margin-top: 0;
  pointer-events: none;
}

.caroussel-mobile-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: block;
  width: 40px;
  height: 60px;
  max-width: 40px;
  max-height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
  transform: translateY(-50%);
  vertical-align: middle;
}

.caroussel-mobile-arrow-left {
  left: -6px;
}

.caroussel-mobile-arrow-right {
  right: -6px;
}

.theImgArrow {
  background: rgb(255, 255, 255, 0);
  cursor: pointer;
}

#mySlidePage1,
#mySlidePage2,
#newpage1,
#newpage2 {
  position: absolute;
  transition: left 0.5s ease-out;
  white-space: nowrap;
  user-select: none;
  width: 100%;
  z-index: 4;
}

.mySlidingTable {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 0;
  margin: 0;
  user-select: none;
}

.caroussel-slide-cell .mySlidingTable {
  position: relative;
}

.mySlidingTable .myImgTD {
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
}

.caroussel-art-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  margin: 24px 24px;
  background: #fffcf9;
}

body[data-page="ceramics"] .caroussel-art-frame {
  background: transparent;
}

.caroussel-work-image {
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 8px;
}

.carousel-indicators {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  margin-block-start: 4px;
  margin-block-end: 4px;
  text-align: center;
  list-style: none;
  vertical-align: middle;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background-color: rgba(10, 0, 0, 0.3);
}

.carousel-indicators .active {
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-more-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: var(--gallery-more-top) 0 0;
}

.gallery-more-button {
  display: inline-block;
  width: var(--gallery-more-width);
  height: var(--gallery-more-height);
  padding: 0 8px;
  padding-left: 12.4px;
  overflow: hidden;
  border: 0;
  border-radius: 2.5rem;
  background-color: rgba(255,255,255,0.412);
  color: #452D00;
  cursor: pointer;
  direction: ltr;
  font: inherit;
  font-size: 14px;
  font-weight: var(--gallery-more-weight);
  letter-spacing: 4.4px;
  line-height: var(--gallery-more-line-height);
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.gallery-more-button:hover,
.gallery-more-button:focus {
  background-color: #FCD447 !important;
  text-decoration: none;
  transform: scale(1.0425);
}

.gallery-about-button {
  display: none;
}

@media (max-height: 719px) {
  .gallery-wrap .page-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	margin: 0 0 2px 0;
  }

  .caroussel-tell-list {
    display: none;
  }

  .gallery-about-button {
    display: inline-block;
  }
}

@media (max-height: 599px) {
  .caroussel-indicator-table {
    display: none;
    height: 0;
    max-height: 0;
    overflow: hidden;
  }
}

.gallery-stage {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: 1rem;
  align-items: center;
}

.gallery-arrow {
  border: 0;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  opacity: 0.8;
}

.work-card {
  margin: 0;
  text-align: center;
}

.work-image-button {
  display: grid;
  width: 100%;
  min-height: 55vh;
  place-items: center;
  border: 0;
  background: var(--paper);
  cursor: pointer;
  padding: 2rem;
}

.work-image {
  width: auto;
  max-width: 100%;
  max-height: 52vh;
  object-fit: contain;
}

.work-title {
  margin: 1.1rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.gallery-indicators li {
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-indicators li.active {
  background: var(--fg);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.68);
}

.lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 18rem);
  gap: 2rem;
  width: min(90vw, 1200px);
  max-height: 78vh;
  overflow: auto;
  padding: 2rem;
  background: #fff;
  color: #111;
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.35);
}

.lightbox-panel img {
  align-self: center;
  justify-self: center;
  max-height: 68vh;
  object-fit: contain;
}

.lightbox-panel pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  line-height: 1.55;
}

.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 2rem;
}

.exhibition {
  margin: 0 auto;
  max-width: 63rem;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.025rem;
  line-height: 1.375;
  text-align: center;
}

.exhibition-title-spacer {
  height: 48px;
}

.exhibition p {
  margin: 0.125rem 0;
}

.exhibition b {
  font-weight: 500;
}

.exhibition-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--image-stack-gap, 3.75rem);
  width: 100%;
  margin: 2rem auto 0;
}

.image-stack-normal {
  --image-stack-gap: 3.75rem;
}

.image-stack-tight {
  --image-stack-gap: 1.5rem;
}

.image-stack-zero {
  --image-stack-gap: 0;
}

.image-stack-medium {
  --image-stack-gap: 0.75rem;
}

.image-stack-hairline {
  --image-stack-gap: 0.25rem;
}

.image-width-still {
  --exhibition-image-width: 42.375rem;
}

.image-width-wide {
  --exhibition-image-width: 56.75rem;
}

.image-width-jute {
  --exhibition-image-width: 59rem;
}

.image-width-large {
  --exhibition-image-width: 59.375rem;
}

.image-width-medium {
  --exhibition-image-width: 47.5rem;
}

.image-width-max {
  --exhibition-image-width: 63rem;
}

.image-width-northern {
  --exhibition-image-width: 61.875rem;
}

.image-width-turner {
  --exhibition-image-width: 57.5rem;
}

.image-width-wetter {
  --exhibition-image-width: 55.625rem;
}

.image-width-gallery-november {
  --exhibition-image-width: 53.5rem;
}

.exhibition-images img {
  display: block;
  width: min(100%, var(--exhibition-image-width, 59rem));
  height: auto;
  max-height: none;
  object-fit: contain;
  background: transparent;
}

.exhibition-caption {
  max-width: 50rem;
  margin: 0.75rem auto;
  font-size: 0.875em;
  text-align: center;
}

.exhibition-spacer {
  min-height: 1rem;
  width: min(100%, 49rem);
  margin: var(--spacer-margin) auto;
}

.exhibition-spacer.divider-5 {
  --spacer-margin: 2.0625rem;
}

.exhibition-spacer.divider-6 {
  --spacer-margin: 3.4375rem;
}

.exhibition-spacer.divider-21 {
  --spacer-margin: 1.5rem;
}

.exhibition-spacer.divider-9 {
  --spacer-margin: 1.5rem;
}

.exhibition-spacer.divider-8 {
  --spacer-margin: 3.0625rem;
}

.exhibition-spacer.divider-10 {
  --spacer-margin: 2.5rem;
}

.exhibition-spacer.divider-11 {
  --spacer-margin: 2.6875rem;
}

.exhibition-spacer.divider-12 {
  --spacer-margin: 2.75rem;
}

.exhibition-spacer.divider-13 {
  --spacer-margin: 2.8125rem;
}

.exhibition-spacer.divider-14 {
  --spacer-margin: 3.1875rem;
}

.exhibition-spacer.divider-15 {
  --spacer-margin: 2.625rem;
}

.exhibition-spacer.divider-16 {
  --spacer-margin: 2.9375rem;
}

.exhibition-spacer.divider-17 {
  --spacer-margin: 1.625rem;
}

.exhibition-spacer.divider-18 {
  --spacer-margin: 1.5625rem;
}

.exhibition-spacer.divider-20 {
  --spacer-margin: 4.25rem;
}

.exhibition-bottom-home {
  justify-content: center;
  margin: 0;
}

.site-footer {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-align: center;
}

.muted {
  color: var(--muted);
}

body[data-page="home"] .kicker,
body[data-page="home"] .brand {
  animation: carrd-fade-right-0 1000ms ease 100ms both;
}

body[data-page="home"] .intro,
body[data-page="home"] .footer-links {
  animation: carrd-fade-right-10 1000ms ease 100ms both;
}

body[data-page="home"] .home-buttons > li {
  animation: carrd-fade-in 1000ms ease both;
}

body[data-page="home"] .home-buttons > li:nth-child(1) {
  animation-delay: 575ms;
}

body[data-page="home"] .home-buttons > li:nth-child(2) {
  animation-delay: 750ms;
}

body[data-page="home"] .home-buttons > li:nth-child(3) {
  animation-delay: 1125ms;
}

body:not([data-page="home"]) .page-header .home-button-list > li {
  animation: carrd-fade-in 1000ms ease 125ms both;
}

body[data-page="contact"] .contact-shell {
  animation: carrd-fade-in 1000ms ease 100ms both;
}

body[data-page="contact"] .contact-content .page-title,
body[data-page="contact"] .contact-content .prose,
body[data-page="contact"] .carrd-action-buttons {
  animation: carrd-fade-in 1000ms ease 350ms both;
}

body[data-page="paintings"] .site-shell,
body[data-page="ceramics"] .site-shell {
  animation: carrd-fade-in 1875ms ease 100ms both;
}

body[data-page="paintings"] .gallery-wrap .page-title,
body[data-page="ceramics"] .gallery-wrap .page-title {
  animation: carrd-fade-in 1000ms ease 100ms both;
}

body[data-page="paintings"] .caroussel-tell-list,
body[data-page="ceramics"] .caroussel-tell-list,
body[data-page="paintings"] .gallery-more-row,
body[data-page="ceramics"] .gallery-more-row {
  animation: carrd-fade-in 1000ms ease 125ms both;
}

body[data-page="about"] .site-shell {
  animation: carrd-fade-in 500ms ease 100ms both;
}

body[data-page="about"] .about-label,
body[data-page="about"] .about-content .page-title,
body[data-page="about"] .about-prose,
body[data-page="about"] .about-work-title {
  animation: carrd-fade-in 1000ms ease 250ms both;
}

body[data-page="about"] .about-action-buttons {
  animation: carrd-blur-in-0 625ms ease 500ms both;
}

body[data-page="exhibitions"] .about-label,
body[data-page="exhibitions"] .page-title {
  animation: carrd-fade-in 1000ms ease 250ms both;
}

body[data-page="exhibitions"] .exhibition,
body[data-page="exhibitions"] .exhibition-caption {
  animation: carrd-fade-in 1000ms ease 250ms both;
}

body[data-page="exhibitions"] .exhibition-bottom-actions {
  animation: carrd-blur-in-0 625ms ease 500ms both;
}

body[data-page="exhibitions"] .exhibition-bottom-home > li {
  animation: carrd-fade-in 1000ms ease 125ms both;
}

body[data-page="more-work"] .more-work-shell {
  animation: carrd-fade-in 750ms ease 100ms both;
}

body[data-page="more-work"] .more-work-label {
  animation: carrd-fade-in 1000ms ease 250ms both;
}

body[data-page="more-work"] .more-work-content .page-title,
body[data-page="more-work"] .more-work-prose {
  animation: carrd-fade-in 1000ms ease 500ms both;
}

body[data-page="more-work"] .more-work-buttons.large > li,
body[data-page="more-work"] .more-work-buttons.instagram > li {
  animation: carrd-fade-in 1000ms ease 500ms both;
}

body[data-page="more-work"] .more-work-buttons.small > li,
body[data-page="more-work"] .more-work-buttons.calendar > li {
  animation: carrd-fade-in 1000ms ease 125ms both;
}

/*
  Responsive vocabulary:
  - narrow screen: width <= 736px OR landscape phone
  - portrait phone: width <= 480px
  - landscape phone: width > 640px and height < 480px
  - phone: portrait phone

  The phone block follows the narrow block so portrait-phone rules win conflicts.
*/
@media (max-width: 736px), (min-width: 641px) and (max-height: 479px) {
  :root {
    --home-button-font-size: 0.5em;
  }

  html {
    font-size: 12pt;
  }

  .site-shell {
    padding: 3.5rem 2rem;
  }

  .page-title {
    font-size: 2.5em;
    line-height: 1.25;
  }

  .contact-content .page-title {
    font-size: 2.5em;
    line-height: 1.25;
  }

  .more-work-content .page-title {
    font-size: 3em;
    line-height: 1.875;
  }

  .about-content .page-title {
    font-size: 3em;
    line-height: 1.875;
  }

  .about-work-title {
    font-size: 2.5em;
    line-height: 1.25;
  }

  .gallery-wrap .page-title {
    font-size: 2.5em;
    line-height: 1.25;
  }

  body[data-page="home"] .site-shell {
    min-width: 0;
    min-height: 19rem;
    padding: 3.5rem 2rem;
  }

  body[data-page="home"] .hero-copy {
    width: 100%;
  }

  body[data-page="home"] .brand {
    font-size: 2.5em;
    line-height: 1.25;
  }

  body[data-page="home"] .intro {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-buttons {
    gap: 0.9375rem;
  }

  .site-header {
    display: block;
    margin-bottom: 3rem;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 2rem;
    text-align: left;
  }

  .caroussel-table {
	min-height: 240px;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    display: none;
  }

  .work-image-button {
    min-height: 48vh;
    padding: 1rem;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    width: 94vw;
    max-height: 86vh;
  }

  .contact-spacer {
    height: 48px;
    min-height: 48px;
    margin: 0;
  }

  .contact-shell {
    padding: 3.5rem 2rem;
  }

  .contact-content {
    width: 100%;
  }

  .contact-content .prose {
    width: 100%;
  }

  .about-content {
    width: 100%;
  }

  .prose.about-prose {
    width: 100%;
  }

}

@media (min-width: 641px) and (max-height: 479px) {
  .site-shell {
    padding-top: 1.75rem;
  }

  body[data-page="home"] .site-shell {
    padding-top: 1.75rem;
  }

  body[data-page="more-work"] .more-work-label {
    display: none;
  }
}

/*
	narrow / portraitphone
*/
@media (max-width: 480px) {
  body[data-page="paintings"] {
    --gallery-tell-width: 17rem;
    --gallery-more-width: 13.875rem;
  }

  body[data-page="ceramics"] {
    --gallery-tell-width: 15.25rem;
    --gallery-more-width: 13.5rem;
  }

  body[data-page="exhibitions"] .site-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .exhibition {
    font-size: 16px;
    line-height: 1.375;
  }

  .exhibition p {
    margin: 0.09375rem 0;
  }

  .home-buttons > li {
    width: 100%;
  }

  .home-buttons > li > a {
    width: 100%;
  }

  body[data-page="home"] .footer-links {
    width: 100%;
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .about-action-buttons,
  .carrd-action-buttons {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .about-action-buttons > li,
  .carrd-action-buttons > li {
    width: 100%;
  }

  .about-action-button,
  .carrd-action-button {
    max-width: 32rem;
    width: 100%;
  }

  .more-work-buttons {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .more-work-buttons > li {
    width: 100%;
  }

  .more-work-button {
    max-width: 32rem;
    width: 100%;
  }

  .caroussel-tell-button {
    font-size: 12px;
    letter-spacing: 3.2px;
    padding-left: 10.2px;
  }

  .gallery-more-button {
    font-size: 12px;
    letter-spacing: 3.2px;
    padding-left: 11.2px;
  }

  body[data-page="paintings"] .caroussel-table,
  body[data-page="ceramics"] .caroussel-table {
    width: 96vw;
    max-width: 96vw;
    margin-right: calc(50% - 48vw);
    margin-left: calc(50% - 48vw);
  }

  .caroussel-mobile-arrow {
    width: 40px;
    height: 60px;
  }

  .caroussel-mobile-arrow img {
    width: 40px;
    height: 60px;
    padding-top: 0;
  }
}

/*
	very narrow
*/
@media (max-width: 360px) {
  :root {
    --home-button-list-gap: 0.9375rem;
  }

  .site-shell {
    padding: 2.625rem 1.5rem;
  }

  body[data-page="home"] .site-shell {
    min-height: 14.25rem;
    padding: 2.625rem 1.5rem;
  }

  .contact-shell {
    padding: 2.625rem 1.5rem;
  }
}

/*
	not a lot of height...
*/

@media (max-height: 539px) {

  .caroussel-art-frame {
	  height: calc(100% - 24px);
	  margin: 12px 24px;
  }

  .gallery-wrap .page-title {
    margin-top: 0;
    margin-bottom: 6px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 24px;
  }

  .gallery-more-row {
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-more-button {
    padding-top: 0;
    padding-bottom: 0;
  }
}



@media (max-height: 360px) {
  .gallery-view-button-list {
    display: flex;
  }

  .caroussel-tell-list,
  .gallery-more-row {
    display: none;
  }
}
