/* =========================================
   MINOO LAKANI — INDIVIDUAL SONG PAGES
========================================= */

.song-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(237, 203, 125, 0.16), transparent 28%),
    linear-gradient(145deg, #654c3a 0%, #3d2a21 38%, #211611 70%, #120c09 100%);
}

.song-hero {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 90px);
  border-bottom: 1px solid rgba(215, 168, 76, 0.2);
}

.song-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.song-cover-panel {
  position: relative;
}

.song-cover-panel::before {
  content: "";
  position: absolute;
  inset: 8% -7% -7% 8%;
  background: rgba(215, 168, 76, 0.14);
  border: 1px solid rgba(237, 203, 125, 0.22);
  border-radius: 26px;
  filter: blur(2px);
}

.song-cover-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(237, 203, 125, 0.35);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.46);
}

.song-details {
  min-width: 0;
}

.song-kicker,
.song-artist {
  margin: 0;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.7;
  text-transform: uppercase;
}

.song-title {
  margin: 16px 0 10px;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  overflow-wrap: anywhere;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.song-title[dir="rtl"] {
  line-height: 1.12;
}

.song-alt-title {
  margin: 14px 0 0;
  color: var(--soft-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.15;
}

.song-artist {
  margin-top: 20px;
  color: var(--soft-white);
  letter-spacing: 0.16em;
}

.song-summary {
  max-width: 670px;
  margin: 27px 0 0;
  color: var(--soft-white);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.9;
}

.song-meta {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.song-meta div {
  min-width: 130px;
  padding: 14px 17px;
  background: rgba(15, 10, 8, 0.52);
  border: 1px solid rgba(215, 168, 76, 0.24);
  border-radius: 12px;
}

.song-meta dt {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.song-meta dd {
  margin: 7px 0 0;
  color: var(--light-cream);
  font-size: 0.86rem;
}

.song-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.song-player {
  margin-top: 30px;
  padding: 18px;
  background: rgba(15, 10, 8, 0.58);
  border: 1px solid rgba(215, 168, 76, 0.28);
  border-radius: 14px;
}

.song-player-label {
  margin: 0 0 12px;
  color: var(--soft-gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.song-player audio {
  width: 100%;
  display: block;
  accent-color: var(--gold);
}

.song-player-fallback {
  margin: 11px 0 0;
  color: var(--soft-white);
  font-size: 0.78rem;
  line-height: 1.5;
}

.song-player-fallback a {
  color: var(--soft-gold);
}

.song-action {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.song-action:hover,
.song-action:focus-visible {
  transform: translateY(-3px);
}

.song-action-primary {
  color: var(--deep-brown);
  background: linear-gradient(145deg, var(--soft-gold), var(--gold));
  border: 1px solid rgba(255, 241, 202, 0.58);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.song-action-secondary {
  color: var(--cream);
  background: rgba(12, 8, 6, 0.45);
  border: 1px solid var(--border-gold);
}

.song-content,
.related-songs {
  padding: clamp(70px, 8vw, 110px) clamp(22px, 7vw, 115px);
  background: #18110d;
  border-bottom: 1px solid rgba(215, 168, 76, 0.14);
}

.song-content-inner,
.related-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.song-content h2,
.related-songs h2 {
  margin: 0 0 28px;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  font-weight: 500;
  line-height: 0.95;
}

.song-content p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--soft-white);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.95;
}

.song-content .persian-copy {
  margin-top: 30px;
  padding: 24px;
  color: var(--light-cream);
  background: rgba(77, 53, 40, 0.42);
  border-right: 3px solid var(--gold);
  border-radius: 14px;
  font-size: 1.08rem;
  line-height: 2.1;
}

.related-songs {
  background: #120c09;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.related-card {
  overflow: hidden;
  color: inherit;
  background: rgba(65, 44, 33, 0.58);
  border: 1px solid rgba(215, 168, 76, 0.25);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.related-card span {
  min-height: 76px;
  padding: 16px;
  display: grid;
  place-items: center;
  color: var(--light-cream);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

@media (max-width: 820px) {
  .song-shell {
    grid-template-columns: 1fr;
  }

  .song-cover-panel {
    width: min(500px, 100%);
    margin: 0 auto;
  }

  .song-details {
    text-align: center;
  }

  .song-summary {
    margin-left: auto;
    margin-right: auto;
  }

  .song-meta,
  .song-actions {
    justify-content: center;
  }
}

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

  .song-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .song-action {
    width: 100%;
  }

}
