/* SABLE — 90s R&B sleeve crossed with Vogue editorial
   Palette: matte black #131013 / charcoal #1f1a1d / burgundy #4a1d24 /
            bronze #b78854 / gold #d4af6a / cream #efe4d2 / neon orange #ff7a2a
   Display: Playfair Display / Didone serif. Body: soft grotesque. */

.artist-sable {
  --paper: #131013;
  --char: #1f1a1d;
  --burg: #4a1d24;
  --bronze: #b78854;
  --gold: #d4af6a;
  --cream: #efe4d2;
  --neon: #ff7a2a;
  --rule: rgba(212, 175, 106, 0.32);
  --muted: #b8a99a;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--char) 60%, var(--paper) 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: "Inter", "Avenir Next", system-ui, sans-serif;
  line-height: 1.7;
}

.artist-sable .ar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 28px 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .artist-sable .ar {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    column-gap: 56px;
    row-gap: 44px;
  }
  .artist-sable .ar-id { grid-column: 1 / -1; }
  .artist-sable .ar-blurb,
  .artist-sable .ar-going,
  .artist-sable .ar-influences,
  .artist-sable .ar-off { grid-column: 1; }
  .artist-sable .ar-sound,
  .artist-sable .ar-top,
  .artist-sable .ar-releases,
  .artist-sable .ar-producer { grid-column: 2; }
}

.artist-sable h1, .artist-sable h2, .artist-sable h3 {
  font-family: "Playfair Display", "Didot", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--cream);
}
.artist-sable h2 {
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.005em;
  padding-bottom: 8px;
  position: relative;
}
.artist-sable h2::after {
  content: "";
  display: block;
  margin-top: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--bronze) 40%, transparent 100%);
}
.artist-sable h3 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
}

.artist-sable .ar-id {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(74, 29, 36, 0.45), rgba(31, 26, 29, 0.85)),
    var(--char);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.artist-sable .ar-id::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(212, 175, 106, 0.18) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: sableSheen 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sableSheen {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.artist-sable .ar-id img {
  width: 180px; height: 180px;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px var(--char), 0 12px 40px rgba(0, 0, 0, 0.5);
  background: var(--char);
}
.artist-sable .ar-name {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 12px;
}
.artist-sable .ar-genre {
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 8px 0 0;
}

.artist-sable .sf-tag {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 3px 12px;
  margin: 0 6px 6px 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.artist-sable .sf-tags { list-style: none; padding: 0; margin: 0; }

.artist-sable a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.artist-sable a:hover { color: var(--neon); border-color: var(--neon); }

.artist-sable .ar-blurb p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--cream);
  margin: 0;
}
.artist-sable .ar-blurb p::first-letter {
  font-family: "Playfair Display", Didot, Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--gold);
  font-weight: 700;
}

.artist-sable .ar-infl-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.artist-sable .ar-infl-cols ul { list-style: none; padding: 0; margin: 0; }
.artist-sable .ar-infl-cols li {
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
}

.artist-sable .ar-top__list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: sablecount;
}
.artist-sable .ar-top__list li {
  counter-increment: sablecount;
  padding: 14px 0 14px 44px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.artist-sable .ar-top__list li::before {
  content: counter(sablecount, decimal-leading-zero);
  position: absolute;
  left: 0; top: 14px;
  font-family: "Playfair Display", Didot, Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.artist-sable .ar-top__title { font-weight: 500; color: var(--cream); }
.artist-sable .ar-top__by { color: var(--bronze); }
.artist-sable .ar-top__note {
  display: block;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.88rem;
}

.artist-sable .ar-off ul { list-style: none; padding: 0; margin: 0; }
.artist-sable .ar-off li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-style: italic;
  color: var(--cream);
}

.artist-sable .ar-releases__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.artist-sable .ar-rel {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(74, 29, 36, 0.35), rgba(31, 26, 29, 0.85));
  border: 1px solid var(--rule);
}
.artist-sable .ar-rel h3 {
  color: var(--cream);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
}

@media (max-width: 720px) {
  .artist-sable .ar-id { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .artist-sable .ar-id img { margin: 0 auto; }
  .artist-sable .ar-infl-cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .artist-sable .ar-id::before { animation: none; opacity: 0; }
}
