* {
  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: 30px 20px 10px;
  border-bottom: 1px solid #eee;
}

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

header img.logo {
  max-width: 280px;
  height: auto;
}

/* ── 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 ── */
.home-featured {
  text-align: center;
}

.home-featured img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.home-featured h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #888;
}

.home-featured h1 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.home-featured p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  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;
}

.btn-bandcamp {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 28px;
  background: #1da0c3;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: background 0.2s;
}

.btn-bandcamp:hover {
  background: #1589a8;
  color: #fff;
}

/* ── RELEASES ── */
.releases-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.release-item {
  text-align: left;
}

.release-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.release-item h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 6px;
}

.release-item h2 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.release-item p {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.bandcamp-player {
  width: 100%;
  margin-top: 16px;
}

.bandcamp-player iframe {
  width: 100%;
  height: 120px;
  border: 0;
}

/* ── ARTISTS ── */
.artists-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.artist-item {
  text-align: left;
}

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

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

.artist-item h2 {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.artist-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 100%;
}

.artist-links {
  margin-bottom: 18px;
}

.artist-links a {
  display: inline-block;
  margin: 0 12px 0 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 DETAIL PAGE ── */
.artist-detail {
  max-width: 900px;
  margin: 0 auto;
}

.artist-detail h1 {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.artist-detail p.bio {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.artist-detail .artist-photos {
  margin-bottom: 40px;
}

.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 h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mix-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mix-item h3 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.mix-player iframe {
  width: 100%;
  border: 0;
  display: block;
}

.mix-placeholder {
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border: 1px dashed #ccc;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
}

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

.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;
}

/* ── VIDEOS ── */
.videos-section {
  margin-bottom: 50px;
}

.videos-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;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.video-item {
  text-align: left;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 10px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-item h3 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.video-item p {
  font-size: 11px;
  color: #888;
}

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

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

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

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

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

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

.impressum h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-bottom: 16px;
}

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

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 30px 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 10px;
    font-size: 11px;
  }

  .releases-grid,
  .artists-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}
