:root {
  --bg: #000;
  --fg: #fff;
  --muted: #999;
  --card-gap: 60px;
  --grid-gap: 75px;
  --edge: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: "Onest", "Helvetica Neue", "Arial", sans-serif;
  min-height: 100vh;
}

.site {
  width: 100%;
  margin: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.menu {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  align-self: stretch;
  min-height: 96px;
  padding: 38px 50px;
  background: #000;
}

.logo {
  width: 14px;
  height: 20px;
  position: relative;
  flex: none;
  display: block;
}

.logo-core {
  position: absolute;
  inset: 0;
  border: 1.6px solid #d8d8d8;
  border-radius: 10px;
}

.logo-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  top: 6px;
  background: #d8d8d8;
  border-radius: 999px;
}

.logo-dot-left {
  left: 2.4px;
}

.logo-dot-right {
  right: 2.4px;
}

.menu-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 61px;
}

.menu-buttons a {
  text-decoration: none;
  color: var(--fg);
  font-size: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 0.91;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 35px 100px;
  gap: 104px;
  isolation: isolate;
  width: 100%;
  align-self: stretch;
  min-height: 480px;
  background: #000;
}

.hero-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
  margin-right: auto;
  width: 349px;
  min-height: 12px;
  z-index: 0;
}

.hero-social a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
}

.hero-email {
  margin: 0 auto;
  width: 114px;
  min-height: 9px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 0.91;
  color: #fff;
  z-index: 1;
}

.hero-bio {
  position: absolute;
  left: 569px;
  top: 233px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 339px;
  min-height: 45px;
  z-index: 2;
}

.hero-name {
  margin: 0;
  width: 63px;
  min-height: 15px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-description {
  margin: 0;
  width: 246px;
  min-height: 45px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #8f8f8f;
}

main {
  padding: 20px var(--edge) 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--masonry-columns, 3), minmax(0, 1fr));
  gap: 0 var(--grid-gap);
  align-items: start;
}

.grid-column {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  min-width: 0;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card-media-wrap {
  width: 100%;
}

.card-video,
.card-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  background: #000;
}

.card-image {
  object-fit: contain;
}

.card-label {
  margin: 0;
  width: 70%;
  text-align: center;
  font-family: "Chivo Mono", monospace;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--fg);
  white-space: pre-wrap;
  word-break: break-word;
}

.status {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.load-more-sentinel {
  width: 100%;
  height: 2px;
}

.footer {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 100px 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min-content;
}

.footer-title {
  margin: 0;
  color: var(--fg);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-col a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media (max-width: 1199px) {
  :root {
    --edge: 24px;
    --card-gap: 36px;
    --grid-gap: 28px;
  }

  .site {
    width: 100%;
  }

  .menu {
    padding: 24px;
    min-height: 72px;
  }

  .menu-buttons {
    gap: 24px;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 40px 24px;
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-social {
    width: auto;
    margin-right: 0;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-email {
    margin: 0;
    width: auto;
    line-height: 1.2;
  }

  .hero-bio {
    position: static;
    width: 100%;
    gap: 20px;
  }

  .hero-name {
    width: auto;
  }

  .hero-description {
    width: min(420px, 100%);
  }

  main {
    padding: 12px var(--edge) 50px;
  }

  .footer {
    padding: 50px 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .menu {
    min-height: 68px;
    padding: 20px 18px;
  }

  .menu-buttons {
    gap: 20px;
  }

  .hero {
    padding: 24px 18px;
    gap: 18px;
  }

  .hero-social {
    gap: 16px;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
  }
}
