:root {
  --ink: #191716;
  --paper: #fff8ef;
  --panel: #ffffff;
  --mist: #edf5f2;
  --paper-warm: #f7e7cf;
  --paper-blue: #e5edf0;
  --paper-pink: #f4d6cc;
  --clay: #af4e36;
  --teal: #1c7580;
  --sage: #284f47;
  --gold: #d59f36;
  --rose: #d86d64;
  --line: rgba(25, 23, 22, 0.15);
  --soft-text: rgba(25, 23, 22, 0.68);
  --shadow: 0 24px 70px rgba(25, 23, 22, 0.16);
  --card-join-offset: 120px;
  --card-right-y: -1px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.has-loader:not(.is-loaded) {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.card-modal-open {
  overflow: hidden;
}

.viewer-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(255, 248, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand img.matteo-brand-logo {
  border-radius: 50%;
  object-fit: cover;
}

.artist-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 2.8vw, 30px);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-menu {
  position: relative;
}

.nav-menu button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav-menu button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  width: max-content;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(25, 23, 22, 0.16);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown a {
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.62);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: #fff2c9;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 109, 100, 0.32), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(28, 117, 128, 0.2), transparent 20%),
    var(--paper);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.is-loaded .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 44px);
}

.loader-icon {
  width: 148px;
  height: 148px;
  object-fit: contain;
  filter: brightness(0);
}

.loader-icon.color-loader {
  filter: none;
}

.loader-icon.round-loader {
  border-radius: 50%;
}

.temporary-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  font-weight: 950;
}

.sea-icon {
  color: #e8fbf5;
  background: #0a5d6a;
  border-color: #0a5d6a;
  border-radius: 50%;
}

.photo-icon {
  color: #111;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, #111 29% 38%, transparent 39%),
    linear-gradient(135deg, #fff 0 48%, #111 48% 52%, #fff 52%);
}

.hero {
  min-height: clamp(620px, calc(100vh - 71px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(40px, 6vw, 78px) clamp(18px, 5vw, 70px);
  overflow: hidden;
}

.hero-tinto {
  background:
    linear-gradient(90deg, rgba(28, 117, 128, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.04) 1px, transparent 1px),
    linear-gradient(115deg, var(--paper) 0 58%, #e7f2ef 58% 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.network-hero {
  position: relative;
}

.network-hero::before,
.network-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(25, 23, 22, 0.12);
}

.network-hero::before {
  left: 8vw;
  bottom: 44px;
  width: 190px;
  height: 96px;
  background: #fff2c9;
  transform: rotate(4deg);
}

.network-hero::after {
  right: 12vw;
  top: 96px;
  width: 130px;
  height: 78px;
  background: var(--paper-blue);
  transform: rotate(-7deg);
}

.network-hero > * {
  position: relative;
  z-index: 1;
}

.hero-artist {
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.035) 1px, transparent 1px),
    linear-gradient(115deg, #fff5ec 0 58%, #f3dfd3 58% 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.matteo-page {
  --ink: #092b31;
  --paper: #edf8f4;
  --clay: #0b7180;
  --teal: #1d8c78;
  --sage: #0d4e59;
  --line: rgba(9, 43, 49, 0.16);
  --soft-text: rgba(9, 43, 49, 0.7);
}

.matteo-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 140, 120, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(9, 43, 49, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(9, 43, 49, 0.05) 1px, transparent 1px),
    linear-gradient(115deg, #edf8f4 0 58%, #d8eee8 58% 100%);
  background-size: auto, 40px 40px, 40px 40px, auto;
}

.photographer-page {
  --ink: #111111;
  --paper: #f4f4f1;
  --clay: #111111;
  --teal: #555555;
  --sage: #1d1d1d;
  --line: rgba(17, 17, 17, 0.18);
  --soft-text: rgba(17, 17, 17, 0.68);
}

.photo-header,
.photographer-page .site-header {
  background: rgba(244, 244, 241, 0.92);
}

.photo-hero {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(115deg, #f4f4f1 0 58%, #d7d7d2 58% 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.handmade-hero {
  position: relative;
}

.handmade-hero::before,
.handmade-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(25, 23, 22, 0.12);
  transform: rotate(-5deg);
}

.handmade-hero::before {
  left: clamp(16px, 5vw, 70px);
  bottom: 34px;
  width: 160px;
  height: 86px;
  background: var(--paper-blue);
}

.handmade-hero::after {
  right: 9vw;
  top: 96px;
  width: 120px;
  height: 70px;
  background: var(--paper-warm);
  transform: rotate(7deg);
}

.handmade-hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 670px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(4.4rem, 11vw, 10.5rem);
  line-height: 0.84;
}

.hero-tinto h1 {
  font-size: clamp(4rem, 8.2vw, 7.2rem);
  line-height: 0.9;
}

.artist-page h1 {
  font-size: clamp(3.8rem, 9vw, 8.2rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 1.03;
}

h3 {
  margin: 9px 0 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow),
.model-section p,
.artist-about p,
.artist-card p,
.collab-grid p,
.work-row p {
  color: var(--soft-text);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  background: transparent;
}

.button.inverted {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 54px 36px 20px 72px;
  z-index: -1;
  background: var(--sage);
}

.tinto-hero-mark {
  min-height: 500px;
  align-items: center;
}

.tinto-hero-mark::before {
  inset: 48px 18px 44px 74px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 38%),
    radial-gradient(circle at 24% 26%, rgba(216, 109, 100, 0.16), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(28, 117, 128, 0.14), transparent 24%),
    var(--paper-warm);
  box-shadow: var(--shadow);
}

.tinto-diagram {
  position: relative;
  width: min(100%, 520px);
  min-height: 410px;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto 86px auto auto;
  gap: 18px 24px;
  align-items: start;
  padding: 34px 38px 28px;
  overflow: hidden;
  border: 1px solid rgba(25, 23, 22, 0.12);
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.7);
  background-size: 38px 38px;
  box-shadow: 0 22px 60px rgba(25, 23, 22, 0.14);
}

