:root {
  --black: #050505;
  --paper: #f7f6f2;
  --white: #ffffff;
  --ink: #111111;
  --gray: #6e6e6b;
  --line: #deddd8;
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
button, input, textarea, select { font: inherit; }

.brand-banner {
  min-height: 300px;
  background: var(--black);
  display: grid;
  place-items: center;
  padding: 26px 20px 20px;
}
.brand-link {
  width: min(560px, 82vw);
  display: block;
}
.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 64px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.category-nav a {
  display: grid;
  place-items: center;
  padding: 0 1.55vw;
  white-space: nowrap;
  min-height: 64px;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .13em;
  font-weight: 400;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.category-nav a:first-child { border-left: 1px solid var(--line); }
.category-nav a:hover { background: #ecebe7; }

main { max-width: 1600px; margin: 0 auto; }

.feature {
  padding: 48px 4vw 72px;
}
.feature-slideshow {
  width: 100%;
}
.slideshow-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.7;
  background: #161616;
  overflow: hidden;
}
.hero-single-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  transition: opacity .55s ease-in-out;
}

.hero-single-image.is-changing {
  opacity: .08;
}
.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #b9b8b3;
  border-radius: 50%;
  background: transparent;
  color: #111111;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.hero-counter {
  min-width: 52px;
  text-align: center;
  font-size: .66rem;
  letter-spacing: .13em;
  color: #6e6e6b;
}

.feature-copy {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}
.kicker {
  margin: 0 0 16px;
  font-size: .64rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 500;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}
.feature-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .98;
}
.feature-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
}
.feature-links {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.feature-links a { border-bottom: 1px solid currentColor; padding-bottom: 5px; }

.category-grid {
  padding: 0 4vw 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  display: block;
  text-align: center;
}
.category-image {
  aspect-ratio: 1 / 1.14;
  background: #202020;
  overflow: hidden;
}
.category-card h2 {
  margin: 19px 0 8px;
  font-size: 1.65rem;
}
.category-card p {
  margin: 0 auto;
  max-width: 330px;
  color: var(--gray);
  font-size: .87rem;
  line-height: 1.65;
}

.section {
  padding: 90px 4vw;
  border-top: 1px solid var(--line);
}
.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-title h2, .indy-copy h2, .split-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: .95;
}
.section-title > p:not(.kicker), .indy-copy > p:not(.kicker) {
  margin: 0;
  max-width: 620px;
  color: var(--gray);
  line-height: 1.75;
}
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.centered > p:not(.kicker) { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 6vw;
  align-items: center;
}
.split-image {
  aspect-ratio: 1 / 1.08;
}
.split-copy {
  max-width: 560px;
}
.split-copy > p {
  color: var(--gray);
  line-height: 1.8;
}
.split-copy .price {
  color: var(--ink);
  margin: 25px 0;
}
.outline-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 19px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
}
.outline-button:hover { background: var(--ink); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 18px;
}
.gallery-image { aspect-ratio: 1.22 / 1; }
figure { margin: 0; }
figcaption {
  padding-top: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  color: var(--gray);
}

