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

@font-face {
  font-family: "Rubik";
  src: url("assets/fonts/rubik-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f7f6f2;
  --soft: #ebe9e3;
  --grey: #bababa;
  --muted: #676767;
  --gold: #d4af37;
  --gold-dark: #a98a21;
  --line: rgba(17, 17, 17, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Rubik", Arial, sans-serif;
  --container: 1380px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 156px);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  transition: background-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled::before,
.site-header.menu-active::before,
.legal-page .site-header::before {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid currentColor;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-color: var(--white);
  font-size: 13px;
}

.button-small:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button-gold:hover {
  border-color: var(--white);
  background: var(--white);
}

.button-outline {
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button-black {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button-black:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-block: 8px 5px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 34px;
  color: var(--gold-dark);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: var(--gold);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.site-notice {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 950;
  display: flex;
  min-height: 42px;
  padding: 8px var(--gutter);
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--gold);
  color: var(--black);
}

.site-notice p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-notice strong {
  margin-right: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-notice button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.68) contrast(1.04);
  transform: scale(1.025);
  animation: heroIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 35%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: flex;
  min-height: inherit;
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: clamp(110px, 12vh, 160px);
  align-items: center;
}

.hero-copy {
  width: min(900px, 75%);
}

.eyebrow {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(74px, 10vw, 154px);
}

.hero h1 em,
.section-dark h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--white);
  text-stroke: 1.5px var(--white);
}

.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

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

.hero-info {
  position: absolute;
  right: var(--gutter);
  bottom: 35px;
  display: flex;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  flex-direction: column;
  gap: 14px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

.hero-info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-info-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-info strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-info a:hover {
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateX(-100%);
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--gold);
  color: var(--black);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  padding-block: 17px;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: currentColor;
}

.section h2 {
  font-size: clamp(58px, 7.6vw, 112px);
}

.section:not(.section-dark) h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
}

.section-number {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.intro {
  overflow: hidden;
  isolation: isolate;
}

.intro::after {
  position: absolute;
  top: 50%;
  right: clamp(-110px, 1.5vw, 30px);
  z-index: 0;
  width: clamp(420px, 35vw, 610px);
  aspect-ratio: 595 / 842;
  transform: translateY(-50%);
  background: url("assets/images/mark-black.png") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  align-items: start;
}

.intro-grid .section-number {
  grid-column: 1 / 2;
  padding-top: 13px;
}

.intro-title-wrap {
  grid-column: 2 / 8;
}

.intro-copy {
  grid-column: 8 / 12;
  padding-top: 48px;
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
}

.intro-copy .text-link {
  margin-top: 20px;
}

.section-head {
  display: grid;
  margin-bottom: clamp(52px, 7vw, 94px);
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.72fr);
  gap: 60px;
  align-items: end;
}

.section-head > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
}

