:root {
  --paper: #f8f7f3;
  --ink: #141414;
  --muted: #66625c;
  --line: #d8d2c8;
  --warm: #d9aa70;
  --blue: #1f4c72;
  --red: #b94a37;
  --green: #6f8f80;
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(248, 247, 243, 0.95);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.nav a:hover,
.artist-link:hover,
.text-link:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 4vw, 72px);
  max-width: var(--max);
  min-height: min(760px, calc(100vh - 62px));
  margin: 0 auto;
  padding: clamp(38px, 5vw, 82px) clamp(18px, 4vw, 54px);
  align-items: end;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.96;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: end;
}

.hero-grid img:first-child {
  margin-top: 90px;
}

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

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 104px) clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(30px, 5vw, 70px);
}

.section h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.section-lede,
.artist-summary p,
.inquiry p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.artist-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.artist-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(30px, 5vw, 66px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.artist-row h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
}

.artist-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.artist-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.artist-works img,
.work-grid img,
.feature-work img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  background: #ddd;
}

.artist-link,
.text-link {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.work {
  min-width: 0;
}

.work figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.work-title {
  display: block;
  color: var(--ink);
}

.feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
}

.feature-text h2 {
  margin-bottom: 22px;
}

.feature-text p {
  max-width: 680px;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.inquiry-actions {
  display: grid;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 13px 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.button:hover {
  background: var(--ink);
  color: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.artist-page .hero {
  min-height: 560px;
  align-items: center;
}

.artist-statement {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.08;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 5vw, 86px);
}

.bio-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .section-head,
  .artist-row,
  .feature,
  .inquiry,
  .bio-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-grid img:first-child {
    margin-top: 42px;
  }

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

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

@media (max-width: 520px) {
  .site-header {
    position: static;
  }

  .hero-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

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