* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px;
}

.logo-wrap {
  width: min(728px, 80vw);
  aspect-ratio: 3000 / 700;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  display: block;
}

.tagline {
  margin: 12px 0 32px;
  color: #f2f0ea;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.socials a {
  color: #a8a49c;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.socials a:hover {
  color: #f2f0ea;
}

.collaborators {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.collab-heading {
  margin: 0 0 20px;
  color: #f2f0ea;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collab-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: baseline;
  row-gap: 10px;
}

.collab-list span:not(.tag) {
  color: #a8a49c;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.62rem, 1.6vw, 0.78rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.collab-list span:not(.tag)::after {
  content: "\2022";
  display: inline-block;
  margin: 0 12px;
  color: #4a473f;
}

.collab-list span:not(.tag):last-child::after {
  content: "";
  margin: 0;
}

.collab-list .tag {
  color: #6f6b62;
}
