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

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #222;
  font-size: 14px;
  letter-spacing: 0.05em;
}

a {
  color: #222;
  text-decoration: none;
}

a:hover {
  color: #e8007d;
}

/* ── HEADER ── */
header {
  text-align: center;
  padding: 40px 20px 14px;
  border-bottom: 1px solid #eee;
}

header a.site-logo {
  display: inline-block;
}

.site-logo h1 {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #111;
}

.site-logo .tagline {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #aaa;
}

/* ── NAV ── */
nav {
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

nav a {
  display: inline-block;
  margin: 0 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #e8007d;
}

/* ── MAIN ── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* ── HOME / RELEASE FEATURE ── */
.release-feature {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.release-feature .kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #888;
  margin-bottom: 22px;
}

.release-feature .kicker a {
  color: #888;
  border-bottom: 1px solid #ddd;
}

.release-feature .kicker a:hover {
  color: #e8007d;
  border-color: #e8007d;
}

.release-feature img.cover {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

.release-feature h2 {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.release-feature .catalog {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 18px;
}

.release-feature p.desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  padding: 12px 34px;
  border: 1px solid #222;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: all 0.2s;
}

.btn:hover {
  background: #e8007d;
  border-color: #e8007d;
  color: #fff;
}

/* streaming / buy platform links */
.platform-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.platform-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  border-bottom: 1px solid #eee;
  padding-bottom: 2px;
}

.platform-links a:hover {
  color: #e8007d;
  border-color: #e8007d;
}

/* ── ARTIST / BIO ── */
.page-body {
  max-width: 760px;
  margin: 0 auto;
}

.page-body h1 {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}

.page-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

.page-body .lead {
  font-size: 17px;
  color: #222;
}

.artist-links {
  margin: 24px 0 8px;
}

.artist-links a {
  display: inline-block;
  margin: 0 14px 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1px;
}

.artist-links a:hover {
  color: #e8007d;
  border-color: #e8007d;
}

.artist-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  margin: 30px 0;
}

.artist-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── MUSIC PAGE ── */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
}

.back-link:hover {
  color: #e8007d;
}

.mixes-section {
  margin-bottom: 50px;
}

.mixes-section h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mixcloud-list iframe {
  width: 100%;
  border: 0;
  display: block;
  margin-bottom: 6px;
}

.soundcloud-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-item iframe {
  width: 100%;
  border: 0;
  display: block;
}

.sc-caption {
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 4px 0 0;
}

.sc-caption a {
  color: #bbb;
}

.sc-caption a:hover {
  color: #e8007d;
}

/* ── CONTACT ── */
.contact-block {
  max-width: 560px;
  margin: 0 auto;
}

.contact-block h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin: 30px 0 14px;
}

.contact-block h2:first-child {
  margin-top: 0;
}

.contact-block p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 8px;
  color: #444;
}

.contact-block a {
  color: #e8007d;
}

.contact-block a:hover {
  text-decoration: underline;
}

.impressum {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.impressum p {
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 34px 20px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer-social {
  margin-bottom: 16px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
}

.footer-social a:hover {
  color: #e8007d;
}

.footer-copy {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.1em;
}

.footer-copy a {
  color: #bbb;
  margin-left: 10px;
}

.footer-copy a:hover {
  color: #e8007d;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav a {
    margin: 0 9px;
    font-size: 11px;
  }

  .site-logo h1 {
    font-size: 22px;
    letter-spacing: 0.25em;
  }

  .artist-photos {
    grid-template-columns: 1fr 1fr;
  }
}
