:root {
  --bg-page: #ffffff;
  --bg-topbar: #070707;
  --text-main: #121212;
  --text-soft: #9d9d9d;
  --text-muted: #808080;
  --icon: #9c9c9c;
  --hover-overlay: rgba(255, 255, 255, 0.22);
}

@font-face {
  font-family: "Outfit Variable";
  src: url("assets/fonts/Outfit-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stretch Pro";
  src: url("assets/fonts/StretchPro.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: "Outfit Variable", "Barlow", sans-serif;
  min-height: 100vh;
}

.topbar {
  align-items: center;
  background: var(--bg-topbar);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px 44px;
}

.brand-left,
.brand-right {
  align-items: center;
  display: flex;
  margin: 0;
}

.brand-left img {
  display: block;
  height: 80px;
  width: auto;
}

.brand-right img {
  display: block;
  height: 80px;
  width: auto;
}

.page-content {
  margin: 0 auto;
  max-width: 1420px;
  padding-top: 50px;
}

.section-eyebrow {
  color: var(--text-soft);
  font-family: "Outfit Variable", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  margin: 0 0 42px;
  text-align: center;
}

.artists {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.artist-card {
  margin: 0;
  text-align: center;
}

.artist-link {
  display: block;
  aspect-ratio: 11 / 10;
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.artist-link img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  transition: opacity 420ms ease;
}

.img-hover {
  inset: 0;
  opacity: 0;
  position: absolute;
}

.artist-card:nth-child(1) .artist-link img {
  object-position: center 5%;
}
.artist-card:nth-child(2) .artist-link img {
  object-position: center 20%;
}

.artist-card:nth-child(3) .artist-link img {
  object-position: center 0%;
}

.artist-link:hover .img-hover,
.artist-link:focus-visible .img-hover {
  opacity: 1;
}

.artist-link:focus-visible {
  outline: 2px solid #f6f6f6;
  outline-offset: -3px;
}

.artist-card h2 {
  font-family: "Stretch Pro", "Outfit Variable", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
}

.footer {
  margin: 72px auto 0;
  max-width: 620px;
  padding: 0 20px 30px;
  text-align: center;
}

.social {
  align-items: center;
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-bottom: 20px;
}

.social a {
  color: var(--icon);
  display: inline-flex;
  transition: color 180ms ease, transform 180ms ease;
}

.social a svg {
  fill: currentColor;
  height: 32px;
  width: 34px;
}

.social a:hover,
.social a:focus-visible {
  color: #7f7f7f;
  transform: translateY(-1px);
}

.description {
  color: var(--text-muted);
  font-family: "Outfit Variable", sans-serif;
  font-size: 0.86rem;
  line-height: 1.24;
  margin: 0 auto 30px;
  max-width: 560px;
}

.studio-tag {
  border: 1px solid #adadad;
  border-radius: 999px;
  color: #8d8d8d;
  display: inline-block;
  font-family: "Stretch Pro", "Outfit Variable", sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 5px 10px;
}

.copyright {
  color: #8c8c8c;
  font-family: "Outfit Variable", sans-serif;
  font-size: 0.66rem;
  margin: 8px 0 0;
}

@media (max-width: 760px) {
  .topbar {
    min-height: 72px;
    padding: 0 20px;
  }

  .artists {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .artist-card h2 {
    margin-top: 12px;
  }

  .artist-link {
    aspect-ratio: 4 / 3;
  }

  .footer {
    margin-top: 24px;
  }

  .description {
    font-size: 0.82rem;
  }
}
