:root {
  --paper: #f1efe8;
  --paper-deep: #e8e4da;
  --ink: #181916;
  --muted: #5f615b;
  --line: rgba(24, 25, 22, 0.2);
  --blue: #adbcc8;
  --blue-pale: #d9e0e3;
  --night: #20262a;
  --gold: #a48759;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --page: 1600px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 255, 255, 0.78), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.cart-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, var(--page));
  min-height: 100vh;
  margin-inline: auto;
  overflow: clip;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 108px;
  padding: 1.2rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: 0.22em;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.wordmark-last {
  font-style: italic;
  color: #4c5961;
}

.site-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.6rem);
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav a,
.cart-trigger {
  position: relative;
  padding: 0.55rem 0;
}

.nav-cart {
  display: none;
}

.site-nav a::after,
.cart-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.cart-trigger:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-trigger {
  justify-self: end;
  border: 0;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-trigger span {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
}

.eyebrow {
  display: block;
  margin-bottom: 1.1rem;
  color: #555852;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0.8rem 1.4rem;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: white;
  background: #344148;
}

.button-outline {
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.button-full {
  width: 100%;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrow-link span {
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--ink);
}

.arrow-link i {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 250ms ease;
}

.arrow-link:hover i {
  transform: translate(0.2rem, -0.2rem);
}

/* Home */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(850px, calc(100svh - 108px));
  padding: clamp(3.5rem, 8vw, 8.5rem) var(--gutter) 5rem;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-bottom: 2rem;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero-copy h1::first-line {
  font-style: italic;
  color: #43515a;
}

.hero-copy > p {
  max-width: 35rem;
  margin: 0 0 2.4rem;
  color: #555852;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.hero-art {
  position: relative;
  min-height: clamp(32rem, 57vw, 44rem);
}

.hero-wash {
  position: absolute;
  inset: 2% -8% 5% 5%;
  background:
    radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(145deg, rgba(173, 188, 200, 0.5), rgba(220, 218, 207, 0.4));
  clip-path: polygon(4% 8%, 84% 0, 100% 84%, 17% 100%, 0 63%);
  filter: blur(2px);
}

.hero-frame {
  position: absolute;
  display: block;
  padding: clamp(0.55rem, 1vw, 0.85rem);
  background: #222421;
  box-shadow: 0 1.8rem 4rem rgba(30, 34, 34, 0.19);
}

.hero-frame::before {
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(174, 140, 87, 0.72);
  content: "";
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-frame:hover img {
  filter: saturate(1.07);
  transform: scale(1.012);
}

.hero-frame-main {
  z-index: 2;
  top: 0;
  left: 7%;
  width: min(81%, 36rem);
  height: 75%;
  transform: rotate(-1.4deg);
}

.hero-frame-main span {
  position: absolute;
  bottom: -3rem;
  left: 0.85rem;
  display: flex;
  width: calc(100% - 1.7rem);
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-frame-main em {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-frame-main b {
  font-weight: 500;
}

.hero-frame-small {
  z-index: 3;
  right: -2%;
  bottom: 4%;
  width: 35%;
  height: 38%;
  transform: rotate(2.5deg);
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 4%;
  writing-mode: vertical-rl;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 3rem;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.hero-scroll span::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--ink);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

.intro-band {
  display: grid;
  min-height: 32rem;
  padding: 7rem var(--gutter);
  color: #ecebe5;
  background:
    linear-gradient(rgba(25, 30, 32, 0.88), rgba(25, 30, 32, 0.92)),
    url("/art/wintering.svg") center 55% / cover;
  grid-template-columns: 1fr 4fr;
  align-items: center;
}

.section-number {
  align-self: start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.intro-band p {
  max-width: 22ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-band em {
  color: var(--blue);
  font-weight: 400;
}

.selected-section,
.related-section {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}

.section-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.shop-teaser h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 23rem;
  margin: 0 5vw 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.selected-grid {
  display: grid;
  margin-bottom: 5rem;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 6rem) clamp(1.25rem, 3vw, 3.5rem);
  align-items: start;
}

.selected-grid .art-card:nth-child(1) { grid-column: 1 / span 7; }
.selected-grid .art-card:nth-child(2) { grid-column: 9 / span 4; margin-top: 9rem; }
.selected-grid .art-card:nth-child(3) { grid-column: 2 / span 4; margin-top: 3rem; }
.selected-grid .art-card:nth-child(4) { grid-column: 7 / span 6; margin-top: -2rem; }

.art-card {
  min-width: 0;
  transition: opacity 350ms ease;
}

.art-card[hidden] {
  display: none;
}

.art-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d8d2;
}

.art-card-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.art-card-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.18, 0.7, 0.2, 1), filter 400ms ease;
}

.art-card-1 .art-card-image img { aspect-ratio: 5 / 4; }
.art-card-2 .art-card-image img { aspect-ratio: 4 / 5; }
.art-card-3 .art-card-image img { aspect-ratio: 1 / 1; }
.art-card-4 .art-card-image img { aspect-ratio: 6 / 5; }

.art-card-image:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.02);
}

.image-action {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  min-width: 8rem;
  padding: 0.75rem 0.9rem;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  background: rgba(24, 25, 22, 0.9);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 300ms ease, transform 300ms ease;
}

.art-card-image:hover .image-action {
  opacity: 1;
  transform: translateY(0);
}

.image-action i {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: normal;
}

.art-card-caption {
  display: flex;
  padding-top: 1.1rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--ink);
}

