body.prints-page {
  --shop-paper: #f3f0e8;
  --shop-paper-light: #faf8f3;
  --shop-ink: #171714;
  --shop-muted: #6e6b63;
  --shop-line: rgba(23, 23, 20, 0.16);
  --shop-gold: #917044;
  --shop-gold-light: #c9af84;
  --shop-green: #425e52;
  --shop-shadow: 0 24px 70px rgba(30, 27, 20, 0.12);
  --shop-display:
    "Iowan Old Style",
    "Palatino Linotype",
    "Book Antiqua",
    Palatino,
    Baskerville,
    Georgia,
    serif;
  --shop-sans:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  margin: 0;
  min-height: 100vh;
  color: var(--shop-ink);
  font-family: var(--shop-sans);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(201, 175, 132, 0.19),
      transparent 25rem
    ),
    radial-gradient(
      circle at 88% 38%,
      rgba(66, 94, 82, 0.11),
      transparent 32rem
    ),
    var(--shop-paper);
}

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

.prints-page a {
  color: inherit;
}

.prints-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--shop-line);
  background: rgba(243, 240, 232, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.prints-page .site-name {
  color: var(--shop-ink);
  font-family: var(--shop-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.prints-page .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.prints-page .site-nav a {
  position: relative;
  color: var(--shop-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.prints-page .site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--shop-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.prints-page .site-nav a:hover::after,
.prints-page .site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.prints-page main {
  display: block;
}

.shop {
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(5rem, 10vw, 9rem);
}

.shop-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  min-height: clamp(31rem, 68vh, 48rem);
  overflow: hidden;
  padding: clamp(2rem, 6vw, 6.5rem);
  color: #f8f5ed;
  background:
    linear-gradient(
      125deg,
      rgba(11, 15, 14, 0.98),
      rgba(27, 39, 35, 0.96) 58%,
      rgba(61, 55, 42, 0.9)
    );
  box-shadow: var(--shop-shadow);
}

.shop-hero::before {
  position: absolute;
  z-index: -1;
  top: clamp(-11rem, -10vw, -5rem);
  right: clamp(-9rem, -7vw, -2rem);
  width: clamp(23rem, 48vw, 46rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(201, 175, 132, 0.44);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(201, 175, 132, 0.17),
      rgba(201, 175, 132, 0.03) 52%,
      transparent 70%
    );
}

.shop-hero::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -44%;
  width: 38%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(121, 151, 135, 0.15);
  filter: blur(2px);
}

.shop-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--shop-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-title {
  max-width: 9ch;
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.79;
}

.shop-intro {
  max-width: 33rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  color: rgba(248, 245, 237, 0.74);
  font-family: var(--shop-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.shop-hero-note {
  align-self: end;
  padding: 0 0 0 1.5rem;
  border-left: 1px solid rgba(201, 175, 132, 0.55);
}

.shop-hero-note p {
  margin: 0 0 1.5rem;
  color: rgba(248, 245, 237, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.shop-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-jump::after {
  content: "↓";
  color: var(--shop-gold-light);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.shop-jump:hover::after {
  transform: translateY(0.25rem);
}

.shop-selection {
  padding: clamp(5rem, 10vw, 10rem) clamp(0.25rem, 2vw, 2rem) 0;
}

.shop-selection-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.52fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--shop-line);
}

.shop-selection-title {
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.shop-selection-copy {
  max-width: 35rem;
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.25rem, 5vw, 5.5rem) clamp(1.25rem, 3vw, 3rem);
}

.artwork-card {
  min-width: 0;
}

.artwork-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: #dedad0;
  box-shadow: 0 14px 36px rgba(26, 24, 19, 0.1);
}

.artwork-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.artwork-card:hover .artwork-image {
  transform: scale(1.025);
  filter: saturate(1.03);
}

.artwork-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 2rem;
  color: var(--shop-muted);
  font-family: var(--shop-display);
  font-size: 1.1rem;
  text-align: center;
}

.artwork-info {
  padding: 1.35rem 0 0;
}

.artwork-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--shop-line);
}

.artwork-heading h2 {
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.artwork-year {
  flex: none;
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.artwork-medium {
  margin: 0.85rem 0 0;
  color: var(--shop-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-description {
  margin: 1rem 0 0;
  color: var(--shop-muted);
  font-family: var(--shop-display);
  font-size: 1.05rem;
  line-height: 1.55;
}

.artwork-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-status::before {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.artwork-status--available {
  color: var(--shop-green);
}

.artwork-status--preview,
.artwork-status--forthcoming {
  color: var(--shop-gold);
}

.edition-details {
  display: grid;
  gap: 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--shop-line);
}

.edition-details div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--shop-line);
}

.edition-details dt {
  color: var(--shop-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edition-details dd {
  margin: 0;
  font-family: var(--shop-display);
  font-size: 0.95rem;
  text-align: right;
}

.artwork-enquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--shop-ink);
  color: var(--shop-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.artwork-enquiry:hover,
.artwork-enquiry:focus-visible {
  color: var(--shop-paper-light);
  background: var(--shop-ink);
}

.prints-page a:focus-visible {
  outline: 3px solid rgba(145, 112, 68, 0.55);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .shop-hero,
  .shop-selection-header {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    align-content: end;
    gap: 3rem;
  }

  .shop-hero-note {
    max-width: 31rem;
  }

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

@media (max-width: 640px) {
  .prints-page .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    min-height: auto;
  }

  .prints-page .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .shop {
    width: min(100% - 1rem, 1500px);
  }

  .shop-hero {
    min-height: 38rem;
    padding: 2rem 1.5rem;
  }

  .shop-title {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .shop-selection {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prints-page *,
  .prints-page *::before,
  .prints-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