.tinto-diagram::before {
  content: "";
  position: absolute;
  inset: 70px 42px 70px;
  background:
    radial-gradient(circle at 28% 12%, rgba(175, 78, 54, 0.13), transparent 22%),
    radial-gradient(circle at 72% 12%, rgba(11, 113, 128, 0.13), transparent 22%),
    linear-gradient(180deg, rgba(255, 242, 201, 0.45), transparent 56%);
  pointer-events: none;
}

.diagram-profile,
.diagram-center {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid rgba(25, 23, 22, 0.16);
  box-shadow: 9px 9px 0 rgba(25, 23, 22, 0.09);
}

.diagram-profile {
  min-height: 96px;
  padding: 16px 18px;
}

.diagram-profile span,
.diagram-center span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.diagram-profile strong,
.diagram-center strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.05;
}

.flavia-source {
  justify-self: start;
  width: min(100%, 190px);
  border-color: rgba(175, 78, 54, 0.2);
  transform: rotate(-2deg);
}

.flavia-source span {
  color: #af4e36;
}

.matteo-source {
  justify-self: end;
  width: min(100%, 190px);
  border-color: rgba(11, 113, 128, 0.22);
  transform: rotate(2deg);
}

.matteo-source span {
  color: #0b7180;
}

.diagram-lines {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  min-height: 86px;
}

.diagram-lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(25, 23, 22, 0.14);
  transform: translateX(-50%);
}

.diagram-lines span {
  position: absolute;
  top: 10px;
  width: 34%;
  height: 2px;
  background: rgba(25, 23, 22, 0.16);
}

.diagram-lines span:first-child {
  left: 18%;
  transform: rotate(18deg);
  transform-origin: right center;
}

.diagram-lines span:last-child {
  right: 18%;
  transform: rotate(-18deg);
  transform-origin: left center;
}

.diagram-center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(210px, 70%);
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 10px 10px 0 rgba(175, 78, 54, 0.23);
}

.diagram-center span {
  color: #f2c85a;
}

.diagram-tags {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
}

.diagram-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(25, 23, 22, 0.14);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portrait-media::before {
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.24) 46% 52%, transparent 52%),
    var(--rose);
}

.matteo-media::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 48%),
    #0a5d6a;
}

.photo-media::before {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 48% 52%, transparent 52%),
    #111111;
}

.main-image {
  width: min(100%, 590px);
  height: 510px;
  margin-left: auto;
  object-fit: cover;
  border: 18px solid #fff;
  box-shadow: var(--shadow);
}

.artwork-contain {
  object-fit: contain !important;
  background: #fff;
}

.main-image.artwork-dancer {
  height: 660px;
  object-position: center center;
}

.main-image.flavia-hero-frame {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #f7e2cf;
  border-color: rgba(255, 255, 255, 0.95);
}

.flavia-hero-frame img {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.flavia-hero-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.06) brightness(0.9);
  transform: scale(1.08);
}

.flavia-hero-work {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  object-position: center center;
}

.main-image.matteo-logo-hero {
  object-fit: cover;
  background: #04566c;
  border-color: rgba(232, 251, 245, 0.9);
}

.main-image.matteo-hero-frame {
  position: relative;
  overflow: hidden;
  background: #081928;
  border-color: rgba(232, 251, 245, 0.9);
}

.matteo-hero-frame img {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.matteo-hero-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.04) brightness(0.64);
  transform: scale(1.08);
}

.matteo-hero-work {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  object-position: center center;
}

.floating-image.artwork-cat {
  object-position: center center;
}

.floating-image.matteo-forest-float {
  object-fit: cover;
  border-color: rgba(232, 251, 245, 0.92);
  object-position: center center;
}

.floating-image {
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 230px;
  height: 180px;
  object-fit: cover;
  border: 12px solid var(--paper);
  box-shadow: 0 18px 48px rgba(25, 23, 22, 0.2);
}

.portrait-media .floating-image {
  width: 260px;
  height: 190px;
  transform: rotate(-4deg);
}

.portrait-media .floating-image.artwork-cat {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover !important;
}

.intersection-badge {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 48%),
    var(--ink);
}