.art-card-caption h2 {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.art-card-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
}

.art-card-index {
  font-family: var(--serif);
  font-size: 0.8rem;
}

.statement-section {
  position: relative;
  display: grid;
  min-height: 45rem;
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.statement-section::before,
.statement-section::after {
  position: absolute;
  width: 28vw;
  height: 14vw;
  content: "";
  background: rgba(169, 187, 200, 0.22);
  filter: blur(3rem);
  transform: rotate(-14deg);
}

.statement-section::before { top: 10%; left: -6%; }
.statement-section::after { right: -8%; bottom: 5%; }

.statement-mark {
  position: absolute;
  top: 12%;
  left: 50%;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 7rem;
  transform: translateX(-50%);
}

.statement-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 24ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5.2rem);
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.statement-credit {
  position: absolute;
  bottom: 14%;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-teaser {
  display: grid;
  min-height: 45rem;
  color: #ebebe5;
  background: var(--night);
  grid-template-columns: 1fr 1fr;
}

.about-monogram {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(157, 178, 190, 0.55), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(198, 171, 123, 0.4), transparent 20%),
    #334048;
  place-items: center;
}

.about-monogram::before,
.about-monogram::after,
.about-monogram i {
  position: absolute;
  content: "";
  background: rgba(230, 232, 227, 0.2);
  filter: blur(1px);
}

.about-monogram::before { width: 90%; height: 18%; transform: rotate(-12deg); }
.about-monogram::after { width: 32%; height: 105%; transform: rotate(22deg); }
.about-monogram i { width: 70%; height: 30%; border-radius: 50%; transform: rotate(25deg); filter: blur(3rem); }

.about-monogram span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(15rem, 30vw, 34rem);
  font-style: italic;
  line-height: 0.7;
  opacity: 0.22;
}

.about-copy {
  display: flex;
  padding: clamp(4rem, 9vw, 9rem);
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.about-copy .eyebrow {
  color: var(--blue);
}

.about-copy h2 {
  max-width: 9ch;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.about-copy p {
  max-width: 34rem;
  margin-bottom: 2.5rem;
  color: #b9bdbb;
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.7;
}

.about-copy .arrow-link span {
  border-color: #ecebe5;
}

.shop-teaser {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}

.shop-teaser-head {
  display: flex;
  margin-bottom: 4rem;
  justify-content: space-between;
  align-items: end;
}

.shop-strip,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 3.5rem);
}

.art-card-purchase {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  white-space: nowrap;
}

