* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f0d0b;
  color: #f5f1ea;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 100px 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(180,120,40,0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(40,90,120,0.2), transparent 35%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
}

.eyebrow {
  color: #d4a24b;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1,
.about h2,
.section-header h2 {
  font-family: 'Playfair Display', serif;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.intro {
  font-size: 1.15rem;
  color: #d4d0cb;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 18px;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn.primary {
  background: #d4a24b;
  color: #111;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #f5f1ea;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.05);
}

.hero-image-card {
  position: relative;
}

.hero-image-card img {
  border-radius: 32px;
  min-height: 600px;
  object-fit: cover;
  opacity: 0.82;
}

.release-card {
  position: absolute;
  left: -25px;
  bottom: -25px;
  background: rgba(20,20,20,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: 24px;
  max-width: 280px;
  backdrop-filter: blur(8px);
}

.release-card span {
  color: #a9a39d;
  font-size: 0.85rem;
}

.release-card h3 {
  margin: 0.5rem 0;
}

.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 70px;
}

.about h2,
.section-header h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.15;
}

.about-copy {
  color: #cbc5be;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.1rem;
}

.music-section {
  padding: 120px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.section-header p:last-child {
  color: #aaa39b;
  max-width: 500px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.song-card {
  background: #151311;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.song-card:hover {
  transform: translateY(-6px);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212,162,75,0.1);
  color: #d4a24b;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.song-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.song-card p {
  color: #b7b0a8;
  margin-bottom: 1.5rem;
}

.song-card a {
  color: #d4a24b;
  text-decoration: none;
  font-weight: 600;
}

.quote-section {
  padding: 140px 0;
  text-align: center;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.3;
  color: #ece7df;
  font-style: italic;
}

.quote-author {
  margin-top: 2rem;
  letter-spacing: 0.25em;
  color: #8f8880;
  font-size: 0.8rem;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-content p {
  color: #aea79f;
  max-width: 520px;
}

.footer-title {
  margin-bottom: 1rem;
  color: #f5f1ea;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b8b0a7;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #d4a24b;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .release-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-image-card img {
    min-height: 420px;
  }

  .about,
  .music-section,
  .quote-section {
    padding: 90px 0;
  }
}