.intersection-badge span {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.sea-placeholder {
  display: grid;
  place-items: center;
  color: #e8fbf5;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.35), transparent 11%),
    radial-gradient(circle at 70% 68%, rgba(29, 140, 120, 0.55), transparent 18%),
    linear-gradient(135deg, #082f3a, #0b7180 48%, #98d8c8);
}

.sea-placeholder span {
  width: min(72%, 360px);
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(232, 251, 245, 0.6);
  font-weight: 950;
}

.bluegreen-tile {
  background:
    radial-gradient(circle at 32% 34%, rgba(237, 248, 244, 0.9), transparent 12%),
    linear-gradient(135deg, #082f3a, #0b7180 52%, #1d8c78);
}

.bluegreen-tile.two {
  background:
    linear-gradient(90deg, transparent 12%, rgba(237, 248, 244, 0.7) 13% 18%, transparent 19%),
    linear-gradient(135deg, #0d4e59, #9fd7cd);
}

.bluegreen-tile.three {
  background:
    radial-gradient(circle at 70% 28%, #d9f6ed 0 13%, transparent 14%),
    linear-gradient(135deg, #1d8c78, #072f38);
}

.photo-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(90deg, #111 0 18%, #777 18% 34%, #d8d8d8 34% 52%, #444 52% 72%, #f7f7f7 72% 100%);
  filter: grayscale(1);
}

.large-photo {
  position: relative;
}

.large-photo::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 38px rgba(255, 255, 255, 0.1);
}

.small-photo {
  background:
    radial-gradient(circle at 42% 40%, #f4f4f1 0 12%, transparent 13%),
    linear-gradient(135deg, #111, #777 48%, #e8e8e8);
}

.portrait-photo {
  background:
    radial-gradient(circle at 50% 32%, #e8e8e8 0 14%, transparent 15%),
    linear-gradient(90deg, #111 0 30%, #555 30% 68%, #d9d9d9 68%);
}

.street-photo {
  background:
    linear-gradient(90deg, transparent 14%, #111 15% 20%, transparent 21%),
    linear-gradient(0deg, #111 0 22%, #d8d8d8 22% 100%);
}

.study-photo {
  background:
    linear-gradient(90deg, #111 0 12%, #f4f4f1 12% 24%, #555 24% 42%, #cfcfcf 42% 74%, #222 74%);
}

.css-art-frame,
.css-art-tile,
.artist-vector {
  position: relative;
  overflow: hidden;
}

.css-art-frame {
  display: block;
  margin-bottom: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(246, 176, 83, 0.58), transparent 16%),
    linear-gradient(135deg, #f3dfca 0 34%, #d8aa76 34% 35%, #efe5dc 35% 100%);
}

.css-art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 35, 54, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(17, 35, 54, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.32;
}

.original-hero-placeholder .sun {
  position: absolute;
  top: 48px;
  right: 52px;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e5a83d;
}

.canvas-piece {
  position: absolute;
  border: 10px solid #5d3b22;
  box-shadow: 0 18px 38px rgba(30, 20, 12, 0.22);
}

.piece-one {
  top: 72px;
  left: 18%;
  width: 310px;
  height: 370px;
  background:
    radial-gradient(circle at 28% 34%, #f25545 0 8%, transparent 9%),
    radial-gradient(circle at 63% 58%, #28a78a 0 10%, transparent 11%),
    linear-gradient(140deg, #f4c34d, #df5c55 38%, #185a88 39% 64%, #f6d9ac 65%);
}

.piece-two {
  right: 10%;
  bottom: 56px;
  width: 205px;
  height: 265px;
  background:
    linear-gradient(90deg, transparent 16%, #1f2b38 17% 23%, transparent 24%),
    linear-gradient(90deg, transparent 48%, #b73738 49% 58%, transparent 59%),
    linear-gradient(135deg, #0e3159, #e0a042);
}

.piece-three {
  left: 7%;
  bottom: 36px;
  width: 140px;
  height: 170px;
  background:
    radial-gradient(circle at 48% 32%, #202733 0 9%, transparent 10%),
    linear-gradient(135deg, #c24d61, #f4d36b 45%, #16958e);
}

.vase {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 68px;
  height: 156px;
  border-radius: 36px 36px 10px 10px;
  background: linear-gradient(#efe4d2, #9a846d);
}

.vase::before,
.vase::after {
  content: "";
  position: absolute;
  bottom: 126px;
  width: 3px;
  height: 130px;
  background: #3a382b;
  transform-origin: bottom;
}

.vase::before {
  left: 22px;
  transform: rotate(-22deg);
}

.vase::after {
  right: 22px;
  transform: rotate(18deg);
}

.css-art-tile {
  background-color: #eee1d4;
}

.css-art-tile::before,
.css-art-tile::after {
  content: "";
  position: absolute;
}

.mini-floral {
  background:
    radial-gradient(circle at 30% 34%, #f25572 0 8%, transparent 9%),
    radial-gradient(circle at 52% 24%, #f0bc3d 0 7%, transparent 8%),
    radial-gradient(circle at 66% 42%, #d84b64 0 8%, transparent 9%),
    linear-gradient(135deg, #506b5d, #d7c19b);
}

.mini-floral::before {
  left: 45%;
  bottom: 10%;
  width: 28%;
  height: 40%;
  border-radius: 14px 14px 8px 8px;
  background: #4e392b;
}

.mini-portrait {
  background:
    radial-gradient(circle at 40% 42%, #151515 0 6%, transparent 7%),
    radial-gradient(circle at 61% 42%, #151515 0 6%, transparent 7%),
    radial-gradient(circle at 50% 68%, #b33d49 0 7%, transparent 8%),
    linear-gradient(145deg, #1d4e72, #efc44c 42%, #c44755);
}

.mini-figures {
  background: linear-gradient(135deg, #17365c, #e2a03e);
}

.mini-figures::before {
  inset: 12% 13% 14%;
  background:
    linear-gradient(90deg, transparent 10%, #242b20 11% 18%, transparent 19%),
    linear-gradient(90deg, transparent 38%, #b52e2f 39% 48%, transparent 49%),
    linear-gradient(90deg, transparent 67%, #1f8479 68% 78%, transparent 79%);
}

.mini-decor {
  background:
    radial-gradient(circle at 72% 35%, #184777 0 22%, transparent 23%),
    linear-gradient(135deg, #f06f22, #fff4df 48%, #1f6a9b);
}

.work-placeholder {
  width: 100%;
  height: 230px;
  margin-bottom: 22px;
}

.artist-vector {
  width: 100%;
  height: 520px;
  min-height: 340px;
  background:
    radial-gradient(circle at 18% 17%, rgba(240, 118, 93, 0.72), transparent 15%),
    radial-gradient(circle at 88% 22%, rgba(15, 86, 138, 0.78), transparent 22%),
    linear-gradient(135deg, #f9e8dc 0 45%, #242628 45% 100%);
}

.artist-vector::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: #151515;
}

.portrait-hat {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 48%;
  height: 16%;
  border-radius: 50%;
  background: #1c2230;
  transform: translateX(-50%) rotate(-7deg);
}

.portrait-face {
  position: absolute;
  top: 29%;
  left: 50%;
  width: 28%;
  height: 34%;
  border-radius: 48% 48% 44% 44%;
  background:
    radial-gradient(circle at 32% 56%, #e15a71 0 4%, transparent 5%),
    radial-gradient(circle at 68% 56%, #e15a71 0 4%, transparent 5%),
    linear-gradient(#f1c7a6, #bc7e61);
  transform: translateX(-50%);
}

.portrait-eye {
  position: absolute;
  top: 42%;
  width: 5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #151515;
}

.left-eye {
  left: 44%;
}

.right-eye {
  right: 44%;
}

.portrait-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42%;
  height: 35%;
  border-radius: 48% 48% 0 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.45) 49% 51%, transparent 52%),
    linear-gradient(135deg, #0f3158, #c6903d);
  transform: translateX(-50%);
}

.section {
  padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 70px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
  min-width: 0;
}

.section-head.narrow {
  max-width: 690px;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  gap: 18px;
}

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

.artist-card,
.collab-grid article,
.work-row article {
  background: var(--panel);
  border: 1px solid var(--line);
}

#artists {
  background:
    radial-gradient(circle at 12% 20%, rgba(175, 78, 54, 0.12), transparent 17%),
    radial-gradient(circle at 88% 8%, rgba(28, 117, 128, 0.12), transparent 18%),
    var(--paper);
}

.artist-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.artist-card.feature img {
  height: 430px;
}

.artist-link-card img {
  height: clamp(250px, 27vw, 340px);
}

.artist-link-card img.matteo-card-logo {
  object-fit: cover;
  background: #04566c;
}

.artist-link-card {
  overflow: visible;
}

.flavia-profile-card {
  background:
    linear-gradient(135deg, rgba(255, 245, 236, 0.96), rgba(243, 223, 211, 0.86)),
    #fff5ec;
  border-color: rgba(175, 78, 54, 0.24);
  box-shadow: 10px 10px 0 rgba(175, 78, 54, 0.12), 0 18px 46px rgba(25, 23, 22, 0.1);
}

.flavia-profile-card::before {
  background: rgba(255, 242, 201, 0.9);
  border-color: rgba(175, 78, 54, 0.16);
}

.flavia-profile-card::after,
.matteo-profile-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 6px;
  pointer-events: none;
}

.flavia-profile-card::after {
  background: linear-gradient(90deg, #af4e36, #d86d64, #d59f36);
}

.matteo-profile-card {
  background:
    linear-gradient(90deg, rgba(9, 43, 49, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(9, 43, 49, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #edf8f4, #d8eee8);
  background-size: 34px 34px, 34px 34px, auto;
  border-color: rgba(11, 113, 128, 0.24);
  box-shadow: 10px 10px 0 rgba(11, 113, 128, 0.12), 0 18px 46px rgba(9, 43, 49, 0.1);
  transform: rotate(0.65deg);
}

.matteo-profile-card::before {
  background: rgba(216, 238, 232, 0.94);
  border-color: rgba(11, 113, 128, 0.16);
}

.matteo-profile-card::after {
  background: linear-gradient(90deg, #092b31, #0b7180, #1d8c78);
}

.flavia-profile-card img,
.matteo-profile-card img {
  padding: 10px;
  border: 1px solid rgba(25, 23, 22, 0.12);
  box-sizing: border-box;
}

.flavia-profile-card img {
  background: #fffaf2;
}

.matteo-profile-card img {
  background:
    radial-gradient(circle at 50% 44%, rgba(232, 251, 245, 0.42), transparent 36%),
    #092b31;
}

.flavia-profile-card span,
.flavia-profile-card a {
  color: #af4e36;
}

.matteo-profile-card span,
.matteo-profile-card a {
  color: #0b7180;
}

.flavia-profile-card a,
.matteo-profile-card a {
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

.flavia-profile-card a:hover,
.matteo-profile-card a:hover {
  background: currentColor;
  color: #fff;
}

.artist-card div,
.collab-grid article,
.work-row article {
  padding: 20px;
}

.artist-card {
  position: relative;
  box-shadow: 0 18px 46px rgba(25, 23, 22, 0.12);
}

.artist-card::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 24px;
  width: 86px;
  height: 22px;
  background: rgba(255, 242, 201, 0.84);
  border: 1px solid rgba(25, 23, 22, 0.08);
  transform: rotate(-2deg);
}

.artist-card.placeholder:nth-child(2) {
  transform: rotate(1deg);
}

.artist-card.placeholder:nth-child(3) {
  transform: rotate(-1deg);
}

.two-artist-grid .artist-card {
  min-height: 100%;
}

.two-artist-grid .artist-card:nth-child(2) {
  transform: rotate(1deg);
}

.artist-card span,
.feature-card span,
.shop-grid span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay);
  font-weight: 900;
}

.two-artist-grid .matteo-profile-card {
  transform: rotate(0.65deg);
}

.flavia-profile-card::before {
  background: rgba(255, 242, 201, 0.9);
  border-color: rgba(175, 78, 54, 0.16);
}

.matteo-profile-card::before {
  background: rgba(216, 238, 232, 0.94);
  border-color: rgba(11, 113, 128, 0.16);
  transform: rotate(2deg);
}

.flavia-profile-card span,
.flavia-profile-card a {
  color: #af4e36;
}

.matteo-profile-card span,
.matteo-profile-card a {
  color: #0b7180;
}

.flavia-profile-card a,
.matteo-profile-card a {
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

.flavia-profile-card a:hover,
.matteo-profile-card a:hover {
  background: currentColor;
  color: #fff;
}

.dark-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(242, 200, 90, 0.12), transparent 28%),
    linear-gradient(315deg, rgba(28, 117, 128, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #121716;
  background-size: auto, auto, 38px 38px, auto;
}

.dark-section .eyebrow {
  color: #f2c85a;
}

.dark-section h2 {
  color: #fff;
}

.dark-section .section-head p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.collab-grid,
.work-row,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.studio-table {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(175, 78, 54, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.055) 1px, transparent 1px),
    var(--paper-warm);
  background-size: 44px 44px;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.material-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(25, 23, 22, 0.18);
  box-shadow: 7px 7px 0 rgba(25, 23, 22, 0.08);
  font-weight: 850;
}

.material-tags span:nth-child(3n + 1) {
  background: var(--paper-blue);
  transform: rotate(-1deg);
}

.material-tags span:nth-child(3n + 2) {
  background: #fff2c9;
  transform: rotate(1.5deg);
}

.material-tags span:nth-child(3n + 3) {
  background: var(--paper-pink);
  transform: rotate(-0.5deg);
}

.handmade-works {
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 159, 54, 0.18), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(28, 117, 128, 0.14), transparent 19%),
    var(--paper);
}

.handmade-works .work-row {
  align-items: start;
}

.handmade-works .work-row article {
  position: relative;
  border: 0;
  box-shadow: 0 16px 42px rgba(25, 23, 22, 0.13);
}

.handmade-works .work-row article::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 96px;
  height: 24px;
  background: rgba(255, 244, 205, 0.82);
  border: 1px solid rgba(25, 23, 22, 0.08);
  transform: translateX(-50%) rotate(-2deg);
}

.handmade-works .work-row article:nth-child(2) {
  margin-top: 34px;
  transform: rotate(1deg);
}

.handmade-works .work-row article:nth-child(3) {
  margin-top: 12px;
  transform: rotate(-1deg);
}

.collab-grid img,
.work-row img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 22px;
}

.matteo-works .work-row img {
  height: 280px;
  padding: 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 251, 245, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%),
    #081928;
}

.dark-section .collab-grid img,
.dark-section .collaboration-archive-grid img {
  padding: 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 251, 245, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #081928;
}

.work-row img.artwork-contain {
  height: 320px;
  padding: 10px;
}

.work-row article a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay);
  font-weight: 900;
}

.work-group {
  margin-top: clamp(28px, 5vw, 58px);
}

.work-group:first-of-type {
  margin-top: 0;
}

.work-group-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.work-group-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.matteo-study-archive {
  margin-top: clamp(34px, 6vw, 70px);
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(9, 43, 49, 0.1);
}

.matteo-study-archive summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.matteo-study-archive summary::-webkit-details-marker {
  display: none;
}

.matteo-study-archive summary span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.matteo-study-archive summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.matteo-study-archive summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.matteo-study-archive[open] summary::after {
  content: "-";
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.archive-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(9, 43, 49, 0.12);
}

.archive-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 8px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 251, 245, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%),
    #081928;
}

.archive-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.archive-grid figcaption strong {
  font-size: 0.94rem;
  line-height: 1.15;
}

.archive-grid figcaption span {
  color: var(--soft-text);
  font-size: 0.84rem;
  line-height: 1.45;
}

.matteo-feature-work {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(25, 23, 22, 0.12);
}

.matteo-feature-work img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #081928;
}

.matteo-feature-work p:not(.eyebrow) {
  color: var(--soft-text);
  line-height: 1.72;
}

.collab-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.collaboration-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: 12px;
}

.collaboration-feature-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.collaboration-feature-grid article:nth-child(2),
.collaboration-feature-grid article:nth-child(3) {
  margin-top: 0;
}

.collaboration-feature-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.45vw, 1.46rem);
  font-weight: 500;
}

.collaboration-feature-grid p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.collaboration-feature-grid img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: zoom-in;
  justify-self: center;
}

.collaboration-feature-grid .feature-tall {
  grid-row: auto;
}

.collaboration-feature-grid .feature-tall img {
  height: clamp(160px, 16vw, 205px);
  aspect-ratio: auto;
}

.collaboration-feature-grid .feature-square img {
  height: clamp(160px, 16vw, 205px);
  aspect-ratio: auto;
}

.collaboration-feature-grid .feature-wide {
  grid-column: auto;
}

.collaboration-feature-grid .feature-wide img {
  width: auto;
  height: clamp(160px, 16vw, 205px);
  aspect-ratio: auto;
}

.collaboration-archive-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 12px;
}

.collaboration-archive-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 44%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.collaboration-archive-grid img {
  width: 100%;
  max-width: none;
  height: clamp(92px, 8vw, 118px);
  padding: 6px;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: zoom-in;
  box-sizing: border-box;
}

.collaboration-archive-grid h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.12vw, 1.22rem);
  font-weight: 500;
  line-height: 1.12;
}

.collaboration-archive-grid article:nth-child(1),
.collaboration-archive-grid article:nth-child(4),
.collaboration-archive-grid article:nth-child(7) {
  grid-column: auto;
  grid-row: span 1;
}

.collaboration-archive-grid article:nth-child(3),
.collaboration-archive-grid article:nth-child(6) {
  grid-column: auto;
  aspect-ratio: auto;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.process-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rights-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.collaboration-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collaboration-grid-compact article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(25, 23, 22, 0.12);
  box-shadow: 0 16px 38px rgba(25, 23, 22, 0.1);
}

.collaboration-grid-compact img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.collaboration-grid-compact h3 {
  margin: 0;
  padding: 13px 14px 15px;
  font-size: 0.94rem;
}

.matteo-collab {
  background:
    linear-gradient(135deg, rgba(10, 93, 106, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(242, 200, 90, 0.18), transparent 30%),
    var(--mist);
}

.oss-collection-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 40%),
    linear-gradient(315deg, rgba(28, 117, 128, 0.12), transparent 34%),
    #edf5f2;
}

.oss-collection-section .section-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft-text);
  font-size: 0.96rem;
  line-height: 1.65;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 0.84fr;
  gap: 16px;
}

.oss-grid {
  align-items: start;
}

.collection-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 23, 22, 0.12);
  box-shadow: 0 16px 38px rgba(25, 23, 22, 0.1);
}

.collection-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.collection-card.main-card {
  grid-row: span 2;
}

.collection-card.main-card img {
  height: 695px;
}

.collection-card.wide-card {
  grid-column: span 2;
}

.collection-card.wide-card img {
  height: 390px;
}

.collection-card.wide-card img {
  object-position: center;
}

.collection-card h3 {
  margin: 0;
  padding: 13px 14px 15px;
  font-size: 0.94rem;
}

.personal-collab-teaser {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 36%),
    linear-gradient(315deg, rgba(216, 109, 100, 0.12), transparent 32%),
    var(--mist);
}

.teaser-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1080px;
}

.teaser-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 12px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(25, 23, 22, 0.14);
}

.teaser-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--soft-text);
  line-height: 1.72;
}

.model-section,
.artist-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--mist);
}

.model-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(28, 117, 128, 0.12), transparent 18%),
    radial-gradient(circle at 15% 88%, rgba(213, 159, 54, 0.16), transparent 20%),
    linear-gradient(90deg, rgba(25, 23, 22, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.035) 1px, transparent 1px),
    var(--mist);
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
}

.model-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--soft-text);
  line-height: 1.72;
}

.contact-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  background:
    radial-gradient(circle at 78% 18%, rgba(28, 117, 128, 0.13), transparent 18%),
    linear-gradient(90deg, rgba(25, 23, 22, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.contact-routing-card {
  align-self: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    var(--paper-warm);
  border: 1px solid rgba(25, 23, 22, 0.14);
  box-shadow: 12px 12px 0 rgba(28, 117, 128, 0.1), var(--shadow);
}

.contact-routing-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.contact-routing-card p:not(.eyebrow) {
  color: var(--soft-text);
  line-height: 1.65;
}

.contact-form-section {
  background:
    linear-gradient(135deg, rgba(255, 242, 201, 0.56), transparent 32%),
    var(--mist);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.tinto-contact-form,
.form-fields-note {
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid rgba(25, 23, 22, 0.12);
  box-shadow: 8px 8px 0 rgba(175, 78, 54, 0.1);
}

.tinto-contact-form {
  display: grid;
  gap: 16px;
}

.tinto-contact-form label {
  display: grid;
  gap: 8px;
}

.tinto-contact-form label > span,
.consent-field span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tinto-contact-form input,
.tinto-contact-form select,
.tinto-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(25, 23, 22, 0.16);
  border-radius: 0;
  font: inherit;
}

.tinto-contact-form textarea {
  resize: vertical;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.tinto-contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-success {
  margin: 0;
  color: var(--teal);
  font-weight: 850;
}

.hidden-form-submit {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.form-fields-note h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 500;
}

.form-fields-note li {
  color: var(--soft-text);
  line-height: 1.62;
}

.form-fields-note ul {
  margin: 0;
  padding-left: 18px;
}

.structure-list {
  display: grid;
  gap: 10px;
}

.structure-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: start;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 42%),
    #fff;
  border: 1px solid rgba(40, 79, 71, 0.14);
  box-shadow: 6px 6px 0 rgba(28, 117, 128, 0.11);
}

.structure-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--clay);
  background: #fff2c9;
  border: 1px solid rgba(25, 23, 22, 0.12);
  font-weight: 950;
}

.structure-list strong {
  display: block;
  font-size: 1.14rem;
  line-height: 1.15;
}

.structure-list p {
  grid-column: 2;
  margin: 0;
  color: var(--soft-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.support-prints-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(213, 159, 54, 0.16), transparent 18%),
    radial-gradient(circle at 88% 78%, rgba(28, 117, 128, 0.12), transparent 19%),
    var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    #fff;
  border: 1px solid rgba(25, 23, 22, 0.12);
  box-shadow: 7px 7px 0 rgba(28, 117, 128, 0.1);
}

.support-grid span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.support-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 1.8vw, 1.72rem);
  font-weight: 500;
  line-height: 1.14;
}

.support-grid p {
  margin: 0;
  color: var(--soft-text);
  line-height: 1.58;
}

.support-grid a {
  justify-self: start;
  margin-top: 4px;
  color: var(--clay);
  font-weight: 900;
}

.artist-about {
  background:
    linear-gradient(135deg, rgba(213, 159, 54, 0.16), transparent 34%),
    #242424;
  color: #fff;
}

.artist-about img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.artist-about p {
  color: rgba(255, 255, 255, 0.76);
}

.shop-section {
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

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

.shop-grid div {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(25, 23, 22, 0.18);
  background: #fff8ef;
  box-shadow: 8px 8px 0 rgba(175, 78, 54, 0.12);
}

.shop-grid div:nth-child(2) {
  background: var(--paper-blue);
}

.shop-grid div:nth-child(3) {
  background: var(--paper-pink);
}

.shop-grid div:nth-child(4) {
  background: #fff2c9;
}

.matteo-works,
.matteo-about {
  background:
    linear-gradient(90deg, rgba(9, 43, 49, 0.05) 1px, transparent 1px),
    #edf8f4;
  background-size: 34px 34px;
}

.matteo-works article img,
.matteo-works figure img,
.matteo-feature-work img {
  cursor: zoom-in;
}

.matteo-works article img:focus,
.matteo-works figure img:focus,
.matteo-feature-work img:focus {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.matteo-contact {
  background: #0a5d6a;
}

.photo-works,
.photo-courses,
.photo-about {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    #f4f4f1;
  background-size: 30px 30px;
}

.photo-courses .shop-grid div {
  color: #111;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.16);
}

.photo-courses .shop-grid div:nth-child(even) {
  background: #deded9;
}

.photo-contact {
  background: #111;
}

.artist-card-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.artist-card-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.artist-card-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 12, 10, 0.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.animated-contact-card {
  position: relative;
  width: min(940px, 100%);
  min-height: min(660px, calc(100vh - 44px));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(175, 78, 54, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(25, 23, 22, 0.05) 1px, transparent 1px),
    #fff8ef;
  background-size: 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.card-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.card-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.card-half {
  position: absolute;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.card-half {
  width: min(265px, 42vw);
  opacity: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
  transition: transform 1.25s cubic-bezier(0.18, 0.9, 0.2, 1) 1s, filter 1.25s ease 1s;
}

.card-left {
  transform: translateX(calc(-1 * var(--card-join-offset))) translateY(18px) scale(0.96);
  transform-origin: 88% 58%;
}

.card-right {
  transform: translateX(var(--card-join-offset)) translateY(calc(18px + var(--card-right-y))) scale(0.96);
  transform-origin: 12% 58%;
}

.artist-card-modal.is-open .card-left {
  transform: translateX(clamp(-385px, -33vw, -230px)) translateY(16px) rotate(-5deg) scale(0.96);
}

.artist-card-modal.is-open .card-right {
  transform: translateX(clamp(230px, 33vw, 385px)) translateY(calc(16px + var(--card-right-y))) rotate(5deg) scale(0.96);
}

.card-info {
  position: relative;
  z-index: 2;
  width: min(440px, calc(100% - 46px));
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 23, 22, 0.16);
  box-shadow: 10px 10px 0 rgba(175, 78, 54, 0.14);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.45s ease 1.65s, transform 0.55s ease 1.65s;
}

.artist-card-modal.is-open .card-info {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-info h2 {
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}

.card-info > p:not(.eyebrow) {
  color: var(--soft-text);
}

.social-links {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.social-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 23, 22, 0.2);
  background: #fff8ef;
  font-weight: 900;
}

.social-links a[aria-disabled="true"] {
  color: rgba(25, 23, 22, 0.62);
}

.card-note {
  margin: 0;
  color: rgba(25, 23, 22, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.image-viewer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 21, 26, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.image-viewer-panel {
  position: relative;
  width: min(980px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(18px, 4vw, 34px);
  overflow: auto;
  padding: clamp(16px, 3vw, 24px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 248, 244, 0.94)),
    #edf8f4;
  border: 1px solid rgba(232, 251, 245, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.image-viewer-panel > img {
  width: 100%;
  max-height: min(68vh, 680px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 251, 245, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%),
    #081928;
}

.image-viewer-copy {
  align-self: center;
}

.image-viewer-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.image-viewer-copy p:not(.eyebrow) {
  color: var(--soft-text);
  line-height: 1.65;
}

.viewer-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.image-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.tinto-image-viewer {
  padding: clamp(10px, 2vw, 18px);
}

.tinto-image-viewer .image-viewer-backdrop {
  background: rgba(3, 21, 26, 0.86);
}

.tinto-image-viewer .image-viewer-panel {
  width: min(1480px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.26fr);
  gap: clamp(14px, 2.4vw, 24px);
  padding: clamp(12px, 2vw, 18px);
}

.tinto-image-viewer .image-viewer-panel > img {
  max-height: calc(100vh - 72px);
  min-height: min(70vh, 620px);
  object-fit: contain;
}

.tinto-image-viewer .image-viewer-copy {
  align-self: end;
  padding-right: 8px;
}

.tinto-image-viewer .image-viewer-copy h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.75rem);
}

.tinto-image-viewer .image-viewer-copy p:not(.eyebrow) {
  font-size: 0.94rem;
  line-height: 1.58;
}

.shop-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(38px, 6vw, 62px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--sage);
}

.artist-contact {
  background: var(--clay);
}

.contact-band .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.contact-band h2 {
  max-width: 820px;
}

@media (max-width: 960px) {
  .site-header,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hero {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
  }

  .hero > *,
  .section > *,
  .collaboration-feature-grid > *,
  .collaboration-archive-grid > *,
  .artist-grid > *,
  .collection-grid > *,
  .structure-list > * {
    min-width: 0;
  }

  .hero,
  .artist-grid,
  .collab-grid,
  .collab-strip,
  .collaboration-archive-grid,
  .work-row,
  .collaboration-grid-compact,
  .collection-grid,
  .teaser-card,
  .matteo-feature-work,
  .studio-table,
  .model-section,
  .artist-about,
  .form-shell,
  .support-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .tinto-hero-mark {
    min-height: 380px;
  }

  .tinto-diagram {
    min-height: 330px;
    width: 100%;
    grid-template-rows: auto 56px auto auto;
    gap: 12px;
    padding: 24px;
  }

  .diagram-profile {
    width: 100%;
    min-height: 76px;
    padding: 13px;
  }

  .diagram-lines {
    min-height: 56px;
  }

  .diagram-center {
    width: min(190px, 72%);
    min-height: 96px;
  }

  .main-image {
    width: calc(100% - 22px);
    height: 380px;
  }

  .main-image.artwork-dancer {
    height: 540px;
  }

  .main-image.flavia-hero-frame {
    height: 540px;
  }

  .hero-media::before {
    inset: 34px 0 0 28px;
  }

  .artist-card.feature img,
  .artist-about img {
    height: 360px;
  }

  .handmade-works .work-row article:nth-child(2),
  .handmade-works .work-row article:nth-child(3),
  .two-artist-grid .artist-card:nth-child(2),
  .artist-card.placeholder:nth-child(2),
  .artist-card.placeholder:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .collab-grid article:nth-child(2),
  .collab-grid article:nth-child(3) {
    margin-top: 0;
  }

  .collaboration-feature-grid .feature-tall,
  .collaboration-feature-grid .feature-wide,
  .collaboration-archive-grid img:nth-child(1),
  .collaboration-archive-grid img:nth-child(3),
  .collaboration-archive-grid img:nth-child(4),
  .collaboration-archive-grid img:nth-child(6),
  .collaboration-archive-grid img:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .collaboration-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collaboration-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

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

  .collaboration-feature-grid article,
  .collaboration-archive-grid article {
    padding: 10px;
  }

  .collaboration-feature-grid .feature-tall img,
  .collaboration-feature-grid .feature-square img,
  .collaboration-feature-grid .feature-wide img {
    height: clamp(190px, 28vw, 250px);
    aspect-ratio: auto;
  }

  .collaboration-archive-grid img {
    height: clamp(118px, 22vw, 172px);
  }

  .collection-card.main-card,
  .collection-card.wide-card {
    grid-column: auto;
    grid-row: auto;
  }

  .oss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collection-card.main-card img,
  .collection-card.wide-card img,
  .collection-card img {
    height: clamp(220px, 31vw, 260px);
  }

  .oss-grid .collection-card img {
    box-sizing: border-box;
    padding: 12px;
    object-fit: contain;
    background: #f8fbf9;
  }

  .oss-grid .collection-card.main-card img {
    height: clamp(280px, 42vw, 340px);
  }

  .oss-grid .collection-card.wide-card img {
    height: clamp(200px, 29vw, 240px);
  }

  .image-viewer-panel {
    grid-template-columns: 1fr;
  }

  .tinto-image-viewer .image-viewer-panel {
    grid-template-columns: 1fr;
  }

  .tinto-image-viewer .image-viewer-panel > img {
    min-height: 0;
    max-height: 72vh;
  }

  .image-viewer-copy {
    align-self: start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .contact-band {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header {
    gap: 12px;
    padding: 14px 20px;
    overflow: visible;
  }

  .site-header nav {
    position: relative;
    z-index: 110;
    gap: 10px 16px;
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .nav-dropdown {
    z-index: 200;
    right: auto;
    left: 0;
    min-width: min(230px, calc(100vw - 50px));
  }

  .hero-copy,
  .section-head,
  .model-section > div,
  .contact-band > div {
    width: calc(100vw - 50px);
    max-width: calc(100vw - 50px);
  }

  .hero-copy h1,
  .hero-copy p,
  .section-head h2,
  .section-head p,
  .contact-band h2 {
    width: 100%;
    max-width: 100%;
  }

  .collaboration-feature-grid,
  .collaboration-archive-grid,
  .artist-grid,
  .collection-grid,
  .structure-list {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  h1,
  .artist-page h1 {
    font-size: clamp(3.55rem, 19vw, 5.2rem);
  }

  .hero-tinto h1 {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  .hero-copy p:not(.eyebrow),
  .dark-section .section-head p:not(.eyebrow) {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .hero {
    padding-top: 34px;
  }

  .main-image {
    height: 330px;
    border-width: 10px;
  }

  .tinto-hero-mark {
    min-height: 260px;
  }

  .tinto-hero-mark::before {
    inset: 18px 0 22px 20px;
  }

  .tinto-diagram {
    min-height: 250px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 38px auto auto;
    gap: 8px 10px;
    padding: 16px;
    background-size: 32px 32px;
  }

  .tinto-diagram::before {
    inset: 46px 18px 46px;
  }

  .diagram-profile {
    min-height: 64px;
    padding: 10px;
    box-shadow: 6px 6px 0 rgba(25, 23, 22, 0.08);
  }

  .diagram-profile span,
  .diagram-center span {
    margin-bottom: 5px;
    font-size: 0.62rem;
  }

  .diagram-profile strong,
  .diagram-center strong {
    font-size: clamp(1.08rem, 6vw, 1.42rem);
  }

  .flavia-source,
  .matteo-source {
    width: 100%;
  }

  .flavia-source {
    justify-self: start;
    transform: rotate(-1.5deg);
  }

  .matteo-source {
    justify-self: end;
    transform: rotate(1.5deg);
  }

  .diagram-lines {
    min-height: 38px;
  }

  .diagram-lines span {
    display: block;
    top: 6px;
    width: 30%;
  }

  .diagram-center {
    width: min(178px, 72%);
    min-height: 78px;
    padding: 12px;
    box-shadow: 7px 7px 0 rgba(175, 78, 54, 0.22);
  }

  .diagram-tags {
    gap: 4px;
  }

  .diagram-tags span {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .collaboration-feature-grid .feature-tall img,
  .collaboration-feature-grid .feature-square img,
  .collaboration-feature-grid .feature-wide img {
    height: clamp(210px, 66vw, 290px);
  }

  .collaboration-feature-grid {
    grid-template-columns: 1fr;
  }

  .two-artist-grid {
    grid-template-columns: 1fr;
  }

  .oss-grid {
    grid-template-columns: 1fr;
  }

  .oss-grid .collection-card img {
    height: clamp(210px, 58vw, 250px);
  }

  .oss-grid .collection-card.main-card img {
    height: clamp(300px, 82vw, 360px);
  }

  .oss-grid .collection-card.wide-card img {
    height: clamp(200px, 54vw, 240px);
  }

  .collaboration-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .collaboration-archive-grid article {
    gap: 6px;
    padding: 8px;
  }

  .collaboration-archive-grid img {
    height: clamp(90px, 28vw, 132px);
  }

  .collaboration-archive-grid h3 {
    font-size: clamp(0.86rem, 4vw, 1rem);
    line-height: 1.08;
  }

  .main-image.artwork-dancer {
    height: 500px;
  }

  .main-image.flavia-hero-frame {
    height: 500px;
  }

  .floating-image,
  .portrait-media .floating-image {
    width: 142px;
    height: 112px;
    bottom: 12px;
    border-width: 7px;
  }

  .portrait-media .floating-image.artwork-cat {
    width: 132px;
    height: 132px;
  }

  .button {
    width: 100%;
  }

  .animated-contact-card {
    min-height: calc(100vh - 28px);
  }

  .card-half {
    width: min(190px, 45vw);
  }

  .card-left {
    transform: translateX(calc(-0.72 * var(--card-join-offset))) translateY(-78px) scale(0.84);
  }

  .card-right {
    transform: translateX(calc(0.72 * var(--card-join-offset))) translateY(calc(-78px + var(--card-right-y))) scale(0.84);
  }

  .artist-card-modal.is-open .card-left {
    transform: translateX(-38vw) translateY(-160px) rotate(-7deg) scale(0.82);
  }

  .artist-card-modal.is-open .card-right {
    transform: translateX(38vw) translateY(calc(-160px + var(--card-right-y))) rotate(7deg) scale(0.82);
  }

  .image-viewer {
    padding: 14px;
  }

  .image-viewer-panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
  }

  .image-viewer-panel > img {
    max-height: 56vh;
  }

  .tinto-image-viewer .image-viewer-panel > img {
    max-height: 62vh;
  }

  .tinto-image-viewer .image-viewer-copy h2 {
    font-size: clamp(1.45rem, 9vw, 2.4rem);
  }
}
