:root {
  color-scheme: light;
  --ink: #141312;
  --soft-ink: #3e3a36;
  --muted: #756d64;
  --paper: #f8f6f1;
  --gallery: #ffffff;
  --line: rgba(20, 19, 18, 0.12);
  --bronze: #A97142;
  --sage: #737c66;
  --clay: #9b5f43;
  --shadow: 0 24px 60px rgba(20, 19, 18, 0.14);
  --header-gutter: clamp(18px, 4vw, 48px);
  --site-content-max: 1540px;
  --site-content-width: min(var(--site-content-max), calc(100% - (var(--header-gutter) * 2)));
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-ui: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dropdown-open-dur: 250ms;
  --dropdown-close-dur: 150ms;
  --dropdown-pre-scale: 0.97;
  --dropdown-closing-scale: 0.99;
  --dropdown-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #171412;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

button,
input,
textarea,
select {
  font-family: var(--font-ui);
}

body.nav-open,
body.nav-closing {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.sms-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 14px var(--header-gutter);
  color: var(--ink);
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 0;
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.sms-header.is-scrolled {
  background: rgba(248, 246, 241, 0.96);
  box-shadow: 0 10px 30px rgba(20, 19, 18, 0.08);
}

body.has-hero .sms-header:not(.is-scrolled):not(.nav-active),
body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) {
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.has-hero .sms-header.nav-active {
  color: var(--ink);
  background: rgba(248, 246, 241, 0.98);
  box-shadow: 0 10px 30px rgba(20, 19, 18, 0.08);
  backdrop-filter: blur(18px);
}

body.has-hero .sms-header:not(.is-scrolled):not(.nav-active) .brand,
body.has-hero .sms-header:not(.is-scrolled):not(.nav-active) .site-nav,
body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) .brand,
body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) .site-nav {
  text-shadow: none;
}

body.has-hero .sms-header:not(.is-scrolled):not(.nav-active) .site-nav,
body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) .site-nav {
  color: rgba(255, 255, 255, 0.92);
}

body.no-hero main {
  padding-top: 72px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 236px;
  font-weight: 300;
  text-transform: uppercase;
}

.brand span {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 0.92;
}

.brand small {
  font-family: var(--font-ui);
  color: var(--bronze);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 1;
}

body.has-hero .sms-header:not(.is-scrolled):not(.nav-active) .brand small,
body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) .brand small {
  color: #d6a35a;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(6px, 1.15vw, 14px);
  margin-right: 0;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.067em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 8px;
  border-radius: 2px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav > a::before,
.nav-group > a::before {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav > a:hover::before,
.site-nav > a:focus-visible::before,
.nav-group:hover > a::before,
.nav-group:focus-within > a::before {
  opacity: 0.68;
  transform: scaleX(1);
}

.nav-group.has-menu > a::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  opacity: 0.8;
  transform: translateY(-1px) rotate(45deg);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  display: grid;
  width: max-content;
  min-width: 360px;
  max-width: min(460px, calc(100vw - 48px));
  padding: 6px;
  background: #fbfaf6;
  border: 1px solid rgba(20, 19, 18, 0.16);
  box-shadow: 0 24px 60px rgba(20, 19, 18, 0.18);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  text-shadow: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .subnav,
.nav-group:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.subnav a,
.subnav-parent {
  justify-content: flex-start;
  min-height: 42px;
  padding: 11px 14px;
  color: var(--soft-ink);
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.067em;
  line-height: 1.25;
  text-align: left;
  text-shadow: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.subnav-parent {
  display: inline-flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: default;
}

.subnav a:hover,
.subnav-parent:hover {
  background: rgba(20, 19, 18, 0.055);
}

.subnav-item {
  position: relative;
  display: grid;
}

.subnav-item.has-submenu::before {
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 100%;
  z-index: 1;
  width: 18px;
  content: "";
}

.subnav-item > a,
.subnav-item > .subnav-parent {
  padding-right: 38px;
}

.subnav-item.has-submenu > .subnav-parent::after {
  position: absolute;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.subnav-submenu {
  position: absolute;
  top: -5px;
  left: calc(100% + 5px);
  z-index: 2;
  display: grid;
  min-width: 270px;
  padding: 6px;
  background: #fbfaf6;
  border: 1px solid rgba(20, 19, 18, 0.16);
  box-shadow: 0 24px 60px rgba(20, 19, 18, 0.18);
  opacity: 0;
  pointer-events: none;
  text-shadow: none;
  transform: translateX(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.subnav-item:hover .subnav-submenu,
.subnav-item:focus-within .subnav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.instagram-link {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  min-width: 27px;
  min-height: 27px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.instagram-link img {
  display: block;
  width: 27px;
  height: 27px;
  min-width: 27px;
  border-radius: inherit;
  object-fit: contain;
}

.site-nav .instagram-link {
  flex: 0 0 auto;
  margin-left: 0;
}

.site-nav .instagram-link::before {
  display: none;
}

.nav-toggle {
  display: none;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 78svh, 820px);
  overflow: hidden;
  background: #171412;
  isolation: isolate;
}

.home-hero {
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center 28%);
  background-size: cover;
  content: "";
  filter: saturate(0.8) contrast(1.05);
  transform: scale(1.02);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(51, 10, 10, 0.28);
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 72px, rgba(0, 0, 0, 0.72) 112px, transparent 188px);
  mask-image: linear-gradient(to bottom, #000 0, #000 72px, rgba(0, 0, 0, 0.72) 112px, transparent 188px);
}

.home-hero::after {
  display: none;
}

.home-hero::before {
  background-position: var(--hero-position, 52% 22%);
}

.artwork-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 0;
  height: clamp(620px, 82svh, 900px);
  min-height: clamp(620px, 82svh, 900px);
  padding: 0;
  background: #211c18;
  overflow: hidden;
}

.artwork-hero::before {
  display: none;
  background-position: var(--hero-position, center);
  filter: saturate(0.96) contrast(0.98) brightness(1.12);
  opacity: 0.76;
  transform: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.62), rgba(8, 7, 6, 0.28) 46%, rgba(8, 7, 6, 0.05) 78%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.44), rgba(8, 7, 6, 0) 42%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.22), rgba(8, 7, 6, 0) 26%);
}

.home-hero .hero-scrim {
  background: rgba(51, 10, 10, 0.5);
}

