:root {
  --bg: #eeeeee;
  --text: #161616;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

a,

a:link,

a:visited,

a:active {

  color: inherit;

  text-decoration: none;

}

a:hover {

  color: red !important;
  text-decoration: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1vh;
  letter-spacing: 0.34em;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 8vh 4vw 4vw;
}

.page-content {
  margin-top: 12vh;
  margin-left: 3.9vw;
}

.nav {
  margin-left: 3.9vw;
  width: 220px;
}

.logo,
.nav a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  line-height: 10px;
}

.logo {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 22px;
}

nav a {
  display: block;
  font-size: 18px;
}

.hero {
  margin-top: 12vh;
  width: 85%;
}

.hero img {
  display: block;
  width: 87%;
  margin-left: 7.5em;
  height: auto;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 4.6vw;
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(22,22,22,0.4);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

/* BIO */
.bio {
  margin-top: 60px;
  margin-left: 4vw;
  max-width: 860px;
}

.bio p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(22,22,22,0.75);
  margin-bottom: 1.5em;
  font-weight: 300;
}

/* VIDEOS */
.videos {
  margin-top: 60px;
  padding: 0 4vw;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--bg);
}

.video-item {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}
.releases {
  margin-top: 60px;
  padding: 0 4vw;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bg);
}

.release-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.release-item:hover img {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .page {
    padding: 70px 24px 36px;
  }

  .nav {
    margin-left: 0;
  }

  .hero {
    margin-top: 82px;
  }
}

@media (max-width: 520px) {
  body {
    letter-spacing: 0.28em;
  }

  .page {
    padding: 44px 18px 28px;
  }

  .logo {
    font-size: 18px;
    margin-bottom: 20px;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    margin-top: 64px;
  }
}