:root {
  --bg: #0d0e0e;
  --surface: #151616;
  --surface-2: #1d1e1d;
  --text: #eeeae1;
  --muted: #8b8b84;
  --line: rgba(238, 234, 225, .14);
  --wine: #74382f;
  --acid: #c7d6a0;
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }
::selection { background: var(--acid); color: #101111; }

.ui-select { position: relative; z-index: 4; }
.ui-select.open { z-index: 40; }
.ui-select__native { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.ui-select__trigger { width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: linear-gradient(145deg,#171818,#101111); color: var(--text); cursor: pointer; text-align: left; transition: border-color .25s, background .25s; }
.ui-select__trigger span { color: var(--text) !important; font-size: 11px !important; font-weight: 500; letter-spacing: .02em !important; text-transform: none !important; }
.ui-select__trigger i { width: 8px; height: 8px; border-right: 1px solid var(--acid); border-bottom: 1px solid var(--acid); transform: rotate(45deg) translateY(-3px); transition: transform .25s; }
.ui-select.open .ui-select__trigger { border-color: var(--acid); background: #171919; }
.ui-select.open .ui-select__trigger i { transform: rotate(225deg) translate(-2px,-1px); }
.ui-select__menu { position: absolute; left: 0; right: 0; top: calc(100% + 8px); display: grid; gap: 5px; padding: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(12,13,13,.98); box-shadow: 0 24px 70px rgba(0,0,0,.55); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility 0s .2s; }
.ui-select.open .ui-select__menu { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.ui-select__option { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; border: 0; border-radius: 9px; background: transparent; color: #aaa89f; cursor: pointer; text-align: left; font-size: 10px; }
.ui-select__option:hover,.ui-select__option.active { background: rgba(199,214,160,.1); color: var(--text); }
.ui-select__option i { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; }
.ui-select__option.active i { border-color: var(--acid); background: var(--acid); box-shadow: 0 0 0 3px rgba(199,214,160,.12); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: .035;
  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='.83' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1300;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(12,13,13,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 8px;
  letter-spacing: .18em;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cursor.visible { transform: translate(-50%, -50%) scale(1); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #090a0a;
  color: var(--text);
  transition: clip-path 1s cubic-bezier(.76,0,.24,1) .3s;
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); }
.loader__mark { font-family: var(--serif); font-size: clamp(4rem,10vw,10rem); letter-spacing: -.075em; }
.loader__mark span { color: var(--wine); font-style: italic; }
.loader__line { position: absolute; left: 5vw; right: 5vw; bottom: 7vh; height: 1px; background: rgba(255,255,255,.12); }
.loader__line i { display: block; width: 0; height: 100%; background: var(--acid); animation: loading .75s cubic-bezier(.76,0,.24,1) forwards; }
.loader__count { position: absolute; right: 5vw; bottom: calc(7vh + 14px); color: var(--muted); font-size: 9px; letter-spacing: .18em; }
@keyframes loading { to { width: 100%; } }

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3vw;
  color: white;
  mix-blend-mode: difference;
  transition: height .35s ease;
}
.nav.scrolled { height: 66px; }
.brand { position:relative; display:inline-flex; align-items:center; width:142px; height:46px; color:#fff; }
.brand img { display:block; width:100%; height:auto; object-fit:contain; filter:drop-shadow(0 3px 18px rgba(0,0,0,.35)); transition:opacity .3s,transform .45s cubic-bezier(.22,1,.36,1); }
.brand::after { content:""; position:absolute; left:0; right:65%; bottom:2px; height:1px; background:var(--acid); opacity:.65; transition:right .45s cubic-bezier(.22,1,.36,1); }
.brand:hover img { transform:translateY(-2px); }
.brand:hover::after { right:0; }
.nav__center { display: flex; gap: 38px; font-size: 9px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.nav__center a { position: relative; padding: 7px 0; }
.nav__center a::before { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .4s cubic-bezier(.22,1,.36,1); }
.nav__center a:hover::before { right: 0; }
.nav__center a.active { color: var(--acid); }
.nav__center a.active::before { right: 0; }
.menu-toggle { justify-self: end; display: flex; align-items: center; gap: 13px; border: 0; background: transparent; cursor: pointer; font-size: 9px; letter-spacing: .17em; }
.menu-toggle i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; transition: transform .35s; }
.menu-open .menu-toggle i { transform: scale(2); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  visibility: hidden;
  background: #0a0b0b;
  color: var(--text);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .85s cubic-bezier(.76,0,.24,1), visibility 0s .85s;
}
.menu-panel.open { visibility: visible; clip-path: inset(0); transition-delay: 0s; }
.menu-panel__wash { position: absolute; left: 20%; top: 10%; width: 55vw; height: 55vw; border-radius: 50%; background: var(--wine); opacity: .12; filter: blur(100px); }
.menu-panel nav { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.menu-panel nav a { font-family: var(--serif); font-size: clamp(4rem,8vw,9rem); line-height: .88; letter-spacing: -.04em; transition: color .25s, transform .4s cubic-bezier(.22,1,.36,1); }
.menu-panel nav a:hover { color: var(--acid); transform: translateX(22px); }
.menu-panel nav span { display: inline-block; width: 48px; padding-top: 1.2em; vertical-align: top; color: var(--muted); font-family: var(--sans); font-size: 8px; letter-spacing: .15em; }
.menu-panel__bottom { position: absolute; left: 3vw; right: 3vw; bottom: 32px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0b0c0c;
  border-bottom: 1px solid var(--line);
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,9,9,.82) 0%,transparent 37%,transparent 70%,rgba(8,9,9,.58) 100%); pointer-events: none; }
.hero__wash { position: absolute; inset: 0; background: radial-gradient(circle at 70% 45%,rgba(116,56,47,.24),transparent 37%); }
.hero__eyebrow { position: absolute; z-index: 4; left: 3vw; top: 25vh; margin: 0; color: rgba(255,255,255,.64); font-size: 8px; letter-spacing: .22em; }
.hero__title { position: absolute; z-index: 4; left: 2.7vw; right: 2.7vw; top: 34%; color: #f2eee5; pointer-events: none; }
.hero__title .line { overflow: hidden; }
.hero__title .line > span { display: block; font-family: var(--serif); font-size: clamp(5.5rem,12.5vw,13rem); line-height: .8; letter-spacing: -.06em; transform: translateY(110%); animation: heroTitle 1.15s cubic-bezier(.22,1,.36,1) 1s forwards; }
.hero__title .line--second { margin-left: 14vw; }
.hero__title .line--second > span { animation-delay: 1.12s; }
.hero__title em { color: var(--acid); font-weight: 400; }
@keyframes heroTitle { to { transform: translateY(0); } }
.hero__art { position: absolute; z-index: 2; left: 50%; top: 0; width: min(42vw,610px); height: 100%; transform: translateX(-50%); }
.hero__frame { position: relative; width: 100%; height: 100%; overflow: hidden; clip-path: inset(100% 0 0); animation: heroImage .95s cubic-bezier(.76,0,.24,1) .55s forwards; cursor: none; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: brightness(.72) saturate(.7); transform: scale(1.06); animation: heroZoom 1.7s cubic-bezier(.22,1,.36,1) .55s forwards; }
@keyframes heroImage { to { clip-path: inset(0); } }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__art-no { position: absolute; z-index: 2; right: -40px; bottom: 7vh; color: var(--muted); font-size: 8px; letter-spacing: .18em; transform: rotate(90deg); }
.hero__copy { position: absolute; z-index: 4; left: 3vw; bottom: 7vh; width: 290px; margin: 0; color: #aaa79f; font-size: 11px; line-height: 1.7; }
.round-link { position: absolute; z-index: 5; right: 3vw; bottom: 5vh; width: 116px; height: 116px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; font-size: 8px; letter-spacing: .17em; transition: background .35s,color .35s,border-color .35s; }
.round-link:hover { border-color: var(--acid); background: var(--acid); color: #111; }
.round-link svg { position: absolute; bottom: 21px; width: 16px; fill: none; stroke: currentColor; stroke-width: 1; }
.hero__index { position: absolute; z-index: 4; right: 3vw; top: 23vh; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 7px; letter-spacing: .16em; }
.hero__index b { color: white; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.hero__index i { width: 52px; height: 1px; background: rgba(255,255,255,.28); }
.hero__index small { font-size: 7px; }
.home-hero { min-height: 110vh; }

.home-statement { min-height: 78vh; padding: 13vh 9vw 9vh; background: #121313; display: grid; grid-template-rows: auto 1fr auto; gap: 38px; }
.home-statement__top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.home-statement h1 { margin: 0; max-width: 1080px; font-family: var(--serif); font-size: clamp(3.4rem,8vw,7.8rem); line-height: .95; letter-spacing: -.055em; }
.home-statement__bottom { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2vw; }
.home-statement__bottom p { max-width: 560px; margin: 0; color: #a5a39c; line-height: 1.9; font-size: 12px; }

.home-featured { padding: 12vh 3vw; background: #111212; }
.home-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 25px; margin-bottom: 5vh; }
.home-section-head h2 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(3.6rem,7vw,8rem); line-height: .82; letter-spacing: -.055em; }
.home-section-head h2 em { color: var(--acid); }
.home-section-head a { font-size: 9px; letter-spacing: .13em; border-bottom: 1px solid rgba(255,255,255,.4); text-transform: uppercase; }
.home-art-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2vw; }
.home-art { position: relative; display: grid; }
.home-art div { position: relative; overflow: hidden; }
.home-art div::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.home-art img { aspect-ratio: .76; object-fit: cover; transition: transform .85s cubic-bezier(.22,1,.36,1); }
.home-art:hover img { transform: scale(1.035); }
.home-art p { margin: 14px 0 0; display: grid; border-top: 1px solid rgba(255,255,255,.18); padding-top: 13px; }
.home-art span { font-size: 1.7rem; font-family: var(--serif); letter-spacing: -.01em; }
.home-art small { margin-top: 7px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.home-art--tall img { aspect-ratio: .66; }
.home-art--wide { grid-column: 2/4; }
.home-art--wide img { aspect-ratio: .4; }

.technique-marquee { padding: 2.2vh 0; overflow: hidden; border-block: 1px solid rgba(255,255,255,.12); background: #0d0e0e; }
.technique-marquee div { display: flex; align-items: center; width: max-content; gap: 26px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; animation: marquee 17s linear infinite; }
.technique-marquee span { color: var(--acid); }
.technique-marquee i { color: #5f5d56; }
@keyframes marquee { to { transform: translateX(-38%); } }

.home-artist { min-height: 92vh; grid-template-columns: 1fr; padding: 12vh 15vw; align-items: center; }
.home-artist .artist__content { max-width: 850px; }
.home-artist .artist__content h2 { margin-bottom: 2vh; }
.home-artist .artist__content p { color: #9a998f; }
.home-artist blockquote { right: 3vw; top: 14vh; width: 60vw; }

.home-disciplines { position:relative; padding: 8vh 3vw 12vh; background: radial-gradient(circle at 84% 8%,rgba(116,56,47,.18),transparent 26%),#0f1010; }
.discipline-list { margin-top: 4vh; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4vw; }
.discipline-list a { position:relative; overflow:hidden; min-height:260px; align-content:end; display: grid; gap: 12px; padding: 26px 22px; border: 1px solid rgba(255,255,255,.14); border-radius:22px; background: linear-gradient(160deg,rgba(255,255,255,.035),rgba(255,255,255,.008)); transition:transform .35s,border-color .35s; }
.discipline-list a:hover { transform:translateY(-7px); border-color:rgba(199,214,160,.42); }
.discipline-list a::after { content:""; position:absolute; width:140px; height:140px; right:-62px; top:-62px; border:1px solid rgba(199,214,160,.18); border-radius:50%; transition:transform .6s; }
.discipline-list a:hover::after { transform:scale(1.25); }
.discipline-list a span { color: var(--muted); font-size: 8px; letter-spacing: .14em; }
.discipline-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.9rem,2.8vw,2.5rem); }
.discipline-list p { margin: 0; color: #9e9c95; line-height: 1.75; font-size: 11px; }
.discipline-list b { justify-self: start; margin-top: 8px; }

.home-sale { padding: 11vh 3vw; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 90vh; gap: 2.5vw; align-items: stretch; }
.home-sale__image { overflow: hidden; }
.home-sale__image img { height: 100%; object-fit: cover; filter: saturate(.78); }
.home-sale__copy { display: flex; flex-direction: column; justify-content: center; padding: 7vh 5vw 7vh 1vw; }
.home-sale__copy h2 { margin: 3vh 0 2vh; max-width: 550px; font-size: clamp(3.9rem,7vw,7.4rem); line-height: .84; }
.home-sale__copy p { max-width: 500px; color: #a2a09a; line-height: 1.85; }

.home-contact-cta { padding: 16vh 3vw 12vh; display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; background: #0f0f0f; border-top: 1px solid rgba(255,255,255,.15); }
.home-contact-cta p { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem,6vw,7rem); line-height: .86; letter-spacing: -.05em; }
.home-contact-cta a { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 6px; }

.reveal { opacity: 0; transform: translateY(12px); animation: fadeUp .75s ease 1.45s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.section-kicker { margin: 0; color: var(--muted); font-size: 8px; font-weight: 500; letter-spacing: .21em; text-transform: uppercase; }
.manifesto { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 13vh 8vw; background: var(--bg); }
.manifesto::before { content: "“"; position: absolute; left: 3vw; top: 12vh; color: var(--wine); font-family: var(--serif); font-size: 13rem; line-height: 1; opacity: .35; }
.manifesto h2 { max-width: 1120px; margin: 11vh auto 8vh; font-family: var(--serif); font-size: clamp(3.7rem,7.2vw,8rem); font-weight: 400; line-height: 1.01; letter-spacing: -.045em; text-align: center; }
.manifesto h2 span { display: inline-block; }
.manifesto__meta { align-self: center; display: flex; gap: 44px; color: var(--muted); font-size: 8px; letter-spacing: .17em; }
.manifesto__meta span:first-child { color: var(--text); }

.works { padding: 12vh 3vw 14vh; background: #e4e0d7; color: #121313; }
.works .section-kicker { color: #6d6c67; }
.works__head { position: relative; display: grid; grid-template-columns: 1fr 2fr 1.35fr; align-items: end; margin-bottom: 11vh; }
.works__head h2 { margin: 0; font-family: var(--serif); font-size: clamp(5rem,9.5vw,10rem); font-weight: 400; line-height: .75; letter-spacing: -.055em; }
.filters { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; padding: 7px; border: 1px solid rgba(18,19,19,.18); border-radius: 999px; background: rgba(255,255,255,.16); }
.filters button { position: relative; padding: 10px 15px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: #77756f; cursor: pointer; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; transition: color .25s,border-color .25s,background .25s; }
.filters button:hover { color: #111; border-color: rgba(18,19,19,.28); }
.filters button.active { color: #121313; background: var(--acid); border-color: var(--acid); box-shadow:0 10px 26px rgba(120,130,90,.18); }
.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 12vh 2.4vw; align-items: start; }
.art-card { grid-column: span 4; cursor: pointer; }
.art-card:nth-child(3n+1) { grid-column: 1/span 4; }
.art-card:nth-child(3n+2) { grid-column: 5/span 4; margin-top: 16vh; }
.art-card:nth-child(3n+3) { grid-column: 9/span 4; margin-top: 5vh; }
.art-card__image { position: relative; aspect-ratio: .73; overflow: hidden; background: #c9c5bc; cursor: none; border: 1px solid rgba(255,255,255,.12); }
.art-card:nth-child(3n+2) .art-card__image { aspect-ratio: .86; }
.art-card__image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.art-card__image img { height: 100%; object-fit: cover; filter: saturate(.72); transition: transform 1.15s cubic-bezier(.22,1,.36,1),filter .7s; }
.art-card:hover .art-card__image img { transform: scale(1.035); filter: saturate(1); }
.art-card__badge { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 7px 9px; background: rgba(15,16,16,.82); color: white; font-size: 7px; letter-spacing: .15em; backdrop-filter: blur(8px); }
.art-card__badge.badge-sale { border: 1px solid rgba(199,214,160,.45); background: linear-gradient(90deg, rgba(199,214,160,.22), rgba(15,16,16,.83)); }
.art-card__meta { display: grid; grid-template-columns: 1fr auto; gap: 7px 15px; padding-top: 15px; border-top: 1px solid rgba(18,19,19,.28); margin-top: 10px; }
.art-card__meta h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem,2.8vw,3.3rem); font-weight: 400; line-height: 1; }
.art-card__meta strong { padding-top: 7px; font-size: 9px; font-weight: 500; letter-spacing: .1em; }
.art-card__meta p { grid-column: 1/-1; margin: 0; color: #75736d; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.works__foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14vh; padding-top: 24px; border-top: 1px solid rgba(18,19,19,.25); }
.works__foot p { margin: 0; color: #77746e; font-size: 9px; letter-spacing: .06em; }
.text-link { padding: 0 0 7px; border: 0; border-bottom: 1px solid #111; background: none; cursor: pointer; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.text-link span { margin-left: 13px; color: var(--wine); }

.artist { position: relative; min-height: 125vh; display: grid; grid-template-columns: .92fr 1fr; gap: 10vw; align-items: center; overflow: hidden; padding: 15vh 8vw; background: #101111; color: var(--text); }
.artist::after { content: "NISA"; position: absolute; right: -2vw; bottom: -5vh; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 23vw; letter-spacing: -.07em; }
.artist__portrait { position: relative; z-index: 1; width: 100%; max-width: 540px; height: 77vh; overflow: hidden; background: #222; }
.artist__portrait img { height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: transform 1.2s cubic-bezier(.22,1,.36,1),filter .8s; }
.artist__portrait:hover img { transform: scale(1.025); filter: grayscale(.2); }
.artist__portrait span { position: absolute; left: 14px; bottom: 15px; padding: 7px 9px; background: #0e0f0f; color: var(--muted); font-size: 7px; letter-spacing: .16em; }
.artist__content { position: relative; z-index: 2; max-width: 580px; }
.artist__content h2 { margin: 7vh 0; font-family: var(--serif); font-size: clamp(5.2rem,10vw,10.5rem); font-weight: 400; line-height: .68; letter-spacing: -.055em; }
.artist__content h2 em { color: var(--acid); margin-left: .62em; }
.artist__content>p:not(.section-kicker) { max-width: 500px; color: #999890; font-size: 12px; line-height: 1.9; }
.underlined { display: inline-flex; gap: 40px; margin-top: 4vh; padding-bottom: 8px; border-bottom: 1px solid var(--text); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.artist blockquote { position: absolute; right: -4vw; top: 9vh; width: 49vw; margin: 0; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: clamp(4rem,7vw,8rem); line-height: .88; }

.studio { min-height: 100vh; display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; background: var(--wine); color: #f1e8df; }
.studio__media { position: relative; overflow: hidden; clip-path: polygon(0 0,100% 0,89% 100%,0 100%); }
.studio__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(116,56,47,.42)); }
.studio__media img { height: 100%; object-fit: cover; filter: grayscale(.3) brightness(.7) saturate(.65); transition: transform 1.3s cubic-bezier(.22,1,.36,1); }
.studio:hover .studio__media img { transform: scale(1.025); }
.studio__content { display: flex; flex-direction: column; justify-content: center; padding: 10vh 7vw 10vh 3vw; }
.studio .section-kicker { color: rgba(255,255,255,.56); }
.studio__content h2 { margin: 8vh 0 5vh; font-family: var(--serif); font-size: clamp(4.8rem,8.3vw,9rem); font-weight: 400; line-height: .75; letter-spacing: -.05em; }
.studio__content h2 em { color: var(--acid); }
.studio__content p:not(.section-kicker) { max-width: 390px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.85; }
.pill { display: inline-flex; align-items: center; justify-content: space-between; gap: 46px; width: fit-content; margin-top: 5vh; padding: 17px 22px; border: 1px solid currentColor; border-radius: 100px; font-size: 8px; letter-spacing: .16em; transition: background .3s,color .3s; }
.pill:hover { background: var(--acid); color: #111; border-color: var(--acid); }
.pill>span,.underlined>span,.footer__top a>span,.home-section-head a>span,.text-link>span,.home-contact-cta a>span,.discipline-list b,.link-circle { flex: 0 0 auto; width: 27px; height: 27px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--sans); font-size: 12px; font-style: normal; line-height: 1; letter-spacing: 0; transition: transform .3s cubic-bezier(.22,1,.36,1),background .3s,color .3s; }
.pill:hover>span,.underlined:hover>span,.footer__top a:hover>span,.home-section-head a:hover>span,.text-link:hover>span,.home-contact-cta a:hover>span,.discipline-list a:hover b,.contact-links a:hover .link-circle { transform: rotate(45deg); background: var(--acid); border-color: var(--acid); color: #111; }

.site-footer { position: relative; overflow: hidden; padding: 12vh 3vw 3vh; background: #080909; color: var(--text); border-top: 1px solid rgba(255,255,255,.11); isolation: isolate; }
.footer__glow { position: absolute; z-index: -1; width: 48vw; height: 48vw; right: -18vw; top: -28vw; border-radius: 50%; background: var(--wine); opacity: .14; filter: blur(100px); }
.footer__intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; padding-bottom: 9vh; border-bottom: 1px solid var(--line); }
.footer__intro h2 { margin: 3vh 0 0; font-family: var(--serif); font-size: clamp(4.2rem,8.5vw,9rem); font-weight: 400; line-height: .77; letter-spacing: -.055em; }
.footer__intro h2 em { color: var(--acid); font-weight: 400; }
.footer__cta { flex: 0 0 auto; width: 146px; height: 146px; display: grid; place-items: center; position: relative; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; font-size: 8px; letter-spacing: .16em; transition: background .35s,color .35s,border-color .35s; }
.footer__cta span { position: absolute; right: 24px; bottom: 22px; font-size: 15px; transition: transform .35s; }
.footer__cta:hover { background: var(--acid); border-color: var(--acid); color: #101111; }
.footer__cta:hover span { transform: rotate(45deg); }
.footer__grid { display: grid; grid-template-columns: 1.8fr .8fr .8fr; gap: 6vw; padding: 8vh 0; }
.footer__identity>a { position:relative; display:inline-flex; width:min(390px,100%); padding-bottom:20px; }
.footer__identity>a::after { content:""; position:absolute; left:0; bottom:0; width:82px; height:1px; background:linear-gradient(90deg,var(--acid),transparent); }
.footer__identity>a img { display:block; width:100%; height:auto; filter:drop-shadow(0 10px 36px rgba(0,0,0,.42)); }
.footer__identity p { max-width: 350px; margin: 28px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.footer__nav,.footer__social { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer__nav>span,.footer__social>span { margin-bottom: 8px; color: #656660; font-size: 7px; letter-spacing: .2em; }
.footer__nav a,.footer__social a { position: relative; padding-bottom: 4px; color: #c8c5bc; font-family: var(--serif); font-size: 1.25rem; }
.footer__nav a::after,.footer__social a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--acid); transition:right .4s cubic-bezier(.22,1,.36,1); }
.footer__nav a:hover,.footer__social a:hover { color: var(--text); }
.footer__nav a:hover::after,.footer__social a:hover::after { right:0; }
.footer__social small { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.footer__social small i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(199,214,160,.08); animation: studioPulse 2.4s ease-in-out infinite; }
@keyframes studioPulse { 50% { opacity:.35; box-shadow:0 0 0 9px rgba(199,214,160,0); } }
.footer__marquee { margin-inline: -3vw; overflow: hidden; border-block: 1px solid var(--line); }
.footer__marquee div { width: max-content; display: flex; align-items: center; gap: 3vw; padding: 2.5vh 0; white-space: nowrap; animation: footerMarquee 24s linear infinite; }
.footer__marquee span { font-family: var(--serif); font-size: clamp(3rem,6vw,6.5rem); letter-spacing: -.045em; }
.footer__marquee i { color: var(--acid); font-size: 8px; font-style: normal; letter-spacing: .22em; }
@keyframes footerMarquee { to { transform: translateX(-50%); } }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; color: #74756f; font-size: 7px; letter-spacing: .18em; }
.footer__bottom a { color: var(--text); }
.footer__bottom a b { display: inline-grid; place-items:center; width:26px; height:26px; margin-left:9px; border:1px solid var(--line); border-radius:50%; font-size:11px; transition:.3s; }
.footer__bottom a:hover b { transform: translateY(-4px); border-color: var(--acid); color: var(--acid); }

.art-modal { position: fixed; inset: 0; width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; overflow: hidden; background: #111212; color: var(--text); }
.art-modal[open] { display: grid; grid-template-columns: 58% 42%; animation: modalIn .65s cubic-bezier(.22,1,.36,1); }
.art-modal::backdrop { background: #050606; }
@keyframes modalIn { from { opacity: 0; transform: scale(.985); } }
.modal__close { position: absolute; z-index: 4; top: 25px; right: 28px; border: 0; background: none; cursor: pointer; color: white; font-size: 8px; letter-spacing: .17em; }
.modal__close span { margin-left: 10px; font-size: 18px; }
.modal__image { position: relative; display: grid; place-items: center; padding: 5vh 6vw; overflow: hidden; background: #090a0a; }
.modal__image img { width: auto; max-width: 100%; max-height: 90vh; object-fit: contain; box-shadow: 0 25px 90px rgba(0,0,0,.48); }
.modal__thumbs { position: absolute; left: 22px; bottom: 22px; display: flex; gap: 8px; padding: 7px; background: rgba(8,9,9,.72); backdrop-filter: blur(12px); }
.modal__thumbs button { width: 54px; height: 54px; padding: 0; overflow: hidden; border: 1px solid transparent; background: transparent; cursor: pointer; opacity: .55; transition: opacity .25s,border-color .25s; }
.modal__thumbs button.active,.modal__thumbs button:hover { opacity: 1; border-color: var(--acid); }
.modal__thumbs button img { width: 100%; height: 100%; object-fit: cover; box-shadow: none; }
.modal__info { display: flex; flex-direction: column; justify-content: center; padding: 8vh 5.5vw; }
.modal__count { color: var(--muted); font-size: 8px; letter-spacing: .17em; }
.modal__info h2 { margin: 4vh 0; font-family: var(--serif); font-size: clamp(4.3rem,6.5vw,7.5rem); font-weight: 400; line-height: .82; letter-spacing: -.04em; }
.modal__specs { display: flex; flex-wrap: wrap; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.modal__specs span+span::before { content: "·"; margin-right: 14px; }
.modal__desc { max-width: 490px; margin: 4vh 0; color: #9a9992; font-size: 11px; line-height: 1.85; }
.modal__purchase { display: flex; align-items: center; justify-content: space-between; }
.modal__purchase strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.modal__purchase .pill { margin: 0; }
.modal__info>small { margin-top: 4vh; color: #74746f; font-size: 7px; letter-spacing: .08em; }

.compact-manifesto { min-height: 64vh; padding-top: 8vh; padding-bottom: 10vh; }
.sales-hero { min-height: 74vh; background: radial-gradient(circle at 72% 35%,rgba(116,56,47,.3),transparent 35%),#0b0c0c; }
.sales-hero .hero__title { top: 32%; }
.sales-lead { max-width: 330px; margin: 0 0 4px auto; color: #6d6c66; font-size: 11px; line-height: 1.7; }
.purchase-info { position:relative; overflow:hidden; padding: 13vh 3vw; background: radial-gradient(circle at 78% 10%,rgba(116,56,47,.22),transparent 28%),#111212; }
.purchase-info::before { content:""; position:absolute; left:3vw; right:3vw; top:0; height:1px; background:linear-gradient(90deg,transparent,rgba(199,214,160,.55),transparent); }
.purchase-info>h2 { margin: 5vh 0 7vh; font-family: var(--serif); font-size: clamp(4.5rem,8vw,8rem); font-weight: 400; line-height: .8; letter-spacing: -.05em; }
.purchase-info>h2 em { color: var(--acid); }

.page-intro, .contact-page { min-height: calc(100vh - 120px); padding: 16vh 9vw 10vh; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.page-intro h1, .contact-copy h1 { margin: 8vh 0 2vh; font-family: var(--serif); font-size: clamp(4.8rem,9vw,9.8rem); line-height: .77; letter-spacing: -.056em; }
.page-intro h1 em, .contact-copy h1 em { color: var(--acid); }
.page-intro p, .contact-copy p { color: #adaba2; max-width: 520px; line-height: 1.85; }

.sell-grid { margin-top: 7vh; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4vw; }
.sell-card { position:relative; overflow:hidden; min-height:320px; padding: 34px 30px; border: 1px solid rgba(255,255,255,.14); border-radius:24px; background: radial-gradient(circle at 90% 0,rgba(116,56,47,.24),transparent 34%),linear-gradient(145deg,#181919,#111212); transition:transform .35s,border-color .35s; }
.sell-card:hover { transform:translateY(-6px); border-color:rgba(199,214,160,.42); }
.sell-card::before { content:"0" counter(sell); counter-increment:sell; position:absolute; right:22px; top:20px; color:rgba(255,255,255,.08); font-family:var(--serif); font-size:3.4rem; line-height:1; }
.sell-grid { counter-reset:sell; }
.sell-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 2rem; line-height: 1; font-weight: 400; }
.sell-card p { color: #9c9a92; font-size: 12px; line-height: 1.72; }
.sell-card ul { padding-left: 16px; color: #9c9a92; line-height: 1.65; font-size: 11px; }

.compact-sells .section-text { margin: 12px 0 0; color: #72716b; }

.service-list { padding: 0 3vw 10vh; display: grid; gap: 14px; }
.service-list article { position:relative; overflow:hidden; border: 1px solid rgba(255,255,255,.14); border-radius:22px; padding: 30px 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.008)); transition:transform .35s,border-color .35s,background .35s; }
.service-list article:hover { transform:translateX(8px); border-color:rgba(199,214,160,.4); background:linear-gradient(145deg,rgba(199,214,160,.05),rgba(255,255,255,.01)); }
.service-list article span { color: var(--acid); font-size: 12px; letter-spacing: .16em; }
.service-list article h2 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(2.2rem,5vw,4rem); letter-spacing: -.02em; }
.service-list article p { margin: 0; color: #a09f97; max-width: 470px; }
.service-list article a { text-transform: uppercase; font-size: 9px; letter-spacing: .14em; border-bottom: 1px solid rgba(255,255,255,.25); }

.process-section { padding: 3vh 3vw 13vh; }
.process-section h2 { max-width: 820px; margin: 3vh 0; font-family: var(--serif); font-size: clamp(4rem,8vw,8.2rem); line-height: .84; letter-spacing: -.055em; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2vw; }
.process-grid div { min-height:230px; padding: 28px 24px; border: 1px solid rgba(255,255,255,.14); border-radius:20px; background:linear-gradient(180deg,rgba(255,255,255,.025),transparent); transition:transform .3s,border-color .3s; }
.process-grid div:hover { transform:translateY(-5px); border-color:rgba(199,214,160,.45); }
.process-grid b { color: var(--acid); font-size: 11px; letter-spacing: .12em; }
.process-grid h3 { font-family: var(--serif); font-size: 1.9rem; }
.process-grid p { color: #9f9e97; font-size: 12px; line-height: 1.75; }

.contact-page { grid-template-columns: 1.1fr 1fr; }
.contact-copy h1 { margin-top: 1.4vh; }
.contact-links { margin-top: 7vh; }
.contact-links a,.contact-links div { position: relative; display: block; color: #f3efe7; margin-bottom: 12px; padding: 13px 45px 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-links span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.contact-links b { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.3rem); font-weight: 400; }
.contact-links .link-circle { position: absolute; right: 0; bottom: 16px; }
.contact-form { border: 1px solid rgba(255,255,255,.18); padding: 34px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-size: 9px; letter-spacing: .14em; color: var(--muted); }
.contact-form input,.contact-form select,.contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.26); background: rgba(15,16,16,.9); color: var(--text); padding: 12px; font: inherit; }
.contact-form select { appearance:none; padding-right:40px; background-image:linear-gradient(45deg,transparent 50%,var(--acid) 50%),linear-gradient(135deg,var(--acid) 50%,transparent 50%); background-position:calc(100% - 17px) 52%,calc(100% - 12px) 52%; background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.contact-form button { justify-self: start; margin-top: 10px; }

.purchase-back { justify-self: end; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 8px; letter-spacing: .15em; }
.purchase-page { min-height: 100vh; padding-top: 90px; background: #0d0e0e; }
.purchase-art { min-height: 74vh; display: grid; grid-template-columns: 1.1fr .9fr; }
.purchase-art__image { display: grid; place-items: center; padding: 6vh 7vw; background: #090a0a; }
.purchase-art__image img { width: auto; max-width: 100%; max-height: 63vh; object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.purchase-art__meta { display: flex; flex-direction: column; justify-content: center; padding: 8vh 8vw 8vh 5vw; background: #171818; }
.purchase-art__meta h1 { margin: 4vh 0 2vh; font-family: var(--serif); font-size: clamp(4rem,7vw,8rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.purchase-art__meta strong { color: var(--acid); font-family: var(--serif); font-size: clamp(2rem,3vw,3.2rem); font-weight: 400; }
.purchase-art__meta>p:last-child { color: var(--muted); }
.purchase-form-wrap { padding: 12vh 8vw; display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.purchase-form-wrap h2 { margin: 4vh 0; font-family: var(--serif); font-size: clamp(4rem,7vw,7.5rem); font-weight: 400; line-height: .78; letter-spacing: -.05em; }
.purchase-form-wrap h2 em { color: var(--acid); }
.purchase-form-wrap>div>p:last-child { max-width: 430px; color: var(--muted); line-height: 1.85; }
.purchase-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 32px; border: 1px solid var(--line); background: #131414; }
.purchase-form label { display: grid; gap: 8px; }
.purchase-form label span { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.purchase-form input,.purchase-form textarea { width: 100%; padding: 13px; border: 1px solid var(--line); background: #0c0d0d; color: var(--text); font: inherit; }
.purchase-form .wide,.purchase-form .form-alert,.purchase-form .pill { grid-column: 1/-1; }
.purchase-form .pill { margin-top: 8px; }
.form-alert { padding: 14px; line-height: 1.6; }
.form-alert.error { background: #402421; color: #ffd1cb; }
.form-alert.success { background: #20392b; color: #c5efd2; }
.purchase-empty { min-height: 80vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 12vh 10vw; }
.purchase-empty h1 { margin: 4vh 0; font-family: var(--serif); font-size: clamp(4rem,9vw,9rem); font-weight: 400; line-height: .82; }

@media (max-width:900px) {
  .home-featured, .home-statement, .home-artist, .home-disciplines, .home-sale, .home-contact-cta { padding-left: 20px; padding-right: 20px; }
  .cursor { display: none; }
  .nav { height: 70px; padding: 0 18px; grid-template-columns: 1fr auto; background: linear-gradient(180deg,rgba(8,9,9,.94),rgba(8,9,9,.55) 72%,transparent); mix-blend-mode: normal; }
  .nav.scrolled { height: 64px; background: rgba(8,9,9,.93); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__center { display: none; }
  .brand { width:118px; height:40px; min-width:0; z-index:3; }
  .menu-toggle { position: relative; z-index: 3; justify-self: end; min-width: 72px; justify-content: flex-end; padding: 10px 0; color: #fff; }
  .menu-panel { padding: 80px 20px 60px; }
  .menu-panel nav { width: 100%; align-items: flex-start; }
  .menu-panel nav a { width: 100%; font-size: clamp(3.1rem,14vw,6.5rem); line-height: 1.05; }
  .menu-panel nav span { width: 38px; padding-top: .8em; }
  .menu-panel__bottom { left: 20px; right: 20px; bottom: 20px; gap: 15px; flex-wrap: wrap; }
  .hero { min-height: 900px; }
  .hero::after { background: linear-gradient(180deg,rgba(8,9,9,.66),rgba(8,9,9,.14) 34%,rgba(8,9,9,.2) 54%,rgba(8,9,9,.96) 88%); }
  .hero__eyebrow { left: 20px; top: 125px; }
  .hero__title { left: 18px; right: 18px; top: 205px; text-shadow: 0 3px 25px rgba(0,0,0,.75); }
  .hero__title .line>span { font-size: clamp(3.7rem,16vw,7.5rem); line-height: .9; }
  .hero__title .line--second { margin-left: 0; }
  .hero__art { left: auto; right: 0; top: 0; width: 82vw; transform: none; }
  .hero__frame img { filter: brightness(.58) saturate(.7); }
  .hero__copy { left: 20px; bottom: 35px; width: min(58vw,260px); padding: 10px 12px; background: rgba(8,9,9,.56); color: #e1ddd4; backdrop-filter: blur(8px); font-size: 11px; }
  .round-link { right: 20px; bottom: 28px; width: 82px; height: 82px; }
  .hero__index { display: none; }
  .home-art-grid, .discipline-list { grid-template-columns: 1fr; }
  .home-art--wide { grid-column: auto; }
  .home-art img { aspect-ratio: .9; }
  .home-art--tall img { aspect-ratio: .8; }
  .home-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .home-statement { min-height: auto; padding-top: 15vh; padding-bottom: 8vh; }
  .home-statement__bottom { grid-template-columns: 1fr; gap: 25px; }
  .home-statement h1 { color: #f4f0e7; font-size: clamp(2.8rem,11vw,5rem); line-height: 1.02; }
  .technique-marquee div { gap: 18px; animation-duration: 12s; }
  .home-sale { grid-template-columns: 1fr; min-height: auto; }
  .home-sale__copy { padding: 32px 0 0; }
  .home-sale__image { min-height: 58vh; }
  .home-contact-cta { padding-top: 12vh; padding-bottom: 9vh; flex-direction: column; }
  .discipline-list { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width:560px) {
  .home-hero { min-height: 96vh; }
  .home-statement h1 { font-size: clamp(2.4rem,13vw,4.4rem); }
  .home-featured { padding-top: 8vh; }
  body { font-size: 15px; }
  .hero { min-height: 820px; }
  .hero__eyebrow { top: 105px; max-width: 70vw; line-height: 1.65; }
  .hero__title { top: 190px; }
  .hero__art { width: 100vw; opacity: .92; }
  .hero__art-no { display: none; }
  .round-link { width: 74px; height: 74px; right: 14px; bottom: 25px; }
  .round-link svg { bottom: 14px; }
  .manifesto { min-height: 80vh; padding: 100px 20px; }
  .manifesto h2 { margin-block: 70px; }
  .manifesto::before { font-size: 8rem; }
  .manifesto__meta { flex-direction: column; gap: 12px; text-align: center; }
  .works { padding: 100px 20px; }
  .works__head { grid-template-columns: 1fr; gap: 30px; }
  .filters { justify-content: flex-start; }
  .gallery { grid-template-columns: 1fr; }
  .art-card,.art-card:nth-child(n) { grid-column: auto; margin-top: 0; }
  .art-card:nth-child(even) { margin-top: 0; }
  .art-card__image,.art-card:nth-child(3n+2) .art-card__image { aspect-ratio: .78; }
  .artist { min-height: auto; grid-template-columns: 1fr; padding: 110px 20px; }
  .artist__portrait { height: 60vh; }
  .artist__content h2 { margin-block: 55px; }
  .artist blockquote { display: none; }
  .studio { grid-template-columns: 1fr; }
  .studio__media { height: 62vh; clip-path: polygon(0 0,100% 0,100% 92%,0 100%); }
  .studio__content { padding: 75px 25px 100px; }
  .site-footer { padding: 85px 20px 24px; }
  .footer__intro { align-items: flex-start; flex-direction: column; padding-bottom: 65px; }
  .footer__intro h2 { font-size: clamp(3.4rem,16vw,6.2rem); }
  .footer__cta { width: 105px; height: 105px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px 25px; padding: 65px 0; }
  .footer__identity { grid-column: 1/-1; }
  .footer__identity>a { width:min(310px,92vw); }
  .footer__marquee { margin-inline: -20px; }
  .footer__bottom { gap: 15px; flex-wrap: wrap; }
  .art-modal[open] { display: block; overflow-y: auto; }
  .modal__image { height: 65vh; padding: 45px 25px; }
  .modal__info { min-height: 72vh; padding: 65px 25px; }
  .modal__close { position: fixed; padding: 10px 13px; border-radius: 30px; background: rgba(10,11,11,.82); backdrop-filter: blur(8px); }
  .page-intro,.contact-page { grid-template-columns: 1fr; padding: 15vh 20px 9vh; }
  .purchase-art,.purchase-form-wrap { grid-template-columns: 1fr; }
  .purchase-art__image { min-height: 58vh; padding: 5vh 24px; }
  .purchase-art__meta { padding: 65px 24px; }
  .purchase-form-wrap { padding: 85px 20px; gap: 45px; }
  .purchase-back { font-size: 0; width: 32px; height: 32px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; }
  .purchase-back::before { content: "←"; font-size: 15px; }
  .sales-lead { margin-left: 0; }
  .purchase-info { padding: 90px 20px; }
  .sell-grid { grid-template-columns: 1fr; }
  .service-list { padding-inline: 20px; }
  .service-list article { grid-template-columns: 1fr; align-items: start; }
  .process-section { padding-inline: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .home-contact-cta p { font-size: clamp(2.6rem,13vw,4.5rem); }
  .contact-form { padding: 20px; }
  .purchase-form { grid-template-columns: 1fr; padding: 20px; }
  .purchase-form .wide,.purchase-form .form-alert,.purchase-form .pill { grid-column: auto; }
}

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