.artwork-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.98), rgba(24, 18, 15, 0.9) 36%, rgba(24, 18, 15, 0.42) 46%, rgba(24, 18, 15, 0) 58%);
}

.hero-content {
  align-self: end;
  width: min(1120px, calc(100% - clamp(36px, 10vw, 128px)));
  margin: 0 auto;
  padding: clamp(156px, 20svh, 230px) 0 clamp(72px, 11svh, 128px);
  color: #fff;
}

.artwork-hero .hero-content {
  align-self: end;
  width: min(100%, 720px);
  min-width: 0;
  margin: 0;
  padding: clamp(132px, 16svh, 188px) var(--header-gutter) clamp(64px, 9svh, 108px);
}

.home-hero .hero-content {
  display: block;
  align-self: end;
  width: auto;
  margin-right: var(--header-gutter);
  margin-left: var(--header-gutter);
  padding-bottom: clamp(72px, 12svh, 126px);
}

.eyebrow {
  display: none;
}

.hero-content p {
  display: none;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-content h1,
.simple-page h1,
.contact-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-hero .hero-content h1 {
  display: grid;
  max-width: min(460px, 54vw);
  font-size: clamp(56px, 7vw, 98px);
  font-weight: 300;
  letter-spacing: 0.11em;
  line-height: 0.82;
}

.home-hero .hero-content > span {
  display: none;
}

.home-hero .hero-content p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .hero-content p::before {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.home-hero .hero-content h1 .hero-title-bronze {
  color: var(--bronze);
}

.home-hero .hero-content h1 small {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.75vw, 26px);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
}

.artwork-hero .hero-content h1 {
  max-width: min(100%, 16ch);
  font-size: clamp(46px, 5vw, 76px);
  letter-spacing: 0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.artwork-hero .hero-content h1.hero-title-two-tone {
  display: grid;
  gap: 0.04em;
  max-width: min(100%, 18ch);
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 0.95;
}

.artwork-hero .hero-content h1.hero-title-two-tone span {
  display: block;
  white-space: nowrap;
}

.artwork-hero .hero-content h1.hero-title-two-tone .hero-title-bronze {
  color: var(--bronze);
}

.page-hero--sculpture-gallery-1-2 .hero-content h1,
.page-hero--sculpture-gallery-1-and-2 .hero-content h1 {
  font-size: clamp(48px, 4.4vw, 68px);
}

.hero-content > span {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.55;
}

.artwork-hero .hero-content > span {
  max-width: 620px;
}

.hero-artwork {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: stretch;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  max-height: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: #211c18;
  overflow: hidden;
}

.hero-artwork img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: var(--hero-artwork-position, var(--hero-position, center));
  border-radius: 0;
  box-shadow: none;
}

.page-hero--low-res-artwork .hero-artwork {
  place-items: center;
}

.page-hero--low-res-artwork .hero-artwork img {
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.page-hero--resilient .hero-artwork,
.page-hero--jean-cate .hero-artwork {
  place-items: center;
  background: #070605;
}

.page-hero--resilient .hero-artwork img,
.page-hero--jean-cate .hero-artwork img {
  object-fit: contain;
  min-height: 0;
}

.page-hero--contact .hero-artwork {
  place-items: center;
  background: #070605;
}

.page-hero--contact .hero-artwork img {
  min-height: 0;
  object-fit: contain;
  object-position: var(--hero-artwork-position, center);
}

.page-hero--drawings .hero-artwork {
  background: #070605;
}

.page-hero--drawings .hero-artwork img {
  object-fit: contain;
  object-position: var(--hero-artwork-position, center);
}

.page-hero--paintings .hero-artwork {
  place-items: center;
  background: #070605;
}

.page-hero--paintings .hero-artwork img {
  min-height: 0;
  object-fit: contain;
  object-position: var(--hero-artwork-position, center);
}

.page-hero--paintings {
  --paintings-hero-filter: sepia(0.07) saturate(0.89) contrast(0.96) brightness(1) hue-rotate(-2deg);
}

.page-hero--paintings::before,
.page-hero--paintings .hero-artwork img {
  filter: var(--paintings-hero-filter);
}

.page-hero--sculpture-media .hero-artwork {
  place-items: center;
  background: #070605;
}

.page-hero--sculpture-media .hero-artwork img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: var(--hero-artwork-position, center);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions > a:not(.instagram-link),
.simple-page a,
.contact-actions a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: #fff;
  background: var(--bronze);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-actions {
  margin-top: clamp(26px, 4vw, 42px);
}

.home-hero-actions > a:not(.instagram-link) {
  display: grid;
  place-items: center;
  gap: 2px;
  min-width: 220px;
  min-height: 50px;
  padding: 17px 26px;
  background: var(--bronze);
  border-color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.home-hero-actions > a span {
  display: block;
  line-height: 1.05;
}

.home-hero-actions > a.is-secondary {
  background: rgba(12, 10, 9, 0.36);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.home-intro,
.supporting-copy,
.story-layout,
.bio-layout,
.contact-panel,
.simple-page,
.home-feature {
  width: min(1180px, calc(100% - (var(--header-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0;
}

.home-intro p {
  max-width: 920px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.24;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--bronze);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-pfhof {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #171412;
  color: #fff;
}

.home-pfhof-copy {
  max-width: 430px;
}

.home-pfhof-copy h2,
.home-profile-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.04;
  text-transform: uppercase;
}

.home-pfhof-copy > p:not(.section-kicker),
.home-profile-copy > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.55;
}

.home-pfhof-copy > a,
.home-profile-copy > a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  margin-top: 30px;
  padding: 12px 18px;
  color: #fff;
  background: var(--bronze);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-legend-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, 0.8fr);
  grid-template-rows: repeat(3, auto);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.home-legend-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  color: #fff;
}

.home-legend-card.is-featured {
  grid-row: 1 / span 3;
}

.home-legend-card:not(.is-featured) {
  grid-template-columns: minmax(130px, 0.76fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-legend-card:not(.is-featured):last-child {
  border-bottom: 0;
}

.home-legend-card::before,
.home-legend-card::after {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-color: rgba(169, 113, 66, 0.72);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.home-legend-card::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.home-legend-card::after {
  right: 14px;
  bottom: 82px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.home-legend-card:not(.is-featured)::before,
.home-legend-card:not(.is-featured)::after {
  display: none;
}

.home-legend-card:hover::before,
.home-legend-card:hover::after,
.home-legend-card:focus-visible::before,
.home-legend-card:focus-visible::after {
  opacity: 1;
}

.home-legend-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.home-legend-frame {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 31vw, 520px);
  overflow: hidden;
  background: #0f0e0d;
}

.home-legend-card.is-featured .home-legend-frame {
  min-height: clamp(440px, 46vw, 680px);
}

.home-legend-card:not(.is-featured) .home-legend-frame {
  min-height: 0;
}

.home-legend-frame img {
  width: 100%;
  height: auto;
  max-height: min(70svh, 650px);
  object-fit: contain;
  filter: none;
  transition: transform 220ms ease;
}

.home-legend-card.is-featured .home-legend-frame img {
  max-height: min(76svh, 760px);
}

.home-legend-card:not(.is-featured) .home-legend-frame img {
  max-height: clamp(150px, 16vw, 210px);
}

.home-legend-card:hover img,
.home-legend-card:focus-visible img {
  transform: scale(1.012);
}

.home-legend-caption {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
}

.home-legend-card:not(.is-featured) .home-legend-caption {
  padding: 0;
}

.home-legend-caption strong {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.home-legend-caption small {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: min(740px, calc(100vw / 2.23));
  min-height: 440px;
  padding: 0;
  background: #12100f;
}

.collection-cards a {
  position: relative;
  display: block;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: #151311;
  isolation: isolate;
}

.collection-cards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: transform 240ms ease, opacity 240ms ease;
}

.collection-cards a[href="/drawings"] {
  background: #070605;
}

.collection-cards a::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 52%;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.76), rgba(10, 9, 8, 0));
  content: "";
  pointer-events: none;
}

.collection-cards a::after {
  display: none;
  content: "";
}

.collection-cards a:hover::after {
  opacity: 0;
}

.collection-cards a:hover img {
  opacity: 1;
  transform: scale(1.015);
}

.collection-cards span {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 3;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.home-quote-band {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(72px, 10vw, 128px) clamp(24px, 8vw, 140px);
  color: #fff;
  background: #1e1b18;
  text-align: left;
}

.home-quote-band blockquote {
  max-width: min(1460px, 100%);
  margin: 0;
  font-size: clamp(32px, 4.25vw, 64px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.home-quote-band p {
  margin: 0;
  color: var(--bronze);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-profile-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 126px) 0;
}

.home-profile-feature figure {
  display: grid;
  justify-items: center;
  margin: 0;
}

.home-profile-feature img {
  width: auto;
  max-width: 100%;
  max-height: min(82svh, 820px);
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.home-profile-copy {
  max-width: 610px;
}

.home-profile-copy h2 {
  color: var(--ink);
}

.home-profile-copy > p {
  color: var(--soft-ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.68;
}

.home-profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.home-profile-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.home-profile-stats dt {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
}

.home-profile-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gallery-shell {
  width: var(--site-content-width);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) 0;
}

.gallery-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.gallery-tools:empty {
  display: none;
}

.gallery-tools p {
  margin: 0;
  color: var(--sage);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tools-heading {
  display: grid;
  gap: 8px;
}

.gallery-tools-heading h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-tools label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tools input {
  width: min(360px, 64vw);
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.painting-gallery {
  width: min(1720px, calc(100% - (var(--header-gutter) * 2)));
}

.painting-gallery .masonry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(26px, 2.6vw, 46px);
}

.painting-gallery .art-card img {
  max-height: min(78svh, 760px);
}

.sculpture-catalog {
  width: 100%;
  margin: 0;
  padding: clamp(54px, 6.4vw, 98px) clamp(22px, 4vw, 72px);
  background: #181817;
  color: #f4f1ec;
}

.sculpture-gallery-section + .sculpture-gallery-section {
  padding-top: clamp(34px, 4vw, 62px);
}

.sculpture-catalog .gallery-tools {
  width: min(1840px, 100%);
  margin: 0 auto clamp(32px, 3vw, 52px);
  border-color: rgba(255, 255, 255, 0.13);
}

.sculpture-catalog .gallery-tools p {
  color: var(--bronze);
}

.sculpture-catalog .gallery-tools label {
  color: rgba(244, 241, 236, 0.66);
}

.sculpture-catalog .gallery-tools input {
  border-color: rgba(255, 255, 255, 0.14);
  background: #10100f;
  color: #f4f1ec;
}

.sculpture-catalog .gallery-tools input::placeholder {
  color: rgba(244, 241, 236, 0.42);
}

.sculpture-index .gallery-tools {
  align-items: end;
  margin-bottom: clamp(38px, 4.4vw, 72px);
  padding-bottom: clamp(24px, 3vw, 46px);
  border-bottom: 0;
}

.sculpture-index-title {
  display: grid;
  gap: 0.04em;
  max-width: min(760px, 62vw);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.6vw, 88px);
  font-weight: 300;
  letter-spacing: 0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.sculpture-index-title span:first-child {
  color: #f4f1ec;
}

.sculpture-index-title span:last-child {
  color: var(--bronze);
}

.sculpture-index .gallery-tools > input {
  width: min(390px, 32vw);
  min-height: 48px;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(177, 118, 66, 0.58);
  background: transparent;
  color: #f4f1ec;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.sculpture-index .gallery-tools > input::placeholder {
  color: rgba(244, 241, 236, 0.58);
}

.sculpture-catalog .masonry-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  justify-content: center;
  gap: clamp(28px, 2.6vw, 50px);
  width: min(1720px, 100%);
  max-width: none;
  margin: 0 auto;
}

.drawing-gallery {
  width: min(1720px, calc(100% - (var(--header-gutter) * 2)));
}

.ratio-gallery {
  --ratio-card-height: clamp(260px, 28vw, 390px);
}

.ratio-gallery.sculpture-catalog {
  --ratio-card-height: clamp(330px, 27vw, 450px);
}

.ratio-gallery .masonry-grid,
.ratio-gallery.sculpture-catalog .masonry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 3vw, 46px) clamp(20px, 2.4vw, 38px);
  max-width: 1740px;
}

.ratio-gallery .art-card {
  flex: 0 0 auto;
  width: auto;
  max-width: min(100%, 760px);
}

.ratio-gallery .art-card-media,
.ratio-gallery.sculpture-catalog .art-card-media {
  width: auto;
  height: var(--ratio-card-height);
  aspect-ratio: var(--card-ratio, 3 / 4);
}

.ratio-gallery.sculpture-index .art-card-media {
  aspect-ratio: 3 / 4;
}

.drawing-gallery .art-card-media {
  background: #f7f4ee;
}

.ratio-gallery .art-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: var(--card-focus, center);
}

.ratio-gallery.sculpture-index .art-card img {
  object-position: center top;
}

.drawing-gallery.ratio-gallery .masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  column-gap: 0;
  gap: clamp(22px, 2.6vw, 38px);
  max-width: 1680px;
}

.drawing-gallery.ratio-gallery .art-card {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
}

.drawing-gallery.ratio-gallery .art-card-media {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.drawing-gallery.ratio-gallery .art-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.art-card {
  display: grid;
  grid-template-rows: auto min-content min-content;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease;
}

.art-card:hover {
  color: var(--bronze);
  transform: translateY(-2px);
}

.art-card.is-static {
  cursor: default;
}

.art-card.is-static:hover {
  color: inherit;
  transform: none;
}

.art-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  background: transparent;
}

.art-card-media {
  display: block;
  overflow: hidden;
}

.art-card--focus-top img {
  object-position: center top;
}

.art-card.is-natural-image img {
  height: auto;
  object-fit: contain;
}

.sculpture-catalog .art-card {
  position: relative;
  grid-template-rows: auto auto auto;
  overflow: visible;
  color: #f4f1ec;
}

.sculpture-catalog .art-card-media {
  position: relative;
  isolation: isolate;
  order: 1;
  aspect-ratio: var(--card-ratio, 3 / 4);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.sculpture-index .art-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #330a0a;
  opacity: 0.2;
  transition: opacity 420ms ease;
}

.sculpture-catalog .art-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: var(--card-focus, center);
  background: #050505;
  opacity: 1;
  transform-origin: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.sculpture-index .art-card img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  will-change: transform;
}

.sculpture-index .art-card:hover img,
.sculpture-index .art-card:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0.72) contrast(1.12) brightness(1.02);
}

