:root {
  --bg: #0b0b0d;
  --bg-soft: #121215;
  --fg: #eceae6;
  --muted: #8d8a83;
  --line: #2a2a2e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--fg);
}

.muted {
  color: var(--muted);
}

/* subtle film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* header */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;
}

.wordmark {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.socials a {
  margin-left: 1.5rem;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.socials a:hover {
  border-color: var(--fg);
}

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.25) 45%, rgba(11, 11, 13, 0.45) 100%),
    url("img/hero.jpg") center 30% / cover no-repeat,
    radial-gradient(120% 90% at 50% 20%, #3a3a40 0%, #131316 70%);
  filter: grayscale(0.25) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  width: 100%;
}

.hero-title {
  font-size: clamp(4rem, 16vw, 13rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.95;
  opacity: 0;
  transform: translateY(0.3em);
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-sub {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s forwards;
}

.cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s forwards;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.btn-solid {
  background: var(--fg);
  color: #0b0b0d;
  border: 1px solid var(--fg);
  font-family: inherit;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--fg);
}

/* sections */
section.music,
section.about {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 70rem;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* spotify embed */
.embed {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.embed-consent {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.embed-consent p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.embed iframe {
  display: block;
  border-radius: 16px;
}

/* about */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background:
    url("img/studio.jpg") center / cover no-repeat,
    linear-gradient(160deg, #2c3640 0%, #14161a 80%);
  filter: grayscale(0.15);
}

.about-text p + p {
  margin-top: 1rem;
}

.about-text a {
  color: var(--fg);
}

.contact-cta {
  margin-top: 1.75rem;
}

@media (max-width: 760px) {
  .about {
    grid-template-columns: 1fr;
  }
}

/* footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

footer nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
}

footer nav a:hover {
  color: var(--fg);
}

/* legal pages */
.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 8rem clamp(1.5rem, 4vw, 3rem) 4rem;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.legal h2 {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 2.5rem 0 0.75rem;
}

.legal p,
.legal li {
  color: #c9c6c0;
  font-size: 0.97rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal .placeholder {
  color: var(--muted);
  font-style: italic;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-sub,
  .cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
