/* EMBER — folk lamp-light editorial, parchment + woodsmoke
   Palette: parchment #f3ead8 / cream #faf3e2 / forest #2f4a3a /
            warm amber #b8651e / charcoal #2a261f / muted #6e6557
   Display: Cormorant Garamond serif. Body: humanist sans. Letterpress feel. */

.artist-ember {
  --parchment: #f3ead8;
  --cream: #faf3e2;
  --forest: #2f4a3a;
  --amber: #b8651e;
  --rust: #8a3f12;
  --ink: #2a261f;
  --muted: #6e6557;
  --rule: #c9bfa5;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(184, 101, 30, 0.08), transparent 65%),
    radial-gradient(900px 420px at 5% 30%, rgba(47, 74, 58, 0.06), transparent 60%),
    repeating-linear-gradient(0deg, rgba(42, 38, 31, 0.012) 0 2px, transparent 2px 4px),
    var(--parchment);
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Inter", "Avenir Next", -apple-system, system-ui, sans-serif;
  line-height: 1.78;
}

.artist-ember .ar {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 28px 72px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.artist-ember h1, .artist-ember h2, .artist-ember h3 {
  font-family: "Cormorant Garamond", "Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}
.artist-ember h2 {
  font-size: 1.55rem;
  font-style: italic;
  color: var(--forest);
  letter-spacing: 0.005em;
}
.artist-ember h3 {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
}

.artist-ember .ar-id {
  text-align: center;
  padding: 28px 0 16px;
}
.artist-ember .ar-id img {
  width: 152px; height: 152px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 22px rgba(42, 38, 31, 0.10), inset 0 0 0 4px var(--cream);
  background: var(--cream);
}
.artist-ember .ar-name {
  font-size: clamp(2.6rem, 5.4vw, 3.9rem);
  margin: 22px 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255, 250, 235, 0.8), 0 -1px 0 rgba(42, 38, 31, 0.04);
}
.artist-ember .ar-genre {
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
}
.artist-ember .ar-roles { margin: 12px 0 4px; }

.artist-ember .sf-tag {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 3px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin: 0 6px 6px 0;
  font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.artist-ember .sf-tags { list-style: none; padding: 0; margin: 0; }

.artist-ember a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px dotted var(--amber);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.artist-ember a:hover { color: var(--forest); border-color: var(--forest); }

/* hand-drawn dotted dividers between sections */
.artist-ember section + section {
  position: relative;
  padding-top: 36px;
}
.artist-ember section + section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 180px; height: 4px;
  background-image: radial-gradient(circle, var(--amber) 1px, transparent 1.4px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  opacity: 0.6;
}

/* lyric-style pull quote on intro */
.artist-ember .ar-blurb {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.7;
  text-align: center;
  color: var(--ink);
  padding: 0 24px;
  position: relative;
}
.artist-ember .ar-blurb::before,
.artist-ember .ar-blurb::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  margin: 12px auto;
  opacity: 0.7;
}
.artist-ember .ar-blurb p { margin: 0; }

.artist-ember .ar-going p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a342b;
}

.artist-ember .ar-infl-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.artist-ember .ar-infl-cols ul { list-style: none; padding: 0; margin: 0; }
.artist-ember .ar-infl-cols li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 0.95rem;
  color: var(--ink);
}

.artist-ember .ar-top__list { list-style: none; padding: 0; margin: 0; counter-reset: ember-count; }
.artist-ember .ar-top__list li {
  counter-increment: ember-count;
  padding: 16px 0 16px 42px;
  border-bottom: 1px dotted var(--rule);
  position: relative;
}
.artist-ember .ar-top__list li::before {
  content: counter(ember-count, decimal-leading-zero) ".";
  position: absolute;
  left: 0; top: 17px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--amber);
  font-size: 1.05rem;
}
.artist-ember .ar-top__title { font-weight: 500; color: var(--ink); }
.artist-ember .ar-top__by { color: var(--muted); }
.artist-ember .ar-top__note {
  display: block;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.92rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.artist-ember .ar-off ul { list-style: none; padding: 0; margin: 0; }
.artist-ember .ar-off li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px dotted var(--rule);
  color: #3a342b;
  position: relative;
}
.artist-ember .ar-off li::before {
  content: "·";
  position: absolute; left: 4px; top: 9px;
  color: var(--amber);
  font-size: 1.4rem;
}

.artist-ember .ar-releases__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.artist-ember .ar-rel {
  padding: 18px;
  background: rgba(255, 252, 240, 0.55);
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 235, 0.6);
}
.artist-ember .ar-rel h3 {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.18rem;
  font-weight: 500;
}

@media (max-width: 720px) {
  .artist-ember .ar-infl-cols,
  .artist-ember .ar-releases__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .artist-ember *, .artist-ember *::before, .artist-ember *::after { animation: none !important; transition: none !important; }
}