.sculpture-index .art-card:hover .art-card-media::before,
.sculpture-index .art-card:focus-visible .art-card-media::before {
  opacity: 0;
}

.sculpture-catalog .art-card:hover {
  color: #fff;
  transform: translateY(-3px);
}

.sculpture-catalog .art-card > .art-card-title,
.sculpture-catalog .art-card > .art-card-meta {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.art-card > span:not(.art-card-media),
.art-card > small {
  padding-right: 0;
  padding-left: 0;
}

.art-card > span:not(.art-card-media) {
  min-height: 0;
  padding-top: 12px;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.22;
  text-transform: none;
}

.art-card > small {
  min-height: 0;
  padding-top: 3px;
  padding-bottom: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.art-card > span:not(.art-card-media) + small {
  border-top: 0;
}

.sculpture-catalog .art-card > .art-card-meta {
  order: 2;
  min-height: 0;
  margin-top: clamp(18px, 1.4vw, 26px);
  padding-top: 0;
  padding-bottom: 0;
  color: var(--bronze);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.sculpture-catalog .art-card > .art-card-title {
  order: 3;
  min-height: 0;
  padding-top: 7px;
  color: #f4f1ec;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-transform: none;
}

.sculpture-gallery-light {
  background: #fbfaf7;
  color: var(--ink);
}

.sculpture-gallery-light + .sculpture-gallery-light {
  border-top: 1px solid rgba(20, 19, 18, 0.08);
}

.sculpture-gallery-light .gallery-tools {
  border-color: rgba(20, 19, 18, 0.11);
}

.sculpture-gallery-light .art-card {
  color: var(--ink);
}

.sculpture-gallery-light .art-card-media {
  background: #fff;
  border-color: rgba(20, 19, 18, 0.12);
  box-shadow: 0 18px 42px rgba(42, 32, 24, 0.1);
}

.sculpture-gallery-light .art-card img {
  background: #fff;
}

.sculpture-gallery-light .art-card > .art-card-meta {
  color: var(--bronze);
}

.sculpture-gallery-light .art-card > .art-card-title {
  color: var(--ink);
}

.art-card.is-generic-title > span:not(.art-card-media),
.art-card.is-generic-title > small,
.detail-gallery .art-card > span:not(.art-card-media),
.detail-gallery .art-card > small {
  display: none;
}

.detail-gallery--static .art-card {
  cursor: default;
}

.news-heading p,
.news-archive-heading p,
.news-story-copy > p:first-child,
.news-archive-card p {
  margin: 0;
  color: var(--bronze);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.news-shell {
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 0 clamp(76px, 8vw, 116px);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(34px, 4vw, 54px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.news-heading h1,
.news-heading h2,
.news-archive-heading h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.news-heading label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-heading input {
  width: min(360px, 64vw);
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.news-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 50px) clamp(28px, 4vw, 64px);
}

.news-story-card.art-card {
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto;
  gap: clamp(18px, 2.2vw, 30px);
  align-items: start;
  overflow: visible;
  cursor: default;
}

.news-story-card.art-card:hover,
.news-archive-card.art-card:hover {
  color: inherit;
  transform: none;
}

.news-story-media {
  display: grid;
  align-items: start;
  justify-items: start;
  overflow: hidden;
  min-height: 0;
  background: transparent;
  border: 0;
}

.news-story-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(220px, 24vw, 330px);
  object-fit: contain;
  object-position: left top;
  background: transparent;
  transition: transform 360ms ease;
}

.news-story-card.is-focus-top .news-story-media img {
  object-position: center top;
}

.news-story-card:hover .news-story-media img {
  transform: scale(1.025);
}

.news-story-copy {
  padding-top: 2px;
}

.news-story-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.06;
  text-transform: uppercase;
}

.news-story-copy > p:not(:first-child) {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 18px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(20, 19, 18, 0.38);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.news-read-link:hover,
.news-read-link:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.news-hero .news-read-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
}

.news-hero .news-read-link:hover,
.news-hero .news-read-link:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.news-archive-heading {
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line);
}

.news-archive-heading h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.news-archive-card.art-card {
  grid-template-rows: auto auto 1fr auto;
  min-height: 250px;
  padding: clamp(22px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(20, 19, 18, 0.28);
}

.news-archive-card h3 {
  margin: 12px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 1.05;
  text-transform: uppercase;
}

.news-archive-card span {
  display: block;
  min-height: 0;
  padding: 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.5;
}

.news-archive-card small {
  align-self: end;
  width: fit-content;
  min-height: 0;
  margin-top: 24px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: #121722;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0 clamp(24px, 4vw, 48px);
}

.detail-layout h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.detail-layout p {
  max-width: 620px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.65;
}

.detail-layout figure {
  margin: 0;
}

.detail-layout img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  background: transparent;
}

.detail-layout figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.back-link {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sculpture-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: var(--site-content-width);
  margin: clamp(24px, 4vw, 42px) auto 0;
}

.sculpture-detail-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 19, 18, 0.13);
  color: var(--bronze);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.sculpture-detail-nav a:last-child {
  margin-left: auto;
}

.sculpture-detail-nav a:hover,
.sculpture-detail-nav a:focus-visible {
  background: #fff;
  border-color: rgba(169, 113, 66, 0.36);
  color: #7d4f2e;
}

.detail-gallery {
  width: var(--site-content-width);
  padding-top: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.detail-gallery + .sculpture-detail-nav {
  margin-top: 0;
  margin-bottom: clamp(48px, 6vw, 86px);
}

.detail-gallery .masonry-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 390px), 1fr));
  gap: clamp(28px, 3vw, 46px);
  align-items: start;
}

