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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.label-mark {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  letter-spacing: 2px;
}

.label-name {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

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

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 10%;

  max-width: 800px;
}

.hero-kicker {
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.2s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.08);
}

.section {
  padding: 120px 40px;
}

.section-inner {
  max-width: 1300px;
  margin: auto;
}

.narrow {
  max-width: 760px;
}

.section-label {
  letter-spacing: 3px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.music-grid,
.video-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.music-card,
.video-card,
.shop-card {
  background: #121212;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease;
}

.music-card:hover,
.video-card:hover,
.shop-card:hover {
  transform: translateY(-4px);
}

.music-info,
.video-info,
.shop-card {
  padding: 24px;
}

.music-info h3,
.video-info h3,
.shop-card h3 {
  margin-bottom: 10px;
}

.shop-card p {
  opacity: 0.75;
}

.coming-soon {
  display: inline-block;
  margin-top: 20px;
  opacity: 0.6;
}

.shop-link {
  display: inline-block;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  height: 420px;
  object-fit: cover;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.contact-links a {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 18px;
}

.site-footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1300px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {

  .site-header {
    padding: 18px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 320px;
  }

  .section {
    padding: 90px 20px;
  }
}
