:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: #121212;
  --text: #f4f4f2;
  --muted: #aaa;
  --line: rgba(255,255,255,.14);
  --accent: #fff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { width: 110px; overflow: hidden; }
.brand img { width: 100%; transform: scale(1.32); }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: .87rem;
}
.main-nav a { color: #ddd; transition: color .2s; }
.main-nav a:hover { color: #fff; }

.language-switcher {
  display: flex;
  gap: .25rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .25rem;
}
.language-switcher button {
  border: 0;
  background: transparent;
  color: #aaa;
  border-radius: 99px;
  padding: .35rem .58rem;
  font-size: .72rem;
  cursor: pointer;
}
.language-switcher button.active {
  color: #111;
  background: #fff;
}
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 9rem 6vw 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-content { width: min(760px, 70%); position: relative; z-index: 3; }
.eyebrow {
  font-size: .72rem;
  letter-spacing: .23em;
  font-weight: 600;
  color: #bdbdbd;
  margin: 0 0 1.4rem;
}
h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -.055em;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -.045em;
  margin-bottom: 1.2rem;
}
.hero-copy {
  max-width: 620px;
  color: #c6c6c6;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 99px;
  border: 1px solid var(--line);
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: #050505; border-color: #fff; }
.btn-secondary { background: transparent; color: #fff; }
.btn-light { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.hero-mark {
  position: absolute;
  right: -3vw;
  top: 50%;
  width: min(48vw, 720px);
  transform: translateY(-50%);
  opacity: .16;
  filter: blur(.2px);
}
.hero-mark img { transform: scale(1.12); }
.hero-glow {
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -15vw;
  top: 5vh;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 62%);
  filter: blur(40px);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 99px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background: #fff;
  border-radius: 50%;
  animation: scroll 1.7s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

.section { padding: 8rem 6vw; }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 3.5rem; }
.section-heading.split {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 2rem;
}
.section-heading.split p:last-child { color: var(--muted); max-width: 420px; }

.artist-section { background: #090909; }
.artist-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6vw;
  align-items: center;
}
.artist-card { perspective: 1000px; }
.artist-visual {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(255,255,255,.04), transparent),
    radial-gradient(circle at 50% 40%, #2b2b2b, #0a0a0a 68%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.artist-monogram {
  font-family: "Space Grotesk";
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -.08em;
  position: relative;
  z-index: 2;
}
.vinyl {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background:
    repeating-radial-gradient(circle, #151515 0 2px, #0d0d0d 3px 6px);
  right: -30%;
  bottom: -18%;
  opacity: .7;
}
.artist-copy { max-width: 610px; }
.lead { font-size: clamp(1.35rem, 2.5vw, 2.1rem); line-height: 1.35; color: #fff; }
.artist-copy > p:not(.lead), .about-copy > p:not(.lead) { color: #aaa; }
.platforms { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.platforms a {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .65rem .95rem;
  font-size: .8rem;
  transition: background .2s, color .2s;
}
.platforms a:hover { background: #fff; color: #050505; }

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.release-card { min-width: 0; }
.cover {
  aspect-ratio: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s;
}
.release-card:hover .cover { transform: translateY(-7px); }
.cover span { font-size: .65rem; letter-spacing: .18em; }
.cover strong {
  font-family: "Space Grotesk";
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .9;
  letter-spacing: -.05em;
}
.cover-one {
  background: radial-gradient(circle at 70% 22%, rgba(255,255,255,.27), transparent 23%),
              linear-gradient(135deg, #282828, #050505 70%);
}
.cover-two {
  background: linear-gradient(155deg, #efefef 0 14%, #121212 14% 45%, #444 45% 47%, #080808 47%);
}
.cover-three {
  background: repeating-linear-gradient(45deg, #111 0 10px, #151515 10px 20px);
  color: #999;
}
.release-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .1rem 0;
}
.release-info h3 { margin: 0 0 .25rem; font-size: 1.05rem; }
.release-info p { margin: 0; color: #888; font-size: .82rem; }
.release-type { color: #777; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

.services-section { background: #0a0a0a; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.services-grid article {
  padding: 2.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 230px;
}
.services-grid span { font-size: .72rem; color: #777; }
.services-grid h3 { font-size: 1.5rem; margin: 3rem 0 .8rem; }
.services-grid p { color: #999; max-width: 430px; }

.submit-section { padding-top: 0; padding-bottom: 0; }
.submit-inner {
  max-width: none;
  background: #f0f0ec;
  color: #090909;
  text-align: center;
  padding: 8rem 6vw;
}
.submit-inner .eyebrow { color: #555; }
.submit-inner h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.submit-inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #444;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
}
.about-copy { padding-top: 4rem; }

.contact-section { background: #0a0a0a; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
}
.contact-grid > div > p:not(.eyebrow) { color: #aaa; max-width: 470px; }
.email-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-family: "Space Grotesk";
  border-bottom: 1px solid var(--line);
}
.contact-form { display: grid; gap: 1.1rem; }
.contact-form label { display: grid; gap: .45rem; }
.contact-form label span { color: #aaa; font-size: .76rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #111;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1rem;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: rgba(255,255,255,.45); }
.contact-form .btn { width: fit-content; border: none; }
.form-note { margin: -.4rem 0 0; color: #777; font-size: .72rem; }

footer {
  padding: 3rem 6vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #777;
  font-size: .74rem;
}
.footer-brand { width: 86px; overflow: hidden; }
.footer-brand img { transform: scale(1.3); }
.footer-links { display: flex; gap: 1.5rem; letter-spacing: .08em; }
footer > p { text-align: right; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(140%);
  width: min(92vw, 560px);
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .9rem 1rem .9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 80;
  transition: transform .35s;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { margin: 0; font-size: .78rem; color: #bbb; }
.cookie-banner button {
  border: 0;
  border-radius: 99px;
  padding: .55rem .9rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: .8rem;
  }
  .brand { width: 90px; }
  .menu-toggle {
    order: 2;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.4);
    border-radius: 50%;
    z-index: 55;
  }
  .menu-toggle span { width: 17px; height: 1px; background: #fff; transition: .25s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .language-switcher { order: 3; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform .35s;
    z-index: 40;
    font-size: 1.5rem;
  }
  .menu-open .main-nav { transform: translateY(0); }
  .hero { padding-left: 5vw; padding-right: 5vw; }
  .hero-content { width: 100%; }
  .hero-mark { width: 85vw; right: -30vw; opacity: .1; }
  .artist-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; }
  .release-grid { grid-template-columns: 1fr 1fr; }
  .release-grid .coming { grid-column: 1 / -1; width: calc(50% - .75rem); }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer > p { text-align: center; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 18px; }
  .language-switcher button { padding: .3rem .42rem; font-size: .65rem; }
  .hero { min-height: 92svh; padding-top: 7rem; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .section { padding: 5.5rem 1.2rem; }
  .section-heading.split { grid-template-columns: 1fr; }
  .artist-grid { gap: 2.5rem; }
  .release-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .release-grid .coming { grid-column: auto; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { min-height: 200px; }
  .services-grid h3 { margin-top: 2rem; }
  .submit-inner { padding: 5.5rem 1.2rem; }
  .footer-links { flex-direction: column; gap: .7rem; text-align: center; }
  .cookie-banner { align-items: flex-start; }
}