.detail-gallery .art-card {
  justify-items: center;
  height: auto;
}

.detail-gallery .art-card-media {
  display: grid;
  place-items: center;
  width: 100%;
}

.detail-gallery .art-card img {
  width: auto;
  max-width: 100%;
  aspect-ratio: auto !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(20, 19, 18, 0.1);
}

.article-copy {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0 clamp(72px, 9vw, 120px);
  color: var(--soft-ink);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.72;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-copy h4:first-child {
  margin-top: 0;
}

.article-copy p {
  margin: 0 0 20px;
}

.article-copy figure {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: clamp(32px, 5vw, 52px) auto;
}

.article-media-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 6vw, 72px);
  margin: clamp(32px, 5vw, 52px) auto;
}

.article-media-row figure {
  margin: 0;
}

.article-copy img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.article-copy figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.article-copy ul,
.article-copy ol {
  margin: 0 0 24px;
  padding-left: 1.25em;
}

.story-layout,
.bio-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.story-layout--bento {
  width: min(1320px, calc(100% - 36px));
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

.story-copy,
.bio-layout > div,
.supporting-copy {
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.68;
}

.story-copy p:first-child,
.bio-layout p:first-child {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.4;
}

.story-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(16px, 2vw, 28px);
}

.story-feature {
  position: relative;
  display: grid;
  grid-column: span 3;
  align-content: start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: default;
}

