:root {
  --paper: #e9e4da;
  --ink: #1e1d1a;
  --rule: #8d877b;
  --muted: #5d5951;
  --accent: #713024;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.6),
      transparent 35rem
    ),
    linear-gradient(110deg, rgba(90, 75, 50, 0.025), transparent 42%),
    var(--paper);
  font-family: "Source Serif 4", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

main {
  --hero-gap: clamp(2.5rem, 7vw, 9rem);
  width: min(100%, 112rem);
  margin: 0 auto;
  padding: 1.5rem clamp(1.35rem, 4.5vw, 5rem) 1.5rem;
}

.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wordmark,
.eyebrow {
  margin: 0;
}
.masthead .eyebrow {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: var(--hero-gap);
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1.5rem, 3vw, 3rem);
}

.artwork-square {
  display: block;
  width: 100%;
  max-width: 45rem;
  height: auto;
  margin: 0;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: start;
}

.title-block {
  position: relative;
  padding: 0;
}
.title-block .eyebrow {
  padding-bottom: clamp(1.5rem, 4vw, 3.5rem);
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
  white-space: nowrap;
}

.artwork {
  position: relative;
  align-self: stretch;
  min-height: 32rem;
  overflow: hidden;
  background: #24221e;
}
.vertical-rule {
  position: absolute;
  top: -12%;
  right: 28%;
  width: 1px;
  height: 125%;
  background: #cec6b7;
  transform: rotate(8deg);
}
.circle-mark {
  position: absolute;
  width: min(21rem, 88%);
  aspect-ratio: 1;
  border: 1px solid #cec6b7;
  border-radius: 50%;
  bottom: -18%;
  left: -34%;
}
.field-label {
  position: absolute;
  right: 1.35rem;
  bottom: 1.25rem;
  color: #cec6b7;
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.biography {
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 1.8vw, 1.6rem) clamp(0.75rem, 4vw, 4rem)
    clamp(1.5rem, 3vw, 3rem) 0;
}
.biography p {
  margin: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
  letter-spacing: -0.012em;
  line-height: 1.48;
  text-wrap: pretty;
}
.biography p:first-child {
  padding-top: 0;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.3;
}
.biography p + p {
  padding-top: clamp(0.75rem, 1.4vw, 1.25rem);
}
em {
  font-style: italic;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 7vw, 4.5rem);
  }

  .artwork-square {
    width: min(100%, 38rem);
    justify-self: start;
  }

  .biography {
    width: min(100%, 44rem);
    margin: 0;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 1rem;
  }
  .masthead {
    padding-bottom: 0.9rem;
  }
  .masthead .eyebrow {
    display: none;
  }
  .hero {
    display: block;
    min-height: 0;
    padding: 3.5rem 0 2.5rem;
  }
  .artwork-square {
    width: 100%;
    margin-top: 0;
  }
  .content-column {
    margin-top: 2rem;
  }
  .title-block {
    padding: 0;
  }
  .title-block .eyebrow {
    padding: 0 0 1rem;
  }
  h1 {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }
  .artwork {
    min-height: 29rem;
    height: 68vw;
    max-height: 37rem;
  }
  .biography {
    width: 100%;
    margin: 0;
    padding: 1rem 0 1.5rem;
  }
  .biography p {
    font-size: 1.06rem;
    line-height: 1.5;
  }
  .biography p:first-child {
    padding-top: 0;
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1.34;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .title-block,
  .biography p {
    animation: arrive 0.8s both;
  }
  .biography p:nth-child(n + 2) {
    animation-delay: 0.08s;
  }
}

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