.add-button {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-button span {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 200ms ease;
}

.add-button:hover span { transform: rotate(90deg); }
.add-button:disabled { cursor: default; opacity: 0.5; }

.status-label {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Gallery */
.page-intro {
  position: relative;
  min-height: 27rem;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter) 4rem;
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.page-intro > p {
  position: absolute;
  right: var(--gutter);
  bottom: 4rem;
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.gallery-controls {
  display: flex;
  padding: 2rem var(--gutter);
  gap: 1rem 2rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.filter-button {
  position: relative;
  padding: 0.35rem 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.filter-button::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
}

.filter-button.is-active { color: var(--ink); }
.filter-button.is-active::after { transform: scaleX(1); }

.gallery-grid {
  display: grid;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(4rem, 8vw, 9rem) clamp(1.25rem, 3vw, 3.5rem);
  align-items: start;
}

.gallery-grid .art-card:nth-child(6n + 1) { grid-column: 1 / span 7; }
.gallery-grid .art-card:nth-child(6n + 2) { grid-column: 9 / span 4; margin-top: 7rem; }
.gallery-grid .art-card:nth-child(6n + 3) { grid-column: 2 / span 4; }
.gallery-grid .art-card:nth-child(6n + 4) { grid-column: 7 / span 6; margin-top: 4rem; }
.gallery-grid .art-card:nth-child(6n + 5) { grid-column: 1 / span 5; margin-top: 5rem; }
.gallery-grid .art-card:nth-child(6n + 6) { grid-column: 7 / span 5; }

.gallery-contact {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}

.gallery-contact h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.gallery-contact p {
  max-width: 35rem;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
}

/* Artwork detail */
.artwork-detail {
  display: grid;
  min-height: calc(100svh - 108px);
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
}

.artwork-visual {
  display: grid;
  min-height: 48rem;
  padding: clamp(2rem, 5vw, 6rem);
  background: #d9d8d2;
  place-items: center;
}

.artwork-image-button {
  position: relative;
  max-width: 57rem;
  padding: clamp(0.6rem, 1.2vw, 1rem);
  border: 0;
  background: #20211f;
  box-shadow: 0 2rem 5rem rgba(24, 25, 22, 0.22);
  cursor: zoom-in;
}

.artwork-image-button::after {
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(165, 132, 79, 0.68);
  content: "";
  pointer-events: none;
}

.artwork-image-button img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.artwork-image-button > span {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artwork-info {
  display: flex;
  padding: clamp(3rem, 5vw, 6rem) clamp(2rem, 5vw, 5rem);
  flex-direction: column;
  justify-content: center;
}

.back-link {
  margin-bottom: clamp(4rem, 9vw, 8rem);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.artwork-info h1 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.artwork-description {
  max-width: 30rem;
  margin-bottom: 2.5rem;
  color: #555852;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
}

.artwork-specs {
  margin: 0 0 2.5rem;
  border-top: 1px solid var(--line);
}

.artwork-specs dt,
.artwork-specs dd {
  display: inline-block;
  width: 50%;
  margin: 0;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
}

.artwork-specs dt {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-specs dd {
  text-align: right;
}

.artwork-story {
  margin-bottom: 2rem;
  color: #555852;
  font-family: var(--serif);
  line-height: 1.7;
}

.artwork-buy {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.artwork-buy > strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.artwork-buy > p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.artwork-buy button:disabled {
  opacity: 0.62;
  cursor: default;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 3rem;
  border: 0;
  color: white;
  background: rgba(17, 19, 19, 0.97);
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox::backdrop { background: rgba(17, 19, 19, 0.8); }
.lightbox img { width: auto; max-width: 90vw; height: auto; max-height: 82vh; }
.lightbox > button { position: fixed; top: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; background: transparent; font-size: 1.6rem; cursor: pointer; }
.lightbox > p { margin: 1rem 0 0; font-family: var(--serif); }

/* About */
.about-hero {
  position: relative;
  display: grid;
  min-height: 49rem;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
}

.about-hero-title {
  position: relative;
  z-index: 2;
}

.about-hero-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 16rem);
  font-weight: 400;
  letter-spacing: -0.095em;
  line-height: 0.56;
}

.about-hero-title h1 em {
  margin-left: 0.55em;
  color: #637783;
  font-weight: 400;
}

.about-hero-image {
  position: relative;
  height: 34rem;
  margin-left: -6vw;
  padding: 0.75rem;
  background: #242522;
  transform: rotate(1.6deg);
  box-shadow: 0 2rem 5rem rgba(30, 32, 29, 0.18);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-image > span {
  position: absolute;
  right: -5rem;
  bottom: 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-hero-intro {
  position: absolute;
  bottom: 4rem;
  left: var(--gutter);
  max-width: 26rem;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.bio-section {
  display: grid;
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  color: #ebebe5;
  background: var(--night);
  grid-template-columns: 1fr 3fr;
}

.bio-section aside p {
  margin-top: 1rem;
  color: #979e9e;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bio-copy {
  max-width: 51rem;
}

.bio-copy h2 {
  margin-bottom: 3rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.bio-copy p {
  color: #b8bebb;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.8;
}

.bio-copy p.lead {
  color: #ecece7;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.5;
}

.process-section {
  display: grid;
  min-height: 45rem;
  grid-template-columns: 1fr 1fr;
}

.process-image {
  position: relative;
  overflow: hidden;
  background: #b9c3c7;
}

.process-image::before,
.process-image span,
.process-image i,
.process-image b {
  position: absolute;
  content: "";
  background: #e9e7df;
  filter: blur(1px);
}

.process-image::before { inset: 25% -10% 40% -5%; transform: rotate(-8deg); }
.process-image span { top: 12%; left: 10%; width: 30%; height: 80%; background: #49555b; transform: rotate(13deg); }
.process-image i { right: 5%; bottom: 15%; width: 65%; height: 20%; background: #9c815b; transform: rotate(-20deg); opacity: .65; }
.process-image b { top: 30%; right: 13%; width: 42%; height: 35%; border-radius: 50%; background: #d9dde0; filter: blur(2rem); }

.process-copy {
  display: flex;
  padding: clamp(4rem, 8vw, 8rem);
  flex-direction: column;
  justify-content: center;
}

.process-copy h2 {
  max-width: 10ch;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.process-copy > p {
  max-width: 34rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
}

.process-copy dl {
  display: grid;
  width: 100%;
  margin: 2rem 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-copy dl div { padding-top: 1rem; }
.process-copy dt { color: var(--muted); font-size: 0.6rem; }
.process-copy dd { margin: .5rem 0 0; font-family: var(--serif); font-size: 1.1rem; }

.contact-section {
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.contact-section p {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.contact-section > a {
  display: inline-flex;
  padding: 0.8rem 0;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.contact-section i { font-family: var(--serif); font-style: normal; }

/* Shop */
.shop-intro {
  min-height: 37rem;
  background: linear-gradient(105deg, transparent 45%, rgba(172, 189, 199, 0.25));
}

.shop-intro h1 {
  font-size: clamp(5.5rem, 13vw, 12.5rem);
  line-height: 0.65;
}

.shop-intro h1 em {
  margin-left: 0.45em;
  color: #627681;
  font-weight: 400;
}

.launch-notice {
  display: grid;
  margin: 2rem var(--gutter) 0;
  padding: 1.35rem 1.5rem;
  align-items: center;
  color: #e9ebe8;
  background: var(--night);
  grid-template-columns: 0.5fr 2fr auto;
  gap: 2rem;
}

.launch-notice > span,
.launch-notice > a {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-notice p {
  margin: 0;
  color: #b9bfbe;
  font-family: var(--serif);
}

.shop-grid {
  display: grid;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(4rem, 7vw, 7rem) clamp(1.2rem, 3vw, 3.5rem);
}

.shop-grid .art-card:nth-child(3n + 2) { margin-top: 5rem; }

.collector-care {
  display: grid;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  color: #e8e9e4;
  background: var(--night);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.collector-care > div {
  min-height: 17rem;
  padding: 0 3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.collector-care > div:first-child { padding-left: 0; border-left: 0; }
.collector-care span { color: var(--blue); font-size: 0.6rem; letter-spacing: .14em; }
.collector-care h2 { margin: 4rem 0 1rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.collector-care p { max-width: 23rem; margin: 0; color: #aeb4b2; font-family: var(--serif); line-height: 1.7; }

.empty-shop { padding: 8rem var(--gutter); text-align: center; }
.empty-shop h2 { font-family: var(--serif); font-size: 4rem; font-weight: 400; letter-spacing: -.05em; }
.empty-shop p { margin-bottom: 2rem; color: var(--muted); }

/* Cart */
.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: min(31rem, 100%);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 2rem;
  flex-direction: column;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -2rem 0 6rem rgba(20, 22, 21, 0.18);
  transform: translateX(105%);
  transition: transform 450ms cubic-bezier(0.22, 0.75, 0.2, 1);
}

.cart-drawer:not([open]) { display: none; }
.cart-drawer[open] { display: flex; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer::backdrop { background: rgba(20, 22, 21, 0.52); backdrop-filter: blur(3px); }

.cart-head {
  display: flex;
  padding-bottom: 1.5rem;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.cart-head h2 { margin: 0; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; letter-spacing: -.04em; }
.cart-head .eyebrow { margin-bottom: .35rem; }
.round-button { width: 2.75rem; height: 2.75rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-family: var(--serif); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.cart-items { flex: 1; padding-block: .5rem; overflow-y: auto; }
.cart-item { display: grid; padding: 1rem 0; grid-template-columns: 5rem 1fr auto; gap: 1rem; border-bottom: 1px solid var(--line); }
.cart-item img { width: 5rem; height: 6rem; object-fit: cover; }
.cart-item h3 { margin: 0 0 .25rem; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.cart-item p { margin: 0; color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.cart-item button { align-self: end; padding: 0; border: 0; border-bottom: 1px solid var(--muted); color: var(--muted); background: transparent; font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.cart-item > strong { font-family: var(--serif); font-size: .95rem; font-weight: 400; }
.cart-empty { display: flex; padding: 4rem 2rem; flex: 1; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.cart-empty p { font-family: var(--serif); font-size: 1.4rem; }
.text-link { padding-bottom: .25rem; border-bottom: 1px solid; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cart-summary { padding-top: 1.5rem; border-top: 1px solid var(--ink); }
.cart-summary > div { display: flex; margin-bottom: 1rem; justify-content: space-between; font-family: var(--serif); font-size: 1.25rem; }
.cart-summary > p { color: var(--muted); font-size: .67rem; }
.cart-summary .cart-error { min-height: 1.1rem; margin: .75rem 0 0; color: #9b3128; text-align: center; }
.turnstile-wrap { display: flex; min-height: 4.3rem; margin: .8rem 0; align-items: center; justify-content: center; overflow: hidden; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Success, policies, errors */
.success-page {
  display: flex;
  min-height: calc(100svh - 108px);
  padding: 5rem var(--gutter);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-mark { display: grid; width: 5rem; height: 5rem; margin-bottom: 2rem; border: 1px solid var(--ink); border-radius: 50%; place-items: center; font-family: var(--serif); font-size: 2rem; }
.success-page h1 { max-width: 12ch; margin-bottom: 1.5rem; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.065em; line-height: .93; }
.success-page p { max-width: 36rem; margin-bottom: 2.5rem; color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }

.policy-page { display: grid; max-width: 78rem; min-height: 60vh; margin: 0 auto; padding: clamp(5rem, 10vw, 10rem) var(--gutter); grid-template-columns: 1fr 1.2fr; gap: clamp(4rem, 10vw, 10rem); }
.policy-page header { position: sticky; top: 3rem; align-self: start; }
.policy-page h1 { max-width: 8ch; margin-bottom: 1rem; font-family: var(--serif); font-size: clamp(4rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.07em; line-height: .9; }
.policy-page header p { color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.policy-page section { padding: 2rem 0; border-top: 1px solid var(--line); }
.policy-page section h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.policy-page section p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; }

.not-found { display: flex; min-height: calc(100svh - 108px); padding: 5rem var(--gutter); flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found > span { color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .2em; }
.not-found h1 { margin: 1.5rem 0; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); font-style: italic; font-weight: 400; letter-spacing: -.07em; line-height: .85; }
.not-found p { margin-bottom: 2rem; color: var(--muted); font-family: var(--serif); font-size: 1.1rem; }

/* Footer */
.site-footer {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 2rem;
  color: #e7e8e3;
  background: #171a1a;
}

.footer-title {
  margin-bottom: 5rem;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 16.5vw, 16rem);
  font-style: italic;
  letter-spacing: -0.09em;
  line-height: 0.75;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  padding: 2.5rem 0;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-grid > p { max-width: 25rem; color: #a9b0ae; font-family: var(--serif); font-size: 1.1rem; }
.footer-grid nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-grid nav a { width: max-content; color: #c9cdca; font-size: .67rem; letter-spacing: .07em; }
.footer-grid nav a:hover { color: white; }
.footer-base { display: flex; padding-top: 1.5rem; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.22); color: #808785; font-size: .57rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

@keyframes revealIn {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal].is-visible {
  animation: revealIn 850ms cubic-bezier(.2,.7,.2,1) both;
}

@media (max-width: 980px) {
  .site-header { min-height: 84px; grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; z-index: 25; inset: 84px 0 auto; display: flex; max-height: calc(100dvh - 84px); padding: 3rem var(--gutter); flex-direction: column; align-items: start; overflow-y: auto; visibility: hidden; color: white; background: var(--night); pointer-events: none; transform: translateY(-130%); transition: transform 400ms ease, visibility 0s linear 400ms; }
  .site-nav.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .site-nav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .nav-cart { display: flex; width: 100%; margin-top: 1rem; padding: 1rem 0; justify-content: space-between; border: 0; border-top: 1px solid rgba(255,255,255,.25); color: white; background: transparent; font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .nav-cart span { display: grid; width: 1.7rem; height: 1.7rem; border: 1px solid currentColor; border-radius: 50%; place-items: center; }
  .menu-toggle { display: flex; justify-self: end; padding: .7rem 0; align-items: center; gap: .7rem; border: 0; background: transparent; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 1.5rem; height: 1px; content: ""; background: currentColor; transition: transform 250ms ease; }
  .menu-toggle i::after { transform: translateY(.38rem); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .cart-trigger { display: none; }
  .home-hero { min-height: auto; padding-top: 5rem; grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 11ch; font-size: clamp(4rem, 11vw, 7rem); }
  .hero-art { min-height: 43rem; }
  .hero-frame-main { left: 3%; width: 72%; }
  .hero-frame-small { right: 3%; width: 34%; }
  .hero-scroll { display: none; }
  .about-teaser, .process-section { grid-template-columns: 1fr; }
  .about-monogram, .process-image { min-height: 35rem; }
  .artwork-detail { grid-template-columns: 1fr; }
  .artwork-visual { min-height: 38rem; }
  .artwork-info { padding-block: 5rem; }
  .back-link { margin-bottom: 4rem; }
  .about-hero { min-height: 55rem; grid-template-columns: 1fr; }
  .about-hero-title { align-self: start; }
  .about-hero-image { width: 64%; height: 28rem; margin: -6rem 0 0 auto; }
  .about-hero-intro { bottom: 3rem; }
  .policy-page { grid-template-columns: 1fr; }
  .policy-page header { position: static; }
}

@media (max-width: 700px) {
  :root { --gutter: 1.2rem; }
  .site-header { min-height: 74px; }
  .site-nav { inset-block-start: 74px; }
  .home-hero { padding: 3.5rem var(--gutter) 4rem; gap: 2rem; }
  .hero-copy h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .hero-copy > p { font-size: 1.05rem; }
  .hero-art { min-height: 30rem; }
  .hero-frame-main { left: 0; width: 82%; height: 72%; }
  .hero-frame-small { right: 0; bottom: 1%; width: 38%; height: 33%; }
  .hero-note { display: none; }
  .intro-band { min-height: 25rem; padding-block: 5rem; grid-template-columns: 1fr; }
  .intro-band .section-number { margin-bottom: 3rem; }
  .intro-band p { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.5rem; }
  .selected-grid, .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem .9rem; }
  .selected-grid .art-card,
  .gallery-grid .art-card { grid-column: auto !important; margin-top: 0 !important; }
  .selected-grid .art-card:nth-child(even),
  .gallery-grid .art-card:nth-child(even) { margin-top: 4rem !important; }
  .art-card-caption { display: block; }
  .art-card-caption h2 { font-size: 1.25rem; }
  .art-card-caption p { font-size: .61rem; }
  .art-card-index { display: none; }
  .image-action { display: none; }
  .statement-section { min-height: 35rem; }
  .statement-credit { bottom: 10%; }
  .about-monogram { min-height: 25rem; }
  .about-copy { padding: 5rem var(--gutter); }
  .about-copy h2 { font-size: 3.6rem; }
  .shop-teaser-head { display: block; }
  .shop-teaser-head .arrow-link { margin-top: 1.5rem; }
  .shop-strip, .related-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .page-intro { min-height: 25rem; padding-top: 5rem; }
  .page-intro h1 { font-size: clamp(5rem, 25vw, 8rem); }
  .page-intro > p { position: static; margin-top: 3rem; }
  .gallery-controls { padding-block: 1.3rem; }
  .gallery-grid { padding-top: 4rem; }
  .gallery-contact { text-align: left; }
  .artwork-visual { min-height: 27rem; padding: 3rem 1.5rem 5rem; }
  .artwork-image-button img { max-height: 56vh; }
  .artwork-info h1 { font-size: 4rem; }
  .lightbox { padding: 1rem; }
  .about-hero { min-height: 45rem; padding-top: 5rem; }
  .about-hero-title h1 { font-size: 7rem; }
  .about-hero-image { width: 72%; height: 21rem; margin-top: -2rem; }
  .about-hero-image > span { right: auto; bottom: -3.5rem; left: 0; }
  .about-hero-intro { bottom: 1.5rem; max-width: 15rem; }
  .bio-section { grid-template-columns: 1fr; }
  .bio-section aside { margin-bottom: 3rem; }
  .bio-copy h2 { font-size: 3.6rem; }
  .process-image { min-height: 25rem; }
  .process-copy { padding-block: 5rem; }
  .contact-section { text-align: left; }
  .contact-section h2 { font-size: 4.5rem; }
  .contact-section > a { gap: .6rem; font-size: .9rem; }
  .shop-intro { min-height: 30rem; }
  .shop-intro h1 { font-size: clamp(4.2rem, 18vw, 5.5rem); }
  .launch-notice { grid-template-columns: 1fr; gap: .75rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem .9rem; }
  .shop-grid .art-card:nth-child(3n + 2) { margin-top: 0; }
  .shop-grid .art-card:nth-child(even) { margin-top: 3.5rem; }
  .art-card-purchase { margin-top: .75rem; align-items: start; }
  .collector-care { grid-template-columns: 1fr; }
  .collector-care > div { min-height: auto; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .collector-care > div:first-child { border-top: 0; }
  .collector-care h2 { margin-top: 2rem; }
  .cart-drawer { padding: 1.25rem; }
  .policy-page { padding-block: 5rem; }
  .footer-title { margin-bottom: 3rem; font-size: 22vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p { grid-column: 1 / -1; }
  .footer-base { gap: 1rem; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: clamp(3.55rem, 16.5vw, 4.8rem); }
  .hero-copy > p { max-width: 100%; }
  .contact-section > a { max-width: 100%; overflow-wrap: anywhere; }
}

@media (max-width: 420px) {
  .selected-grid, .gallery-grid, .shop-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .selected-grid .art-card:nth-child(even), .gallery-grid .art-card:nth-child(even), .shop-grid .art-card:nth-child(even) { margin-top: 0 !important; }
  .art-card-image img, .art-card-1 .art-card-image img, .art-card-2 .art-card-image img, .art-card-3 .art-card-image img, .art-card-4 .art-card-image img { aspect-ratio: 4 / 4.5; }
  .art-card-caption { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