.story-feature--lead {
  grid-column: span 4;
  grid-row: span 2;
}

.story-feature--portrait {
  grid-column: span 2;
}

.story-feature img {
  width: 100%;
  height: auto;
  max-height: min(84svh, 980px);
  object-fit: contain;
  background: #0f0e0d;
  box-shadow: var(--shadow);
}

.story-feature--lead img {
  max-height: min(88svh, 1080px);
}

.story-feature span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bio-layout img,
.news-grid article {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bio-layout img {
  width: 100%;
}

.about-profile,
.about-credentials {
  width: min(1320px, calc(100% - clamp(36px, 8vw, 96px)));
  margin: 0 auto;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(340px, 0.55fr) minmax(0, 1fr);
  gap: clamp(44px, 5.5vw, 92px);
  padding: clamp(68px, 8vw, 112px) 0 clamp(42px, 5vw, 72px);
}

.about-profile h2,
.credential-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-profile-media {
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vw, 34px);
}

.about-profile-media figure {
  margin: 0;
  overflow: hidden;
  background: #070605;
}

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

.about-copy {
  color: var(--soft-ink);
  font-size: clamp(23px, 1.65vw, 29px);
  line-height: 1.6;
}

.about-copy p:first-child {
  margin-top: 0;
}

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

.about-credentials {
  padding: clamp(20px, 4vw, 44px) 0 clamp(70px, 9vw, 118px);
}

.credential-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  padding: clamp(30px, 5vw, 58px) 0;
}

.credential-section ul {
  columns: 1;
  margin: 0;
  padding: 0;
  color: var(--soft-ink);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.5;
  list-style: none;
}

.credential-section li {
  margin: 0 0 16px;
}

.contact-panel,
.simple-page {
  min-height: 62vh;
}

.contact-panel--body {
  min-height: 0;
}

.contact-panel > div,
.simple-page p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}

.news-grid article {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
}

.news-grid article > a {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.news-grid article > a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.news-grid h2,
.home-feature h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.news-grid p {
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
}

.news-grid h2 {
  padding: 0 18px;
  font-size: 22px;
}

.home-feature {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.instagram-feature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.instagram-feature .instagram-link {
  pointer-events: none;
}

.sms-footer {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  padding: clamp(64px, 8vw, 108px) 0 clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(236, 230, 219, 0.9)),
    #eee8dc;
  border-top: 1px solid rgba(20, 19, 18, 0.1);
  color: var(--soft-ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.55fr) minmax(230px, 0.85fr);
  gap: clamp(42px, 8vw, 124px);
  width: var(--site-content-width);
  margin: 0 auto;
  align-items: start;
}

.footer-studio,
.footer-nav,
.footer-contact {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.footer-studio strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-studio p {
  max-width: 560px;
  margin: 18px 0 8px;
  color: rgba(37, 33, 30, 0.68);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.7;
}

.footer-instagram {
  position: relative;
  width: 27px;
  height: 27px;
  min-width: 27px;
  min-height: 27px;
  padding: 0;
  margin-top: 10px;
  border-radius: 7px;
  box-shadow: none;
  overflow: visible;
}

.footer-instagram::after {
  position: absolute;
  inset: -10px;
  border-radius: 13px;
  content: "";
}

.footer-instagram img {
  border-radius: 7px;
}

.footer-contact-instagram {
  margin-top: 8px;
}

.footer-nav h2,
.footer-contact h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: rgba(37, 33, 30, 0.7);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav h2::after,
.footer-contact h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background: var(--bronze);
  content: "";
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(37, 33, 30, 0.62);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--ink);
}

.footer-bottom {
  width: var(--site-content-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 19, 18, 0.12);
}

.sms-footer .copyright {
  margin: 0;
  color: rgba(37, 33, 30, 0.48);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.55;
}

.no-break {
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 0;
  background: rgba(12, 11, 10, 0.92);
  color: #fff;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
}

