@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

:root {
  --bg: #050505;
  --text: #f4f4f0;
  --muted: #8d8d88;
  --line: rgba(255,255,255,.13);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans KR", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* HEADER */

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;

  width: 100%;

  padding: 26px 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  mix-blend-mode: difference;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.logo span {
  font-size: .45em;
  vertical-align: top;
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  font-size: .68rem;
  letter-spacing: .15em;
  transition: opacity .25s;
}

.nav a:hover {
  opacity: .5;
}


/* MOBILE MENU */

.menu-toggle {
  display: none;
}


/* HERO */

.hero {
  min-height: 100vh;

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(255,255,230,.11),
      transparent 18%
    ),
    radial-gradient(
      circle at 50% 46%,
      rgba(255,255,255,.045),
      transparent 40%
    );
}

.hero::after {
  content: "";

  position: absolute;

  width: 1px;
  height: 75vh;

  top: 12vh;

  background:
    linear-gradient(
      transparent,
      rgba(255,255,255,.22),
      transparent
    );
}

.hero-glow {
  position: absolute;

  width: 35vw;
  height: 35vw;

  max-width: 550px;
  max-height: 550px;

  border-radius: 50%;

  background: white;

  filter: blur(130px);

  opacity: .055;

  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {

  50% {
    transform: scale(1.15);
    opacity: .08;
  }

}

.eyebrow {
  margin: 0 0 18px;

  font-size: .65rem;

  letter-spacing: .22em;

  color: var(--muted);

  font-weight: 600;
}

.hero h1 {
  position: relative;
  z-index: 2;

  margin: 0;

  font-size: clamp(7rem, 25vw, 23rem);

  line-height: .72;

  letter-spacing: -.105em;

  font-weight: 900;

  background:
    linear-gradient(
      180deg,
      #fff 10%,
      #777 90%
    );

  -webkit-background-clip: text;

  color: transparent;
}

.tagline {
  position: relative;
  z-index: 2;

  margin: 42px 0 0;

  color: #b8b8b2;

  font-size: .85rem;

  letter-spacing: .12em;
}

.scroll-link {
  position: absolute;

  bottom: 38px;

  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 9px;

  font-size: .58rem;

  letter-spacing: .18em;

  color: var(--muted);
}

.scroll-link i {
  font-style: normal;
  font-size: 1rem;
}

.hero-meta {
  position: absolute;

  bottom: 38px;

  left: 42px;
  right: 42px;

  display: flex;
  justify-content: space-between;

  color: #555;

  font-size: .58rem;

  letter-spacing: .16em;
}


/* SECTION */

.section {
  max-width: var(--max);

  margin: auto;

  padding: 150px 42px;
}

.section-head h2,
.about-copy h2 {

  margin: 0;

  font-size: clamp(3.8rem, 8vw, 8.5rem);

  line-height: .82;

  letter-spacing: -.075em;

  font-weight: 800;
}

.section-head h2 em {
  font-style: normal;
  color: #777;
}


.artist-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.artist-card {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0a0a0a;
}

.artist-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255,255,255,.13),
      transparent 18%
    ),
    radial-gradient(
      circle at 50% 50%,
      #1c1c1c 0,
      #080808 55%,
      #040404 100%
    );
}

.artist-art a {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.artist-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.artist-card:hover .artist-art img {
  transform: scale(1.035);
}

.artist-art::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 1px;
  height: 75%;
  background:
    linear-gradient(
      transparent,
      #aaa,
      transparent
    );
  opacity: .25;
  pointer-events: none;
}

.artist-card.coming .artist-art {
  background: #080808;
}

.artist-card.coming .artist-art span {
  color: #333;
}

.artist-number {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  font-size: .58rem;
  letter-spacing: .16em;
  color: #666;
}

.artist-info {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 20px;
}

.artist-info h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.artist-info p {
  margin: 0;
  color: #777;
  font-size: .58rem;
  letter-spacing: .12em;
}


/* RELEASE */

.releases {
  border-top: 1px solid var(--line);
}

.release-list {

  margin-top: 80px;

  border-top: 1px solid var(--line);
}

.release {

  display: grid;

  grid-template-columns:
    115px 1fr 60px;

  gap: 28px;

  align-items: center;

  padding: 22px 0;

  border-bottom:
    1px solid var(--line);
}

.release-cover {

  aspect-ratio: 1;

  display: grid;

  place-items: center;

  text-align: center;

  background: #ddd;

  color: #111;

  font-size: .75rem;

  font-weight: 900;
}

.release-cover small {
  font-size: .5rem;
}

.release-cover.dark {

  background: #111;

  color: #555;
}

.release-type {

  margin: 0 0 9px;

  font-size: .55rem;

  letter-spacing: .15em;

  color: #666;
}

.release-main h3 {

  margin: 0 0 6px;

  font-size: 1.1rem;
}

.release-main > p:last-child {

  margin: 0;

  color: #777;

  font-size: .6rem;

  letter-spacing: .1em;
}

.play-btn {

  width: 42px;
  height: 42px;

  border: 1px solid #444;

  border-radius: 50%;

  background: transparent;

  color: #eee;

  cursor: pointer;

  transition: .25s;
}

.play-btn:hover {

  background: #eee;

  color: #050505;
}

.play-btn.disabled {

  color: #333;

  cursor: default;
}


/* ABOUT */

.about-section {

  min-height: 90vh;

  padding:
    150px
    max(42px, calc((100vw - var(--max)) / 2));

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 8vw;

  background: #f0efe8;

  color: #080808;

  overflow: hidden;
}