.wide-art {
  aspect-ratio: 16 / 7.5;
  margin-bottom: 45px;
}
.indy-copy {
  max-width: 850px;
}
.indy-meta {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.indy-meta strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.study-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.study { aspect-ratio: 1 / 1; }

.about-split .split-image { aspect-ratio: .9 / 1; }
.about-split blockquote {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.38;
}

.commission-section { padding-bottom: 120px; }
.commission-form {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.commission-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .13em;
}
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa9a5;
  border-radius: 0;
  background: transparent;
  padding: 10px 0 12px;
  outline: none;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
.commission-form button {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  cursor: pointer;
}
.form-note { color: var(--gray); font-size: .73rem; line-height: 1.5; }

footer {
  background: var(--black);
  color: var(--white);
  min-height: 260px;
  padding: 42px 4vw;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  width: 220px;
  height: auto;
}
footer p { color: #aaa; font-size: .76rem; }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Fallback visual blocks make the site presentable before artwork is added. */
.image-shell { position: relative; overflow: hidden; }
.image-shell img { position: relative; z-index: 2; transition: transform .45s ease; }
.image-shell:hover img { transform: scale(1.012); }
.image-shell.is-missing img { display: none; }
.placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.75);
  letter-spacing: .16em;
  font-size: .62rem;
}
.hero-placeholder { background: linear-gradient(160deg, #4a4f56, #a67859 50%, #1e252a); }
.hero-placeholder-two { background: linear-gradient(145deg, #655b54, #af7a5c, #2b3137); }
.hero-placeholder-three { background: linear-gradient(145deg, #445364, #c7825d, #232323); }
.hero-placeholder-four { background: linear-gradient(145deg, #6c635c, #a26e54, #2d353d); }
.hero-placeholder-five { background: linear-gradient(145deg, #3b4148, #b78666, #24282d); }
.hero-placeholder-six { background: linear-gradient(145deg, #575c65, #d0935d, #1f2328); }
.hero-placeholder-seven { background: linear-gradient(145deg, #706861, #b87b58, #30363a); }
.portrait-placeholder { background: linear-gradient(145deg, #35302e, #9b7967, #202020); }
.fineart-placeholder { background: linear-gradient(145deg, #5b4d42, #ae7950, #252b30); }
.indy-placeholder { background: linear-gradient(180deg, #627085, #c08562 50%, #25272b); }
.drawing-placeholder { background: linear-gradient(145deg, #555, #222); }
.atmosphere-placeholder { background: linear-gradient(145deg, #657381, #b98160, #31373b); }
.study-placeholder { background: linear-gradient(145deg, #bcb3a5, #6e665e); }
.study-placeholder-two { background: linear-gradient(145deg, #63768a, #c98059); }
.study-placeholder-three { background: linear-gradient(145deg, #c4bcb1, #5c6063); }
.artist-placeholder { background: linear-gradient(145deg, #4c443f, #1c1c1c); }

@media (max-width: 1000px) {
  .category-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .category-nav a { padding: 0 20px; }
  .split { grid-template-columns: 1fr; }
  .split-copy { max-width: 720px; }
  footer { grid-template-columns: 180px 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .brand-banner { min-height: 220px; padding: 18px; }
  .brand-link { width: min(430px, 92vw); }
  .category-nav { min-height: 54px; }
  .category-nav a { min-height: 54px; font-size: .58rem; padding: 0 15px; }
  .feature { padding: 24px 18px 60px; }
  .slideshow-stage { aspect-ratio: 1 / .78; }
  .category-grid {
    padding: 0 18px 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .category-image { aspect-ratio: 1 / .92; }
  .section { padding: 70px 18px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .wide-art { aspect-ratio: 1 / .78; }
  .study-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer {
    grid-template-columns: 1fr;
    min-height: 310px;
    padding: 40px 18px;
  }
  .footer-links { grid-column: auto; }
  .footer-logo { width: 190px; }
}


@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}


.portrait-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
}


.about-bio {
  max-width: 690px;
}

.about-bio > p:not(.kicker) {
  margin: 0 0 18px;
  color: var(--gray);
  line-height: 1.82;
}

.about-bio blockquote {
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  line-height: 1.4;
}


.contact-links {
  margin: 34px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-links a {
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.contact-links a:last-child {
  border-right: 0;
}

.contact-links span {
  display: block;
  margin-bottom: 7px;
  color: var(--gray);
  font-size: .60rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-links strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-links a[aria-disabled="true"],
.footer-links a[aria-disabled="true"] {
  opacity: .6;
  cursor: default;
}

@media (max-width: 720px) {
  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-links a:last-child {
    border-bottom: 0;
  }
}

.indy-copy > p { max-width: 820px; }
.indy-copy > p + p { margin-top: 16px; }
.indy-progress { color: var(--ink) !important; }

.study-grid-six { grid-template-columns: repeat(3, 1fr); }
.study-grid-six .study { aspect-ratio: 1 / .78; }

@media (max-width: 900px) {
  .study-grid-six { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .study-grid-six { grid-template-columns: 1fr; }
}
