/* =========================
   kawaii music
   Dark Cinematic Label Site
   ========================= */

:root{
  --bg:#050506;
  --bg-soft:#0d0e10;
  --text:#f5f1e8;
  --muted:rgba(245,241,232,.68);
  --line:rgba(245,241,232,.14);
  --white:#ffffff;
  --shadow:0 30px 100px rgba(0,0,0,.55);
  --container:1120px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:"Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height:1.9;
  letter-spacing:.04em;
}

img{
  max-width:100%;
  display:block;
}

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

.site-header{
  position:fixed;
  top:0;
  left:0;
  z-index:50;
  width:100%;
  height:82px;
  padding:0 clamp(20px,4vw,56px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,0));
}

.site-header__logo-text{
  color:#fff;
  font-size:clamp(18px,1.6vw,28px);
  font-weight:300;
  letter-spacing:.24em;
  text-transform:lowercase;
  white-space:nowrap;
}

.site-header__logo-text:hover{
  opacity:.7;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:12px;
  letter-spacing:.18em;
}

.site-nav a{
  color:rgba(255,255,255,.78);
  transition:opacity .25s ease;
}

.site-nav a:hover{
  opacity:.55;
}

.menu-button{
  display:none;
}

/* HERO */

.hero{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:#000;
}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero__shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(to right, rgba(0,0,0,.78), rgba(0,0,0,.35) 45%, rgba(0,0,0,.2)),
    linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.82));
}

.hero__content{
  position:relative;
  z-index:2;
  width:min(100% - 40px, var(--container));
  margin:0 auto;
  padding-top:48px;
}

.hero__logo{
  width:clamp(120px,14vw,210px);
  margin-bottom:30px;
}

.hero__label,
.section__label{
  margin:0 0 18px;
  color:rgba(255,255,255,.62);
  font-size:11px;
  letter-spacing:.28em;
}

.hero__title{
  margin:0;
  max-width:760px;
  font-size:clamp(42px,7vw,96px);
  line-height:1.12;
  letter-spacing:.08em;
  font-weight:400;
  text-shadow:0 20px 80px rgba(0,0,0,.8);
}

.hero__text{
  margin:28px 0 0;
  max-width:720px;
  color:var(--muted);
  font-size:15px;
}

.hero__scroll{
  position:absolute;
  right:clamp(20px,4vw,54px);
  bottom:36px;
  z-index:2;
  color:rgba(255,255,255,.5);
  font-size:10px;
  letter-spacing:.24em;
  writing-mode:vertical-rl;
}

/* SECTION */

.section{
  position:relative;
  padding:120px 0;
  background:var(--bg);
}

.section:nth-of-type(even){
  background:var(--bg-soft);
}

.section__inner{
  width:min(100% - 40px, var(--container));
  margin:0 auto;
}

.section__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:72px;
  align-items:center;
}

.section__title{
  margin:0;
  max-width:880px;
  font-size:clamp(30px,4.8vw,64px);
  line-height:1.35;
  letter-spacing:.08em;
  font-weight:400;
}

.section__text{
  margin:28px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:15px;
}

.text-link{
  display:inline-block;
  margin-top:34px;
  color:var(--text);
  font-size:12px;
  letter-spacing:.22em;
  border-bottom:1px solid rgba(255,255,255,.42);
  padding-bottom:6px;
}

.text-link:hover{
  opacity:.62;
}

/* ARTIST */

.artist-card{
  min-height:480px;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.12), transparent 42%);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:34px;
}

.artist-card__name{
  margin:0;
  font-size:42px;
  letter-spacing:.22em;
}

.artist-card__copy{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* RELEASE */

.release-list{
  margin:52px 0 0;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.release-card{
  min-height:230px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.075), rgba(255,255,255,.02));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}

.release-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.38);
  background:
    linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,.03));
}

.release-card span{
  font-size:18px;
  line-height:1.45;
}

.release-card small{
  margin-top:8px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.18em;
}

/* CONTACT */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:34px;
  min-width:190px;
  height:54px;
  border:1px solid rgba(255,255,255,.48);
  border-radius:999px;
  color:var(--text);
  font-size:12px;
  letter-spacing:.2em;
  transition:background .25s ease, color .25s ease;
}

.button:hover{
  background:var(--text);
  color:#050506;
}

/* FOOTER */

.site-footer{
  padding:70px 20px 46px;
  border-top:1px solid var(--line);
  text-align:center;
  background:#020203;
}

.site-footer img{
  width:86px;
  margin:0 auto 20px;
}

.site-footer p{
  margin:0;
  color:rgba(255,255,255,.5);
  font-size:11px;
  letter-spacing:.16em;
}

/* RESPONSIVE */

@media (max-width:900px){
  .site-header{
    height:72px;
  }

  .site-nav{
    display:none;
  }

  .menu-button{
    width:38px;
    height:38px;
    border:0;
    background:transparent;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:7px;
    padding:0;
  }

  .menu-button span{
    display:block;
    width:28px;
    height:1px;
    background:#fff;
  }

  .section{
    padding:92px 0;
  }

  .section__grid{
    grid-template-columns:1fr;
    gap:40px;
  }

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

  .release-list{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:767px){
  body{
    letter-spacing:.03em;
  }

  .site-header{
    padding:0 20px;
  }

  .site-header__logo{
    width:64px;
  }

  .hero{
    align-items:flex-end;
    min-height:100svh;
  }

  .hero__shade{
    background:
      linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.92)),
      linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.18));
  }

  .hero__content{
    width:100%;
    padding:0 22px 96px;
  }

  .hero__logo{
    width:116px;
    margin-bottom:24px;
  }

  .hero__title{
    font-size:clamp(38px,11vw,54px);
  }

  .hero__text{
    font-size:13px;
  }

  .hero__text br{
    display:none;
  }

  .hero__scroll{
    right:20px;
    bottom:24px;
  }

  .section{
    padding:78px 0;
  }

  .section__inner{
    width:calc(100% - 40px);
  }

  .section__title{
    font-size:clamp(28px,8vw,42px);
  }

  .section__text{
    font-size:14px;
  }

  .release-list{
    grid-template-columns:1fr;
    gap:14px;
  }

  .release-card{
    min-height:170px;
  }
}