.about-mark {

  font-size: min(32vw, 28rem);

  font-weight: 900;

  letter-spacing: -.12em;

  line-height: .7;

  transform: rotate(-8deg);

  opacity: .08;
}

.about-copy h2 span {
  color: #777;
}

.about-text {

  max-width: 510px;

  margin: 55px 0 30px;

  font-size: 1rem;

  line-height: 1.9;

  color: #444;
}

.manifesto {

  font-size: .7rem;

  line-height: 1.8;

  letter-spacing: .05em;

  font-weight: 700;
}


/* CONTACT */

.contact {
  padding-bottom: 170px;
}

.contact-grid {

  margin-top: 90px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}

.contact-card {

  padding: 35px;

  border: 1px solid var(--line);

  display: flex;

  flex-direction: column;

  gap: 16px;

  transition: .3s;
}

.contact-card:hover {

  background: #eee;

  color: #050505;
}

.contact-card span {

  font-size: .58rem;

  letter-spacing: .15em;

  color: #666;
}

.contact-card strong {
  font-size: 1rem;
}


/* FOOTER */

.footer {

  border-top:
    1px solid var(--line);

  padding: 25px 42px;

  display: flex;

  justify-content: space-between;

  color: #555;

  font-size: .58rem;

  letter-spacing: .12em;
}

.footer div {

  display: flex;

  gap: 18px;
}

.footer strong {
  color: #aaa;
}


/* TOAST */

.toast {

  position: fixed;

  z-index: 100;

  bottom: 25px;
  left: 50%;

  transform:
    translate(-50%, 20px);

  padding: 12px 18px;

  border: 1px solid #444;

  background: #111;

  color: #ddd;

  font-size: .7rem;

  opacity: 0;

  pointer-events: none;

  transition: .3s;
}

.toast.show {

  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* MOBILE */

@media (max-width: 800px) {

  .header {
    padding: 22px 20px;
  }

  .menu-toggle {

    display: flex;

    width: 35px;
    height: 35px;

    padding: 8px 4px;

    border: 0;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    gap: 7px;
  }

  .menu-toggle span {

    display: block;

    width: 27px;
    height: 1px;

    background: white;
  }

  .nav {

    position: absolute;

    top: 0;
    right: 0;

    width: 100vw;
    height: 100vh;

    padding: 100px 25px;

    background: #050505;

    flex-direction: column;

    gap: 30px;

    transform:
      translateX(100%);

    transition:
      transform .35s ease;
  }

  .nav.open {
    transform:
      translateX(0);
  }

  .nav a {
    font-size: 1.3rem;
  }

  .hero-meta {
    left: 20px;
    right: 20px;
  }

  .section {
    padding: 100px 20px;
  }

  .artist-grid {

    grid-template-columns: 1fr;

    margin-top: 55px;
  }

  .artist-card {
    min-height: 430px;
  }

  .artist-card:not(.featured) {
    min-height: 300px;
  }

  .release {

    grid-template-columns:
      75px 1fr 45px;

    gap: 15px;
  }

  .play-btn {

    width: 38px;
    height: 38px;
  }

  .about-section {

    padding: 100px 20px;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-mark {
    display: none;
  }

  .about-text {
    margin-top: 40px;
  }

  .contact-grid {

    grid-template-columns: 1fr;

    margin-top: 55px;
  }

  .footer {

    padding: 22px 20px;

    flex-direction: column;

    gap: 12px;
  }
}
  .release-cover {
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
  }

  .release-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }



  .collaboration {
    border-top: 1px solid var(--line);
  }

  .split-intro {
    margin-top: 45px;
    max-width: 600px;
  }

  .split-intro p {
    margin: 0;

    color: #888;

    font-size: .85rem;

    line-height: 1.9;
  }


  .split-list {
    margin-top: 70px;

    border-top: 1px solid var(--line);
  }


  .split-card {
    display: grid;

    grid-template-columns:
      70px 1fr 1.4fr;

    gap: 30px;

    align-items: center;

    padding: 38px 0;

    border-bottom: 1px solid var(--line);
  }


  .split-number {
    font-size: .6rem;

    letter-spacing: .15em;

    color: #555;
  }


  .split-title h3 {
    margin: 0 0 8px;

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: -.02em;
  }


  .split-title p {
    margin: 0;

    font-size: .55rem;

    letter-spacing: .15em;

    color: #666;
  }


  .split-percent {
    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    gap: 15px;
  }


  .split-percent div {
    display: flex;

    flex-direction: column;

    gap: 9px;
  }


  .split-percent span {
    font-size: .5rem;

    letter-spacing: .12em;

    color: #666;
  }


  .split-percent strong {
    font-size: 1.5rem;

    font-weight: 700;

    letter-spacing: -.05em;
  }


  @media (max-width: 800px) {

    .split-intro {
      margin-top: 35px;
    }

    .split-list {
      margin-top: 55px;
    }

    .split-card {

      grid-template-columns:
        40px 1fr;

      gap: 15px;

      padding: 30px 0;
    }

    .split-percent {

      grid-column: 2;

      grid-template-columns:
        repeat(2, 1fr);

      gap: 25px 15px;

      margin-top: 10px;
    }

    .split-percent strong {
      font-size: 1.3rem;
    }

  }
    .artist-name {
      color: #000000
    }
    .artist-card {
      position: relative;
    }

    .artist-info {
      display: flex;
      align-items: center;
      justify-content: space-between;

    }

    .artist-side {
      flex-shrink: 0;
      font-size: 20px;
      font-weight: 1000;
      opacity: 1;
      white-space: nowrap;
      color: #000000
    }