.section-head-dark > p {
  color: var(--muted);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 310px;
  padding: 40px clamp(28px, 3vw, 48px) 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.process-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  transform: scaleX(0.2);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-no {
  display: block;
  margin-bottom: 54px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.process-card:hover .process-no {
  border-color: rgba(0, 0, 0, 0.24);
  color: var(--black);
}

.process-card h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.process-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

.process-card:hover p {
  color: rgba(0, 0, 0, 0.72);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.artist-card {
  min-width: 0;
  background: var(--paper);
}

.artist-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  background: #101010;
}

.artist-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 52%);
  pointer-events: none;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 400ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.artist-card:nth-child(4) .artist-photo img {
  object-position: 45% center;
}

.artist-card:hover .artist-photo img {
  filter: saturate(1);
  transform: scale(1.035);
}

.artist-photo > span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-content {
  padding: 24px 20px 22px;
}

.artist-content > div:first-child {
  min-height: 84px;
}

.artist-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.artist-content > div:first-child p {
  margin: 7px 0 0;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.artist-content > p {
  min-height: 92px;
  margin: 17px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.artist-links {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
}

.artist-links a {
  padding-top: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-links a:first-child {
  grid-column: 1 / 2;
}

.artist-links a:nth-child(2) {
  grid-column: 2 / 3;
}

.artist-links a:last-child {
  grid-column: 1 / 3;
  color: var(--gold-dark);
}

.artist-links a:hover {
  color: var(--gold-dark);
}

.artist-links .instagram-link {
  display: inline-grid;
  width: 32px;
  height: 36px;
  padding: 10px 0 4px 10px;
  place-items: center;
  justify-self: end;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.instagram-link .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-link:hover svg,
.instagram-link:focus-visible svg {
  transform: scale(1.12);
}

.filter-bar {
  display: flex;
  margin: -12px 0 38px;
  border-bottom: 1px solid var(--line-light);
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-width: 72px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(180px, 17vw, 260px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  grid-row: span 2;
  background: #202020;
  text-align: left;
}

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

.gallery-card-tall {
  grid-row: span 3;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 50%);
  opacity: 0.72;
  transition: opacity 250ms ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 450ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1);
  transform: scale(1.035);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card > span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.gallery-card b {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card.is-entering {
  animation: galleryIn 300ms ease both;
}

.gallery-footer {
  display: flex;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gallery-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.studio {
  overflow: hidden;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(60px, 9vw, 136px);
  align-items: center;
}

.studio-copy h2 {
  margin-bottom: 34px;
}

.studio-copy .lead {
  margin: 0 0 20px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.studio-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
}

.studio-host {
  display: flex;
  width: fit-content;
  margin-top: 30px;
  padding: 9px 18px 9px 9px;
  border: 1px solid var(--line);
  align-items: center;
  gap: 13px;
}

.studio-host img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  filter: saturate(0.75);
}

.studio-host p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.studio-host span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-host strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-facts {
  display: grid;
  margin: 44px 0 38px;
  padding: 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.studio-facts div {
  padding: 20px 14px 20px 0;
  border-right: 1px solid var(--line);
}

.studio-facts div + div {
  padding-left: 16px;
}

.studio-facts div:last-child {
  border-right: 0;
}

.studio-facts dt {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.studio-collage {
  position: relative;
  display: grid;
  min-height: 700px;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: 1fr 0.46fr;
  gap: 12px;
}

.studio-image {
  margin: 0;
  overflow: hidden;
  background: #222;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 400ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-image:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.studio-image-main {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.studio-image-tall {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.studio-image-small {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.studio-stamp {
  position: absolute;
  right: 20%;
  bottom: 21%;
  display: grid;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  place-content: center;
  transform: rotate(-10deg);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.07em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.studio-stamp b {
  font-size: 12px;
  font-weight: 400;
}

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

.artwork-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: end;
}

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

.artwork-image {
  height: clamp(380px, 38vw, 570px);
  overflow: hidden;
  background: #dedbd4;
}

.artwork-image-portrait {
  height: clamp(340px, 32vw, 475px);
}

.artwork-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.artwork-image-portrait img {
  object-position: center 28%;
}

.artwork-card:hover img {
  transform: scale(1.025);
}

.artwork-meta {
  display: flex;
  padding: 20px 0 0;
  justify-content: space-between;
  gap: 20px;
}

.artwork-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.artwork-meta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.artwork-meta > span {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 14px;
  white-space: nowrap;
}

.artwork-note {
  display: flex;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.artwork-note p {
  margin: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  margin-bottom: 32px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 370px;
  color: var(--muted);
}

.faq-intro .text-link {
  margin-top: 15px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 96px;
  padding: 25px 56px 25px 0;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: 0.025em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  right: 5px;
  width: 23px;
  height: 23px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  left: 2px;
  width: 20px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 220ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--gold-dark);
}

.faq-list details > div {
  max-width: 720px;
  padding: 0 70px 28px 0;
  color: var(--muted);
}

.faq-list details p {
  margin: 0;
}

.faq-list details a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.contact {
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -18%;
  left: -10%;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(212, 175, 55, 0.035), 0 0 0 140px rgba(212, 175, 55, 0.025);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-direct {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
}

.contact-direct a {
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  flex-direction: column;
  gap: 3px;
}

.contact-direct span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 400;
}

.contact-direct a:hover strong {
  color: var(--gold);
}

.inquiry-form {
  display: grid;
  padding: clamp(28px, 4.5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #0c0c0c;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.field label span,
.check-field b {
  color: var(--gold);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.field select {
  padding-right: 32px;
  background-image: linear-gradient(45deg, transparent 50%, var(--white) 50%), linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 11px) 23px, calc(100% - 6px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  appearance: none;
}

.field select option {
  background: var(--black);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input:user-invalid,
.field textarea:user-invalid,
.check-field input:user-invalid + span {
  border-color: #e57979;
  color: #ef9b9b;
}

.field small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.4;
}

.form-hint {
  display: flex;
  margin: -3px 0 0;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
}

.form-hint span {
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.check-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.check-field a {
  border-bottom: 1px solid currentColor;
  color: var(--white);
}

.form-submit {
  width: 100%;
  margin-top: 5px;
  border: 0;
}

.form-status {
  min-height: 0;
  margin: -10px 0 0;
  color: var(--gold);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  position: relative;
  padding: 86px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--black);
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 95px;
  height: 134px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column address {
  font-style: normal;
}

.footer-column p {
  margin: 0;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom > a {
  justify-self: end;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.mobile-quickbar {
  display: none;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(4, 4, 4, 0.96);
  color: var(--white);
}

.lightbox[open] {
  display: grid;
  place-items: center;
  animation: lightboxIn 180ms ease both;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 70px 100px 48px;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 18px;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.lightbox-close {
  top: 24px;
  right: 30px;
  font-size: 31px;
  font-weight: 200;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 15px;
  bottom: 15px;
  left: 15px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1), transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
body.legal-page,
.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  height: var(--header-height);
}

.legal-page .site-header .brand,
.legal-page > .site-header > .brand {
  margin-left: var(--gutter);
}

.legal-page > .site-header {
  display: flex;
  padding-inline: var(--gutter);
  align-items: center;
  justify-content: space-between;
  background: var(--black);
}

.legal-page > .site-header::before {
  display: none;
}

.legal-page > .site-header .brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-page > .site-header nav a,
.legal-page > .site-header > a:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content {
  width: min(940px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 80px) 110px;
}

.legal-heading {
  margin-bottom: 58px;
}

.legal-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-heading .eyebrow {
  margin-bottom: 22px;
  color: var(--gold-dark);
}

.legal-heading .legal-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-content h2 {
  margin: 54px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 34px 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-content a:hover {
  color: var(--gold-dark);
}

.legal-content address {
  color: #444;
  font-style: normal;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content section + section {
  padding-top: 1px;
  border-top: 1px solid var(--line);
}

.legal-details {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.legal-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.legal-details dt {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 6px 0 0;
  color: #444;
  font-size: 14px;
}

.legal-page .site-footer {
  padding-block: 30px;
}

.legal-page .footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.legal-page .site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.legal-page .footer-legal {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.legal-page .footer-legal a:hover,
.legal-page .footer-legal a[aria-current="page"] {
  color: var(--gold);
}

.legal-page .copyright {
  justify-self: end;
  text-align: right;
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.025); }
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes galleryIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .artist-content > p {
    min-height: 72px;
  }

  .artist-card:nth-child(n + 4) {
    border-top: 1px solid var(--ink);
  }

  .artist-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .studio-grid {
    gap: 60px;
  }

  .studio-collage {
    min-height: 600px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin-right: -11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-toggle span:first-child {
    top: 19px;
  }

  .menu-toggle span:last-child {
    top: 28px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 24px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 24px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: -1;
    display: flex;
    padding: 35px var(--gutter) 40px;
    visibility: hidden;
    flex-direction: column;
    background: var(--black);
    opacity: 0;
    transform: translateY(-18px);
    transition: visibility 0s linear 260ms, opacity 240ms ease, transform 240ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu > a:not(.mobile-menu-cta) {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-light);
    align-items: baseline;
    gap: 18px;
    font-family: var(--font-display);
    font-size: clamp(38px, 9vw, 62px);
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-menu > a > span:first-child {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
  }

  .mobile-menu-cta {
    display: flex;
    min-height: 55px;
    margin-top: 28px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-menu-meta {
    display: flex;
    margin-top: auto;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
  }

  .hero-copy {
    width: 90%;
  }

  .hero-info {
    display: none;
  }

  .scroll-cue {
    right: var(--gutter);
    left: auto;
    transform: rotate(90deg) translateY(-100%);
  }

  .intro-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .intro-grid .section-number {
    grid-column: 1 / 2;
  }

  .intro-title-wrap {
    grid-column: 2 / 9;
  }

  .intro-copy {
    grid-column: 2 / 8;
    padding-top: 25px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-head > p {
    margin-left: 16.5%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card,
  .process-card:first-child {
    min-height: 0;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .process-no {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .studio-copy {
    max-width: 700px;
  }

  .studio-collage {
    min-height: 680px;
  }

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

  .artwork-card:first-child {
    grid-column: 1 / 3;
  }

  .artwork-card:first-child .artwork-image {
    height: 520px;
  }

  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .contact-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
  }

  .contact-copy .eyebrow,
  .contact-copy h2 {
    grid-column: 1 / 3;
  }

  .contact-direct {
    margin-top: 30px;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding-block: 82px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .site-notice {
    padding: 8px 12px;
    justify-content: space-between;
    gap: 8px;
  }

  .site-notice p {
    font-size: 9px;
    line-height: 1.35;
    text-align: left;
  }

  .site-notice strong {
    display: block;
    margin-right: 0;
    font-size: 10px;
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.32)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.08) 65%);
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 100px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(58px, 18.2vw, 88px);
    line-height: 0.93;
  }

  .hero h1 em,
  .section-dark h2 em,
  .section:not(.section-dark) h2 em {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 30px;
    gap: 16px;
    justify-items: start;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .ticker-track {
    padding-block: 13px;
  }

  .ticker span {
    font-size: 18px;
  }

  .section h2 {
    font-size: clamp(52px, 15.7vw, 80px);
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .intro-grid {
    display: block;
  }

  .intro-grid .section-number {
    margin-bottom: 34px;
  }

  .intro-copy {
    padding-top: 30px;
  }

  .intro::after {
    top: 44%;
    right: -155px;
    width: 390px;
    opacity: 0.045;
  }

  .section-head {
    margin-bottom: 48px;
    gap: 25px;
  }

  .section-head > p {
    margin-left: 0;
    font-size: 16px;
  }

  .artist-grid {
    margin-right: calc(var(--gutter) * -1);
    margin-left: 0;
    padding-right: var(--gutter);
    border: 0;
    grid-auto-columns: minmax(272px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    background: transparent;
  }

  .artist-grid::-webkit-scrollbar {
    display: none;
  }

  .artist-card,
  .artist-card:nth-child(n + 4),
  .artist-card:nth-child(4) {
    border: 1px solid var(--ink);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .artist-photo {
    aspect-ratio: 0.92;
  }

  .artist-content > p {
    min-height: 70px;
  }

  .gallery-grid {
    grid-auto-rows: 145px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gallery-card {
    grid-row: span 2;
  }

  .gallery-card-tall {
    grid-row: span 3;
  }

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

  .gallery-card > span {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .gallery-card b {
    font-size: 19px;
  }

  .gallery-card small {
    display: none;
  }

  .gallery-footer,
  .artwork-note {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-footer .button {
    width: 100%;
  }

  .studio-facts {
    grid-template-columns: 1fr;
  }

  .studio-facts div,
  .studio-facts div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-facts div:last-child {
    border-bottom: 0;
  }

  .studio-collage {
    min-height: 500px;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr 0.45fr;
    gap: 6px;
  }

  .studio-stamp {
    right: 12%;
    bottom: 24%;
    width: 108px;
    height: 108px;
    font-size: 15px;
  }

  .artwork-grid {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .artwork-grid::-webkit-scrollbar {
    display: none;
  }

  .artwork-card,
  .artwork-card:first-child {
    min-width: min(80vw, 330px);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .artwork-image,
  .artwork-image-portrait,
  .artwork-card:first-child .artwork-image {
    height: 390px;
  }

  .artwork-meta {
    flex-direction: column;
    gap: 10px;
  }

  .faq-layout,
  .contact-grid {
    gap: 54px;
  }

  .faq-list summary {
    min-height: 82px;
    padding-right: 44px;
    font-size: 23px;
  }

  .faq-list details > div {
    padding-right: 25px;
  }

  .contact-copy {
    display: block;
  }

  .contact-direct {
    margin-top: 38px;
  }

  .inquiry-form {
    margin-inline: calc(var(--gutter) * -1);
    padding: 32px var(--gutter);
    border-right: 0;
    border-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding-bottom: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    padding-bottom: 70px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .footer-bottom nav {
    grid-row: 2;
    grid-column: 1 / 3;
    gap: 18px;
  }

  .footer-bottom > a {
    justify-self: end;
  }

  .mobile-quickbar {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 58px;
    padding: 6px;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 6px;
    background: var(--black);
  }

  .mobile-quickbar a {
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.42);
    place-items: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-quickbar a:last-child {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
  }

  .lightbox figure {
    padding: 70px 15px 30px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .lightbox figcaption {
    padding-bottom: 15px;
    font-size: 13px;
  }

  .legal-page > .site-header {
    padding-inline: 20px;
  }

  .legal-page > .site-header nav {
    display: none;
  }

  .legal-content {
    width: calc(100% - 40px);
    padding-block: calc(var(--header-height) + 58px) 80px;
  }

  .legal-heading h1 {
    font-size: 59px;
  }

  .legal-heading .legal-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .legal-page .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-page .copyright {
    justify-self: start;
    text-align: left;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
