/* ZEPHYR — coastal long-form editorial, restraint as design choice
   Palette: sand #ebe2cf / warm white #faf6ef / sunset gold #c79a4d /
            ocean teal #5a8a8c / soft coral #d8a596 / ink #1f2326
   Display: serif headers (small). Body: geometric sans. Wide whitespace. */

.artist-zephyr {
  --sand: #ebe2cf;
  --warm-white: #faf6ef;
  --gold: #c79a4d;
  --teal: #5a8a8c;
  --coral: #d8a596;
  --ink: #1f2326;
  --muted: #7a7770;
  --rule: #d8d0bf;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.85;
}

.artist-zephyr .ar {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.artist-zephyr h1, .artist-zephyr h2, .artist-zephyr h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  margin: 0 0 18px;
}

.artist-zephyr h2 {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.artist-zephyr h3 {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
}

.artist-zephyr .ar-id {
  text-align: center;
  padding: 24px 0 16px;
}
.artist-zephyr .ar-id img {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--rule);
}
.artist-zephyr .ar-name {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.015em;
  margin: 20px 0 8px;
}
.artist-zephyr .ar-genre {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 0;
}
.artist-zephyr .ar-roles { margin: 14px 0 0; }

.artist-zephyr .ar-blurb {
  position: relative;
  padding: 0 8px;
}
.artist-zephyr .ar-blurb::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.artist-zephyr .ar-blurb p {
  font-size: 1.04rem;
  font-family: "Iowan Old Style", Georgia, serif;
  color: #2c3033;
}

.artist-zephyr .ar-going p { font-size: 1rem; color: #353a3d; }

.artist-zephyr .sf-tag {
  display: inline-block;
  background: transparent;
  color: var(--muted);
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 2px 0;
  margin: 0 18px 6px 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}
.artist-zephyr .sf-tags { list-style: none; padding: 0; margin: 0; }

.artist-zephyr a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}
.artist-zephyr a:hover { color: var(--gold); border-color: var(--gold); }

.artist-zephyr .ar-infl-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.artist-zephyr .ar-infl-cols h3 { margin-bottom: 14px; }
.artist-zephyr .ar-infl-cols ul { list-style: none; padding: 0; margin: 0; }
.artist-zephyr .ar-infl-cols li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: #353a3d;
}

.artist-zephyr .ar-top__list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: zeph;
}
.artist-zephyr .ar-top__list li {
  counter-increment: zeph;
  padding: 14px 0 14px 40px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rule);
}
.artist-zephyr .ar-top__list li::before {
  content: counter(zeph, decimal-leading-zero);
  position: absolute; left: 0; top: 16px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.artist-zephyr .ar-top__by { color: var(--muted); }
.artist-zephyr .ar-top__note { display: block; font-style: italic; color: var(--muted); font-size: 0.85rem; margin-top: 3px; }

.artist-zephyr .ar-off ul { list-style: none; padding: 0; margin: 0; }
.artist-zephyr .ar-off li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: #353a3d;
}

.artist-zephyr .ar-releases__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.artist-zephyr .ar-rel {
  padding: 0; background: transparent; border: none;
  padding-top: 18px; border-top: 1px solid var(--rule);
}
.artist-zephyr .ar-rel h3 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 720px) {
  .artist-zephyr .ar { padding: 32px 24px 64px; gap: 56px; }
  .artist-zephyr .ar-infl-cols,
  .artist-zephyr .ar-releases__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .artist-zephyr *, .artist-zephyr *::before, .artist-zephyr *::after { animation: none !important; }
}