.lightbox-media img {
  max-width: 100%;
  max-height: calc(100vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-info {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
  background: rgba(20, 19, 18, 0.82);
}

.lightbox-info h2 {
  margin: 0;
  font-weight: 400;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(42px, 4.5vw, 58px);
  height: clamp(42px, 4.5vw, 58px);
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease;
  appearance: none;
}

.lightbox-control-icon {
  display: block;
  width: clamp(24px, 2.45vw, 32px);
  height: clamp(24px, 2.45vw, 32px);
  flex: 0 0 auto;
  pointer-events: none;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.lightbox-arrow[hidden] {
  display: none;
}

.lightbox-prev {
  left: clamp(12px, 2vw, 28px);
}

.lightbox-next {
  right: clamp(12px, 2vw, 28px);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
}

.lightbox-close .lightbox-control-icon {
  width: 28px;
  height: 28px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .sms-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 10px;
    transition: color 140ms ease, box-shadow 160ms ease, backdrop-filter 160ms ease;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: clamp(31px, 4.7vw, 36px);
    letter-spacing: 0.115em;
  }

  .brand small {
    font-size: clamp(13.5px, 1.6vw, 15px);
    letter-spacing: 0.29em;
  }

  .nav-toggle {
    position: relative;
    grid-column: 3;
    grid-row: 1;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    background: rgba(20, 19, 18, 0.04);
    border: 1px solid rgba(20, 19, 18, 0.2);
    border-radius: 999px;
    color: currentColor;
    cursor: pointer;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  body.has-hero .sms-header:not(.is-scrolled):not(.nav-active) .nav-toggle,
  body:has(.page-hero) .sms-header:not(.is-scrolled):not(.nav-active) .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
  }

  .nav-toggle span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 140ms ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .nav-toggle:focus {
    outline: none;
  }

  .nav-toggle:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.68);
    outline-offset: 4px;
  }

  body.nav-open .nav-toggle {
    color: var(--ink);
    background: rgba(248, 246, 241, 0.72);
    border-color: rgba(20, 19, 18, 0.18);
  }

  body.nav-open .sms-header,
  body.nav-closing .sms-header {
    color: var(--ink);
    background: rgba(248, 246, 241, 0.98);
    box-shadow: 0 10px 30px rgba(20, 19, 18, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body.nav-open .nav-toggle:focus-visible {
    outline-color: rgba(20, 19, 18, 0.34);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(42deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-42deg);
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    grid-auto-flow: row;
    justify-content: stretch;
    justify-items: start;
    align-items: start;
    max-height: calc(100svh - 72px);
    max-height: calc(100dvh - 72px);
    margin: 0;
    padding: 14px var(--header-gutter) calc(20px + env(safe-area-inset-bottom));
    overflow: auto;
    background: rgba(248, 246, 241, 0.985);
    color: var(--soft-ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid rgba(20, 19, 18, 0.12);
    box-shadow: 0 22px 42px rgba(20, 19, 18, 0.1);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transform: translateY(-12px);
    transform-origin: top center;
    transition:
      transform var(--dropdown-open-dur) var(--dropdown-ease),
      clip-path var(--dropdown-open-dur) var(--dropdown-ease),
      visibility 0s;
    visibility: hidden;
    will-change: transform, clip-path;
  }

  .site-nav.is-open {
    clip-path: inset(0);
    pointer-events: auto;
    transform: translateY(0);
    transition:
      transform var(--dropdown-open-dur) var(--dropdown-ease),
      clip-path var(--dropdown-open-dur) var(--dropdown-ease),
      visibility 0s;
    visibility: visible;
  }

  .site-nav.is-closing {
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      transform var(--dropdown-close-dur) var(--dropdown-ease),
      clip-path var(--dropdown-close-dur) var(--dropdown-ease),
      visibility 0s linear var(--dropdown-close-dur);
    visibility: visible;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 9px 0;
    font-size: clamp(16px, 4.7vw, 21px);
    font-weight: 300;
    letter-spacing: 0.075em;
    text-align: left;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 180ms var(--dropdown-ease);
  }

  .site-nav .instagram-link {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-top: 14px;
    padding: 0;
    border-radius: 10px;
  }

  .site-nav .instagram-link img {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .site-nav.is-open a,
  .site-nav.is-open .subnav-parent {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 50ms;
  }

  .site-nav.is-closing a,
  .site-nav.is-closing .subnav-parent {
    opacity: 0;
    transform: translateY(-3px);
    transition-delay: 0s;
  }

  .site-nav > a::before,
  .nav-group > a::before {
    display: none;
  }

  .nav-group {
    display: grid;
    justify-items: start;
    width: 100%;
  }

  .subnav {
    position: static;
    display: grid;
    justify-items: start;
    gap: 2px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 2px 0 12px;
    padding: 0 0 0 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(169, 113, 66, 0.28);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .subnav-item,
  .subnav-submenu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .subnav-item > a,
  .subnav-item > .subnav-parent {
    padding-right: 0;
  }

  .subnav-item.has-submenu::before {
    display: none;
  }

  .subnav-item.has-submenu > .subnav-parent::after {
    position: static;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 9px;
    border-top: 0;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    opacity: 0.68;
    transform: translateY(-2px) rotate(45deg);
  }

  .subnav-submenu {
    gap: 0;
    margin: 0 0 7px;
    padding-left: 14px;
    border-left: 1px solid rgba(169, 113, 66, 0.42);
  }

  .subnav-submenu a {
    color: var(--sage);
    font-size: clamp(13px, 3.65vw, 15px);
  }

  .nav-group:hover .subnav,
  .nav-group:focus-within .subnav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .subnav a,
  .subnav-parent {
    align-items: center;
    min-height: 34px;
    padding: 7px 0;
    color: var(--muted);
    font-size: clamp(13.5px, 3.8vw, 15.5px);
    font-weight: 400;
    letter-spacing: 0.105em;
    line-height: 1.25;
  }

  .subnav a:hover,
  .subnav a:focus-visible,
  .subnav-parent:hover,
  .subnav-parent:focus-visible {
    background: transparent;
  }

  .about-profile,
  .credential-section,
  .story-layout,
  .bio-layout,
  .detail-layout,
  .home-pfhof,
  .home-profile-feature,
  .home-feature,
  .sms-footer,
  .lightbox {
    grid-template-columns: 1fr;
  }

  .lightbox-media {
    min-height: min(68svh, 680px);
    padding: 62px 18px 24px;
  }

  .lightbox-info {
    align-content: start;
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-studio p {
    max-width: 720px;
  }

  .home-pfhof {
    align-items: start;
  }

  .home-hero .hero-content h1 {
    max-width: min(430px, 58vw);
    font-size: clamp(48px, 7.2vw, 78px);
    letter-spacing: 0.095em;
    line-height: 0.82;
  }

  .home-hero .hero-content h1 small {
    margin-top: 20px;
    font-size: clamp(16px, 2.15vw, 22px);
    letter-spacing: 0.2em;
  }

  .home-pfhof-copy,
  .home-profile-copy {
    max-width: 760px;
  }

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

  .home-legend-card.is-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .home-legend-card:not(.is-featured) {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-legend-frame,
  .home-legend-card.is-featured .home-legend-frame {
    min-height: auto;
  }

  .home-legend-frame img,
  .home-legend-card.is-featured .home-legend-frame img,
  .home-legend-card:not(.is-featured) .home-legend-frame img {
    max-height: min(70svh, 680px);
  }

  .home-legend-card:not(.is-featured) .home-legend-caption {
    padding: 16px 0 0;
  }

  .collection-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .collection-cards a {
    aspect-ratio: 0.744 / 1;
    min-height: 0;
    height: auto;
  }

  .collection-cards span {
    right: 10px;
    bottom: 22px;
    left: 10px;
    font-size: clamp(17px, 3.4vw, 34px);
  }

  .artwork-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .hero-artwork {
    justify-self: start;
    width: auto;
    max-width: min(100%, 680px);
    max-height: none;
  }

  .hero-artwork img {
    max-height: 68svh;
  }

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

  .story-feature,
  .story-feature--lead,
  .story-feature--portrait {
    grid-column: span 1;
    grid-row: auto;
  }

  .story-feature--lead {
    grid-column: 1 / -1;
  }

  .credential-section ul {
    columns: 1;
  }
}

@media (max-width: 1120px) {
  .artwork-hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0;
    background: var(--paper);
    overflow: visible;
  }

  .artwork-hero::before {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    min-height: clamp(460px, 62svh, 720px);
    background-image:
      linear-gradient(180deg, rgba(17, 13, 11, 0.42), rgba(17, 13, 11, 0.14) 15%, rgba(17, 13, 11, 0) 34%),
      var(--hero-image);
    background-position: var(--hero-mobile-position, var(--hero-position, center));
    background-size: cover;
    filter: saturate(1.02) contrast(1.08) brightness(0.96);
    opacity: 1;
    transform: none;
  }

  .page-hero--resilient::before,
  .page-hero--jean-cate::before,
  .page-hero--drawings::before,
  .page-hero--sculpture-media::before {
    min-height: clamp(560px, 78svh, 820px);
    background-image:
      linear-gradient(180deg, rgba(17, 13, 11, 0.32), rgba(17, 13, 11, 0.1) 14%, rgba(17, 13, 11, 0) 28%),
      var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    background-color: #070605;
    filter: var(--paintings-hero-filter);
  }

  .page-hero--sculpture-gallery-1-2::before,
  .page-hero--sculpture-gallery-1-and-2::before {
    min-height: clamp(430px, 58svh, 680px);
    background-position: var(--hero-mobile-position, var(--hero-position, center));
    background-size: 100% 100%, cover;
  }

  .page-hero--sculpture::before {
    min-height: clamp(430px, 58svh, 680px);
    background-position: var(--hero-mobile-position, var(--hero-position, center));
    background-size: 100% 100%, cover;
  }

  .page-hero--contact::before {
    min-height: clamp(390px, 58svh, 680px);
    height: min(74svh, calc(100vw * 1293 / 1284));
    background-image:
      linear-gradient(180deg, rgba(17, 13, 11, 0.28), rgba(17, 13, 11, 0.08) 14%, rgba(17, 13, 11, 0) 28%),
      var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    background-color: #070605;
    filter: saturate(1) contrast(1.02) brightness(0.96);
  }

  .page-hero--paintings::before {
    min-height: 0;
    height: 82.9375vw;
    background-image:
      linear-gradient(180deg, rgba(17, 13, 11, 0.28), rgba(17, 13, 11, 0.08) 14%, rgba(17, 13, 11, 0) 28%),
      var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    background-color: #070605;
    filter: saturate(1) contrast(1.02) brightness(0.96);
  }

  .artwork-hero .hero-scrim {
    display: none;
  }

  .artwork-hero .hero-content {
    width: min(1040px, calc(100% - (var(--header-gutter) * 2)));
    margin: 0 auto;
    padding: 40px 0 48px;
    color: var(--ink);
  }

  .artwork-hero .hero-content h1 {
    max-width: 100%;
    color: var(--ink);
    font-size: clamp(42px, 8vw, 68px);
    letter-spacing: 0.04em;
    line-height: 0.98;
  }

  .artwork-hero .hero-content > span {
    color: var(--soft-ink);
  }

  .artwork-hero .hero-subtitle.is-generic-subtitle {
    display: none;
  }

  .artwork-hero .hero-artwork {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: clamp(30px, 8.4vw, 34px);
    letter-spacing: 0.105em;
  }

  .brand small {
    font-size: clamp(13px, 3.65vw, 14px);
    letter-spacing: 0.28em;
  }

  .page-hero {
    min-height: 76svh;
  }

  .page-hero::before {
    background-position: var(--hero-mobile-position, var(--hero-position, center));
  }

  .home-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .artwork-hero::before {
    min-height: clamp(390px, 66svh, 620px);
  }

  .page-hero--sculpture::before {
    min-height: clamp(340px, 52svh, 500px);
  }

  .page-hero--paintings::before {
    min-height: 0;
    height: 82.9375vw;
  }

  .hero-content {
    width: min(560px, calc(100% - (var(--header-gutter) * 2)));
    padding-top: 132px;
    padding-bottom: 56px;
  }

  .artwork-hero .hero-content {
    width: min(560px, calc(100% - (var(--header-gutter) * 2)));
    margin: 0 auto;
    padding: 30px 0 36px;
  }

  .page-hero--contact .hero-content {
    padding-bottom: 18px;
  }

  .contact-panel--body {
    padding-top: 12px;
  }

  .contact-panel--body p {
    margin: 0 0 22px;
  }

  .contact-panel--body p:last-child {
    margin-bottom: 0;
  }

  .contact-panel--body .contact-actions {
    margin-top: 22px;
  }

  .hero-content h1,
  .simple-page h1,
  .contact-panel h1 {
    font-size: clamp(38px, 13vw, 58px);
    letter-spacing: 0.08em;
  }

  .artwork-hero .hero-content h1 {
    font-size: clamp(34px, 9.8vw, 48px);
    letter-spacing: 0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-content > span {
    font-size: 17px;
  }

  .hero-artwork {
    width: auto;
    max-width: min(100%, 430px);
    max-height: 48svh;
  }

  .hero-artwork img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 48svh;
  }

  .footer-bottom,
  .sms-footer .copyright {
    text-align: center;
  }

  .home-hero .hero-content {
    display: block;
    align-self: end;
    width: min(560px, calc(100% - (var(--header-gutter) * 2)));
    margin: 0 auto;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .home-hero .hero-content p,
  .home-hero .hero-content > span {
    display: none;
  }

  .home-hero .hero-content p {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .home-hero .hero-content p::before {
    width: 32px;
  }

  .home-hero .hero-content h1 {
    max-width: 286px;
    font-size: clamp(36px, 11.8vw, 52px);
    font-weight: 300;
    letter-spacing: 0.07em;
    line-height: 0.86;
  }

  .home-hero .hero-content h1 small {
    margin-top: 16px;
    width: 100%;
    font-size: clamp(16px, 4.9vw, 20px);
    letter-spacing: 0.18em;
  }

  .home-hero-actions {
    gap: 10px;
    margin-top: 24px;
    padding-right: 0;
  }

  .home-hero-actions > a:not(.instagram-link) {
    min-width: 0;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .home-pfhof {
    padding: 54px 18px;
  }

  .home-legend-grid,
  .home-profile-stats {
    grid-template-columns: 1fr;
  }

  .home-legend-frame img,
  .home-legend-card.is-featured .home-legend-frame img {
    max-height: none;
  }

  .home-legend-card::before,
  .home-legend-card::after {
    opacity: 1;
  }

  .home-legend-card::after {
    bottom: 78px;
  }

  .home-quote-band {
    padding: 62px 18px;
  }

  .home-profile-feature {
    width: min(100% - 36px, 560px);
    padding: 54px 0 66px;
  }

  .home-profile-feature img {
    max-height: none;
  }

  .gallery-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-tools input {
    width: 100%;
  }

  .sculpture-detail-nav {
    width: min(100% - 28px, 620px);
    margin-top: 24px;
  }

  .sculpture-detail-nav a {
    min-height: 0;
    padding: 10px 14px;
  }

  .sculpture-index .gallery-tools {
    gap: 28px;
    margin-bottom: 34px;
    padding-bottom: 18px;
  }

  .sculpture-index-title {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 58px);
    letter-spacing: 0.035em;
  }

  .sculpture-index .gallery-tools > input {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.18em;
  }

  .news-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .news-heading input {
    width: 100%;
  }

  .news-feature-list,
  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .news-story-card.art-card {
    grid-template-columns: minmax(118px, 0.36fr) minmax(0, 1fr);
    gap: 18px;
  }

  .news-story-media {
    min-height: 0;
  }

  .news-story-media img {
    height: auto;
    max-height: clamp(170px, 34vw, 230px);
  }

  .news-story-copy h2 {
    font-size: clamp(21px, 5.9vw, 28px);
  }

  .news-story-copy > p:not(:first-child),
  .news-archive-card span {
    font-size: 17px;
  }

  .gallery-shell:not(.sculpture-catalog) .art-card > .art-card-title {
    padding-top: 10px;
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.18;
  }

  .gallery-shell:not(.sculpture-catalog) .art-card > .art-card-meta {
    padding-top: 3px;
    font-size: clamp(13px, 3.7vw, 15px);
    letter-spacing: 0.045em;
    line-height: 1.28;
  }

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

  .sculpture-catalog .masonry-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 420px;
  }

  .sculpture-catalog .art-card img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .sculpture-catalog .art-card > .art-card-title,
  .sculpture-catalog .art-card > .art-card-meta {
    width: 100%;
  }

  .sculpture-catalog .art-card > .art-card-meta {
    margin-top: 14px;
    font-size: clamp(13px, 3.45vw, 15px);
    letter-spacing: 0.14em;
    line-height: 1.25;
  }

  .sculpture-catalog .art-card > .art-card-title {
    font-size: 24px;
  }

  .sms-header .instagram-link {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 1120px) and (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav a {
    transition: none !important;
  }
}

@media (max-width: 680px) {
  .news-shell {
    width: min(100% - 32px, 560px);
  }

  .news-story-card.art-card {
    grid-template-columns: 1fr;
  }

  .news-story-media {
    min-height: 0;
  }

  .news-story-media img {
    height: auto;
    max-height: min(74vw, 320px);
  }

  .news-read-link {
    width: 100%;
  }

  .sculpture-catalog {
    padding-right: 18px;
    padding-left: 18px;
  }

  .painting-gallery .masonry-grid {
    grid-template-columns: 1fr;
  }

  .sculpture-catalog .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
    max-width: none;
  }

  .sculpture-catalog .art-card > .art-card-title {
    padding-top: 6px;
    font-size: 18px;
    letter-spacing: 0.015em;
    line-height: 1.12;
  }

  .sculpture-catalog .art-card > .art-card-meta {
    margin-top: 12px;
    font-size: clamp(14px, 3.6vw, 15.5px);
    letter-spacing: 0.08em;
    line-height: 1.22;
  }

  .ratio-gallery .masonry-grid,
  .ratio-gallery.sculpture-catalog .masonry-grid {
    display: grid;
    align-items: start;
  }

  .drawing-gallery.ratio-gallery .masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ratio-gallery.sculpture-catalog .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }

  .ratio-gallery.sculpture-catalog .art-card--landscape {
    grid-column: auto;
  }

  .ratio-gallery .art-card,
  .ratio-gallery.sculpture-catalog .art-card {
    width: 100%;
  }

  .ratio-gallery .art-card-media,
  .ratio-gallery.sculpture-catalog .art-card-media {
    width: 100%;
    height: auto;
    aspect-ratio: var(--card-ratio, 3 / 4);
  }

  .ratio-gallery.sculpture-index .art-card-media {
    aspect-ratio: 3 / 4;
  }

  .detail-gallery {
    width: min(100% - 28px, 620px);
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .detail-gallery .masonry-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-layout--bento {
    width: min(100% - 36px, 620px);
  }
}
