/* =====================================================================
   EVOLVE EXPERIENCE — Artist Pages CSS
   Listing + Profile pages.  Loaded on top of main.css.
   ===================================================================== */

/* ─── ARTIST LISTING ────────────────────────────────────────────────── */

.artists-hero {
  padding: 180px 80px 80px 140px;
  position: relative;
  overflow: hidden;
}

.artists-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(214,0,28,.06) 0%, transparent 70%);
  pointer-events: none;
}

.artists-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.artists-hero-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}

.artists-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: .9;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 40px;
}

.artists-hero-sub {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
}

/* ─── Genre filter ───────────────────────────────────────────────────── */

.genre-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 32px 80px 32px 140px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.genre-pill {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
}

.genre-pill:hover,
.genre-pill.active {
  color: var(--text);
  border-color: var(--red);
  background: rgba(214,0,28,.08);
}

.genre-pill.active { color: var(--red); }

/* ─── Artist grid ────────────────────────────────────────────────────── */

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  padding: 60px 80px 80px 140px;
  gap: 1px;
  background: var(--border);
}

.artist-card {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}

.artist-card:hover { transform: translateY(-4px); z-index: 2; }

.artist-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--card);
}

.artist-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.23,1,.32,1);
  filter: grayscale(.3);
}

.artist-card:hover .artist-card-cover img { transform: scale(1.06); filter: grayscale(0); }

.artist-card-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,.85) 0%, transparent 60%);
}

.artist-card-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--red);
  padding: 4px 10px;
}

.artist-card-profile {
  position: absolute;
  bottom: -28px;
  left: 24px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--red);
  border-radius: 50%;
  overflow: hidden;
  background: var(--card);
}

.artist-card-profile img { width: 100%; height: 100%; object-fit: cover; }

.artist-card-body {
  padding: 40px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artist-card-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
}

.artist-card-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.artist-card-genre-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
}

.artist-card-location {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.artist-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.artist-card-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.artist-card:hover .artist-card-cta { color: var(--red); }

.artist-card-social {
  display: flex;
  gap: 10px;
}

.artist-card-social a svg {
  width: 14px; height: 14px;
  fill: var(--muted);
  transition: fill .2s;
}

.artist-card-social a:hover svg { fill: var(--red); }

/* ─── ARTIST PROFILE HERO ────────────────────────────────────────────── */

.artist-profile-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.artist-hero-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.artist-hero-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.7);
  display: block;
}

.artist-hero-cover-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 80% at 60% 30%, rgba(30,10,10,1) 0%, #050505 100%);
}

.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.5) 35%, rgba(5,5,5,.1) 70%, transparent 100%),
    linear-gradient(90deg, rgba(5,5,5,.7) 0%, transparent 60%);
  z-index: 1;
}

.artist-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  z-index: 2;
  pointer-events: none;
}

.artist-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 80px 60px 140px;
}

.artist-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.artist-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
}

.artist-profile-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: .88;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 28px;
  overflow: hidden;
}

.artist-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.artist-hero-genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-hero-genre-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(214,0,28,.4);
  padding: 5px 12px;
  background: rgba(214,0,28,.06);
}

.artist-hero-location {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.artist-hero-location svg {
  width: 14px; height: 14px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
}

.artist-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.artist-hero-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.artist-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  transition: all .3s;
}

.artist-social-link svg { width: 16px; height: 16px; fill: var(--muted); transition: fill .3s; }

.artist-social-link:hover {
  border-color: var(--red);
  background: rgba(214,0,28,.08);
}

.artist-social-link:hover svg { fill: var(--red); }

.artist-book-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 32px;
  background: var(--red);
  border: 1px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.23,1,.32,1);
}

.artist-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}

.artist-book-btn:hover::before { transform: translateX(0); }
.artist-book-btn:hover { color: var(--red); }

.artist-book-btn span { position: relative; z-index: 1; }

.artist-book-btn svg {
  position: relative;
  z-index: 1;
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  transition: transform .3s;
}

.artist-book-btn:hover svg { transform: translateX(4px); }

/* Scroll indicator on hero */
.artist-hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
}

.artist-hero-scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(140,140,140,.5);
}

.artist-hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── BIO / INFO SECTION ─────────────────────────────────────────────── */

.artist-info-section {
  padding: 120px 80px 120px 140px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.artist-info-left { position: sticky; top: 120px; }

.artist-profile-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
}

.artist-profile-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--red);
  transform: translate(8px, 8px);
  z-index: 0;
  pointer-events: none;
}

.artist-profile-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.artist-profile-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(214,0,28,.15);
}

.artist-info-right {}

.artist-info-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 32px;
}

.artist-info-bio {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 40px;
  white-space: pre-line;
}

.artist-info-bio p + p { margin-top: 20px; }

.artist-genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.artist-genre-item {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 6px 14px;
  transition: all .25s;
}

.artist-genre-item:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(214,0,28,.06);
}

.artist-info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.artist-info-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.artist-info-link:hover { color: var(--red); }

.artist-info-link svg {
  width: 16px; height: 16px;
  fill: var(--muted);
  flex-shrink: 0;
  transition: fill .25s;
}

.artist-info-link:hover svg { fill: var(--red); }

.artist-info-link-label { flex: 1; }

.artist-info-link-arrow {
  font-size: 14px;
  opacity: .4;
  transition: transform .25s, opacity .25s;
}

.artist-info-link:hover .artist-info-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ─── GALLERY ────────────────────────────────────────────────────────── */

.artist-gallery-section {
  padding: 120px 80px 120px 140px;
  overflow: hidden;
}

.artist-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

.artist-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.artist-section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}

.artist-section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: .04em;
  color: var(--text);
  line-height: .95;
}

.artist-gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
}

.artist-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.artist-gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.23,1,.32,1), filter .4s;
  filter: brightness(.85) grayscale(.2);
}

.artist-gallery-item:hover img { transform: scale(1.04); filter: brightness(1) grayscale(0); }

.artist-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.artist-gallery-item:hover .artist-gallery-item-overlay { opacity: 1; }

.gallery-overlay-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────────── */

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.lightbox-backdrop.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255,255,255,.08);
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(5,5,5,.8);
  color: var(--text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 9001;
}

.lightbox-btn:hover { border-color: var(--red); color: var(--red); }

.lightbox-btn.prev { left: 20px; }
.lightbox-btn.next { right: 20px; }

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(5,5,5,.8);
  color: var(--muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 9001;
}

.lightbox-close:hover { border-color: var(--red); color: var(--red); }

.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  z-index: 9001;
}

.lightbox-counter {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .2em;
  color: var(--muted);
  z-index: 9001;
}

/* ─── VIDEOS ─────────────────────────────────────────────────────────── */

.artist-videos-section {
  padding: 120px 0 120px 140px;
  background: var(--bg2);
  overflow: hidden;
}

.artist-videos-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-right: 80px;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.artist-videos-scroll::-webkit-scrollbar { display: none; }

.artist-video-card {
  flex: 0 0 380px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s;
  overflow: hidden;
}

.artist-video-card:hover { border-color: rgba(214,0,28,.3); transform: translateY(-4px); }

.artist-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--card);
  overflow: hidden;
}

.artist-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s, filter .4s;
  filter: grayscale(.3) brightness(.8);
}

.artist-video-card:hover .artist-video-thumb img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(.9);
}

.artist-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-video-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(214,0,28,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s;
}

.artist-video-card:hover .artist-video-play-btn { transform: scale(1.1); background: var(--red); }

.artist-video-play-btn svg {
  width: 22px; height: 22px;
  fill: white;
  margin-left: 3px;
}

.artist-video-info {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.artist-video-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight:400;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 6px;
}

.artist-video-platform {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Video modal */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.video-modal-backdrop.open { display: flex; }

.video-modal-inner {
  position: relative;
  width: min(900px, 90vw);
  aspect-ratio: 16/9;
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(5,5,5,.8);
  color: var(--muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.video-modal-close:hover { color: var(--text); border-color: var(--red); }

/* ─── DOWNLOADS ──────────────────────────────────────────────────────── */

.artist-downloads-section {
  padding: 120px 80px 120px 140px;
}

.artist-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}

.artist-download-card {
  background: var(--bg2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.artist-download-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
  transform-origin: left;
}

.artist-download-card:hover::before { transform: scaleX(1); }
.artist-download-card:hover { background: #0d0d0d; }

.artist-download-icon {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
  opacity: .7;
}

.artist-download-type {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.artist-download-label {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1;
}

.artist-download-meta {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 32px;
}

.artist-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 13px 24px;
  border: 1px solid var(--border);
  transition: all .3s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}

.artist-download-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.23,1,.32,1);
}

.artist-download-btn:hover::before { transform: translateX(0); }
.artist-download-btn:hover { border-color: var(--red); }
.artist-download-btn span { position: relative; z-index: 1; }

/* ─── BOOKING CTA ────────────────────────────────────────────────────── */

.artist-booking-cta {
  padding: 140px 80px 140px 140px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.artist-booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(214,0,28,.06) 0%, transparent 70%);
  pointer-events: none;
}

.artist-booking-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: .02em;
  line-height: .9;
  color: var(--text);
  position: relative;
}

.artist-booking-sub {
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.7;
}

.artist-booking-actions { flex-shrink: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .artists-hero,
  .genre-filter,
  .artists-grid,
  .artist-info-section,
  .artist-gallery-section,
  .artist-videos-section,
  .artist-downloads-section,
  .artist-booking-cta  { padding-left: 60px; padding-right: 60px; }
  .artist-hero-content { padding-left: 60px; padding-right: 60px; }
  .artist-info-section { grid-template-columns: 280px 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  .artists-hero,
  .genre-filter,
  .artists-grid,
  .artist-info-section,
  .artist-gallery-section,
  .artist-videos-section,
  .artist-downloads-section,
  .artist-booking-cta  { padding-left: 28px; padding-right: 28px; }
  .artist-hero-content { padding-left: 28px; padding-right: 28px; }
  .artist-hero-scroll  { display: none; }

  .artist-profile-name { font-size: clamp(38px, 8vw, 60px); }

  .artist-info-section { grid-template-columns: 1fr; gap: 40px; }
  .artist-info-left    { position: static; }
  .artist-profile-img-wrap { aspect-ratio: 1; max-width: 300px; }

  .artist-gallery-grid { columns: 2; }

  .artist-booking-cta  { grid-template-columns: 1fr; text-align: center; }
  .artist-booking-actions { justify-content: center; display: flex; }

  .artists-grid { grid-template-columns: 1fr 1fr; padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 600px) {
  .artists-grid { grid-template-columns: 1fr; }
  .artist-gallery-grid { columns: 1; }
  .artist-hero-actions { flex-direction: column; align-items: flex-start; }
  .artist-profile-name { font-size: 48px; }
  .artist-video-card  { flex: 0 0 calc(100% - 56px); }
  .artists-hero { padding: 160px 28px 60px; }
  .artists-hero-heading { font-size: clamp(36px, 10vw, 60px); }
}

/* PHASE 4 — Artist Management stabilization, aligned to approved homepage. */
body {
  background: var(--bg);
}

body:not(:has(.indexx-home)) {
  overflow-x: hidden;
}

body:not(:has(.indexx-home)) #navbar {
  background: linear-gradient(180deg, rgba(5,5,5,.94), rgba(5,5,5,.68) 72%, rgba(5,5,5,0)) !important;
  border-bottom: 1px solid transparent !important;
}

body:not(:has(.indexx-home)) #navbar::before {
  display: none !important;
}

.artist-page-shell {
  padding-left: 140px;
  padding-right: 80px;
}

.artists-hero {
  padding-top: 140px;
  padding-bottom: 54px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(ellipse 55% 70% at 78% 22%, rgba(214,0,28,.08), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 42%);
  border-bottom: 1px solid var(--border);
}

.artists-hero-label,
.artist-section-label {
  font-size: 12px !important;
  letter-spacing: .32em;
  color: var(--red);
}

.artists-hero-heading {
  font-size: 60px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  max-width: 680px;
  margin-bottom: 28px;
}

.artists-hero-heading span {
  color: var(--red);
}

.artists-hero-sub,
.artist-card-text,
.artist-info-bio,
.artist-booking-sub,
.artist-roster-cta p,
.artist-profile-empty p {
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.62 !important;
  color: rgba(245,245,245,.62) !important;
}

.artist-roster-panel {
  padding-top: 28px;
  padding-bottom: 26px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.artist-roster-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) minmax(170px, .75fr) minmax(170px, .75fr) auto;
  gap: 14px;
  align-items: end;
}

.artist-search-field,
.artist-filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-search-field span,
.artist-filter-field span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,245,245,.42);
}

.artist-search-field input,
.artist-filter-field select {
  width: 100%;
  min-height: 48px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0 16px;
  font-family: var(--font-text);
  font-size: 14px;
  outline: none;
  border-radius: 0;
}

.artist-search-field input:focus,
.artist-filter-field select:focus {
  border-color: rgba(214,0,28,.68);
  box-shadow: 0 0 0 1px rgba(214,0,28,.18);
}

.artist-control-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.artist-filter-submit,
.artist-filter-reset,
.artist-view-toggle a,
.artist-card-cta,
.artist-card-book {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}

.artist-filter-submit,
.artist-card-book {
  background: var(--red);
  border-color: var(--red);
}

.artist-filter-reset:hover,
.artist-view-toggle a:hover,
.artist-card-cta:hover {
  border-color: var(--red);
  color: var(--red);
}

.artist-roster-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.artist-roster-meta span {
  color: var(--red);
}

.artist-view-toggle {
  display: flex;
  gap: 6px;
}

.artist-view-toggle a {
  min-height: 34px;
  padding: 0 12px;
  font-size: 10px;
}

.artist-view-toggle a.active {
  background: rgba(214,0,28,.12);
  border-color: var(--red);
  color: var(--red);
}

.artists-grid {
  padding-top: 52px;
  padding-bottom: 84px;
  background: var(--bg);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.artists-grid--list {
  grid-template-columns: 1fr;
}

.artist-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  min-height: 100%;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,0,28,.58);
  box-shadow: 0 14px 42px rgba(214,0,28,.1);
}

.artist-card-media {
  width: 100%;
  aspect-ratio: 1.08;
  display: block;
  overflow: hidden;
  position: relative;
  background: #090909;
  border-bottom: 1px solid var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding: 0;
  cursor: pointer;
}

.artist-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, transparent 42%, rgba(5,5,5,.82) 76%);
  pointer-events: none;
}

.artist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  padding: 0;
}

.artist-card:hover .artist-card-media img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.08);
}

.artist-card-placeholder {
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  margin: 22px;
  border-radius: 50%;
  border: 1px solid rgba(214,0,28,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(214,0,28,.34);
  background: radial-gradient(circle, rgba(214,0,28,.09), rgba(255,255,255,.02));
}

.artist-card-kicker {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight:400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

.artist-card-name {
  font-size: 20px !important;
  letter-spacing: .02em;
}

.artist-card-meta {
  display: grid;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,245,245,.48);
}

.artist-card-text {
  margin: 4px 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height .35s ease, opacity .3s ease, transform .35s ease;
}

.artist-card-body {
  padding: 24px 16px 18px;
  gap: 9px;
}

.artist-card-genre-tag {
  font-size: 8px;
  letter-spacing: .14em;
  padding: 3px 7px;
}

.artist-card:hover .artist-card-text {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.artist-card-footer {
  gap: 8px;
  padding: 12px 16px;
}

.artist-card-cta,
.artist-card-book {
  flex: 1;
  min-height: 36px;
  padding: 0 10px;
  font-size: 9px;
  border-radius: 0;
}

.artists-grid--list .artist-card {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.artists-grid--list .artist-card-media {
  aspect-ratio: auto;
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--border);
}

.artist-empty-state {
  padding-top: 110px;
  padding-bottom: 120px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.artist-empty-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border: 1px solid rgba(214,0,28,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 32px;
}

.artist-empty-state h2,
.artist-profile-empty h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
}

.artist-empty-state p,
.artist-profile-empty p {
  max-width: 520px;
  margin: 0 auto 28px;
}

.artist-profile-hero {
  min-height: 560px;
}

.artist-profile-name {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 0;
}

.artist-info-heading,
.artist-section-heading {
  font-size: 48px !important;
  letter-spacing: 0;
}

.artist-profile-empty {
  padding: 34px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
}

.artist-related-section {
  padding: 120px 80px 120px 140px;
  background: var(--bg);
}

.artist-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.artist-related-card {
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg2);
  text-decoration: none;
  transition: all .25s ease;
}

.artist-related-card:hover {
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(214,0,28,.5);
}

.artist-related-card span,
.artist-related-card em {
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.artist-related-card strong {
  margin: 10px 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--text);
}

.artist-roster-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) auto;
  align-items: center;
  gap: 36px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.artist-roster-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .95;
  color: var(--text);
}

.artist-modal-open {
  overflow: hidden;
}

.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
}

.artist-modal.open {
  display: block;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px);
}

.artist-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, calc(100dvw - 56px));
  max-height: calc(100dvh - 56px);
  transform: translate(-50%, -50%);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(214,0,28,.12), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(5,5,5,.96);
  box-shadow: 0 40px 120px rgba(0,0,0,.62);
}

.artist-modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 58px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(5,5,5,.84);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.artist-modal-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  padding: 44px;
}

.artist-modal-aside {
  position: sticky;
  top: 54px;
  align-self: start;
}

.artist-modal-photo {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(214,0,28,.42);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(214,0,28,.12), rgba(255,255,255,.025));
  color: rgba(214,0,28,.45);
  font-family: var(--font-display);
  font-size: 96px;
}

.artist-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.06);
}

.artist-modal-book,
.artist-modal-form-link,
.artist-modal-profile {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.artist-modal-book,
.artist-modal-form-link {
  background: var(--red);
  border-color: var(--red);
}

.artist-modal-profile:hover {
  border-color: var(--red);
  color: var(--red);
}

.artist-modal-main h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .92;
  letter-spacing: 0;
  color: var(--text);
  margin: 18px 0 24px;
}

.artist-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.artist-modal-meta span {
  border: 1px solid var(--border);
  padding: 7px 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.artist-modal-main p {
  max-width: 620px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.68;
  color: rgba(245,245,245,.64);
}

.artist-modal-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.artist-modal-socials a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.artist-modal-socials a:hover {
  color: var(--red);
  border-color: var(--red);
}

.artist-modal-form {
  margin-top: 28px;
  padding: 0;
  border: 1px solid rgba(214,0,28,.36);
  background: #050505;
}

.artist-modal-form[hidden] {
  display: none;
}

.artist-modal-form-head span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
}

.artist-modal-form-head p {
  margin: 10px 0 0;
  font-size: 14px;
}

.artist-modal-form-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: #020202;
}

.artist-modal-form-success,
.artist-modal-form-error {
  margin: 18px 22px 0;
  padding: 12px 14px;
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.45;
  border: 1px solid;
}

.artist-modal-form-success {
  color: #10b981;
  border-color: rgba(16,185,129,.35);
  background: rgba(16,185,129,.08);
}

.artist-modal-form-error {
  color: #ff4d60;
  border-color: rgba(214,0,28,.38);
  background: rgba(214,0,28,.09);
}

.artist-booking-mini-form {
  padding: 22px;
}

.artist-mini-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.artist-mini-column h3 {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
}

.artist-mini-column label {
  display: block;
  margin-bottom: 18px;
}

.artist-mini-column label span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,245,245,.48);
}

.artist-mini-column input,
.artist-mini-column select,
.artist-mini-column textarea {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  outline: none;
}

.artist-mini-column textarea {
  min-height: 34px;
  padding-top: 7px;
  resize: vertical;
}

.artist-mini-column input:focus,
.artist-mini-column select:focus,
.artist-mini-column textarea:focus {
  border-bottom-color: var(--red);
}

.artist-mini-column input[readonly] {
  color: rgba(245,245,245,.72);
}

.artist-mini-split {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
}

.artist-mini-toggle,
.artist-mini-newsletter {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 12px 0 18px !important;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(245,245,245,.72);
  cursor: pointer;
}

.artist-mini-toggle input,
.artist-mini-newsletter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.artist-mini-toggle span {
  width: 34px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  position: relative;
  flex: 0 0 auto;
}

.artist-mini-toggle span::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.38);
  transition: transform .2s ease;
}

.artist-mini-toggle input:checked + span {
  background: rgba(214,0,28,.7);
}

.artist-mini-toggle input:checked + span::after {
  transform: translateX(16px);
}

.artist-mini-newsletter {
  margin-top: 22px !important;
}

.artist-mini-newsletter span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.42);
  flex: 0 0 auto;
}

.artist-mini-newsletter input:checked + span {
  background: var(--red);
  border-color: var(--red);
}

.artist-mini-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.artist-mini-actions button {
  min-height: 42px;
  border: 0;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.artist-mini-actions button[type="submit"] {
  background: var(--red);
  color: #fff;
}

.artist-mini-actions button[type="button"] {
  background: transparent;
  color: rgba(245,245,245,.68);
}

.artist-mini-actions button:disabled {
  opacity: .6;
  cursor: wait;
}

@media (max-width: 1200px) {
  .artist-page-shell,
  .artist-related-section {
    padding-left: 80px;
    padding-right: 48px;
  }

  .artists-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .artist-roster-controls {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .artist-page-shell,
  .artist-related-section {
    padding-left: 42px;
    padding-right: 42px;
  }

  .artists-hero-heading {
    font-size: 48px !important;
  }

  .artist-roster-controls,
  .artist-roster-cta {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .artist-related-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid--list .artist-card {
    grid-template-columns: 1fr;
  }

  .artists-grid--list .artist-card-media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .artist-modal-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px;
  }

  .artist-mini-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .artist-modal-aside {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .artist-modal-main {
    text-align: center;
  }

  .artist-modal-meta,
  .artist-modal-socials {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .artist-page-shell,
  .artist-related-section,
  .artist-hero-content,
  .artist-info-section,
  .artist-gallery-section,
  .artist-videos-section,
  .artist-downloads-section,
  .artist-booking-cta {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .artists-hero {
    min-height: 420px;
    padding-top: 130px !important;
    padding-bottom: 58px !important;
    text-align: center;
    align-items: center;
  }

  .artists-hero-label,
  .artist-section-label,
  .artist-hero-eyebrow {
    justify-content: center;
    font-size: 12px !important;
  }

  .artists-hero-label::before,
  .artist-section-label::before,
  .artist-hero-eyebrow::before {
    display: none;
  }

  .artists-hero-heading {
    font-size: 26px !important;
    max-width: 320px;
  }

  .artists-hero-sub {
    max-width: 320px;
    text-align: center;
  }

  .artist-roster-meta,
  .artist-control-actions,
  .artist-view-toggle {
    justify-content: center;
  }

  .artist-roster-meta {
    flex-direction: column;
    text-align: center;
  }

  .artists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .artist-card-media {
    aspect-ratio: 1;
  }

  .artist-card-media img {
    padding: 14px;
  }

  .artist-card-placeholder {
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    margin: 14px;
    font-size: 36px;
  }

  .artist-card-body {
    padding: 16px 10px 12px;
    gap: 7px;
  }

  .artist-card-kicker {
    font-size: 8px;
    letter-spacing: .16em;
  }

  .artist-card-name {
    font-size: 18px !important;
  }

  .artist-card-meta {
    font-size: 8px;
    letter-spacing: .08em;
  }

  .artist-card-body,
  .artist-card-meta,
  .artist-card-text,
  .artist-card-genres,
  .artist-booking-cta,
  .artist-roster-cta {
    text-align: center;
    justify-content: center;
  }

  .artist-card-genres {
    display: flex;
  }

  .artist-card-text {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .artist-card-footer {
    flex-direction: row;
    gap: 6px;
    padding: 10px;
  }

  .artist-card-cta,
  .artist-card-book {
    width: 100%;
    min-height: 32px;
    padding: 0 6px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .artist-book-btn {
    width: 100%;
  }

  .artist-profile-hero {
    min-height: 640px;
  }

  .artist-profile-name,
  .artist-info-heading,
  .artist-section-heading,
  .artist-booking-name,
  .artist-roster-cta h2 {
    font-size: 26px !important;
    text-align: center;
  }

  .artist-hero-content,
  .artist-hero-meta,
  .artist-hero-actions,
  .artist-hero-genre-tags,
  .artist-info-section,
  .artist-section-header,
  .artist-booking-cta {
    text-align: center;
    justify-content: center;
  }

  .artist-hero-actions {
    align-items: stretch;
  }

  .artist-profile-img-wrap {
    margin: 0 auto;
  }

  .artist-modal-dialog {
    width: min(100%, calc(100dvw - 56px));
    max-height: calc(100dvh - 28px);
  }

  .artist-modal-grid {
    padding: 28px 22px 32px;
  }

  .artist-modal-main h2 {
    font-size: 26px;
  }

  .artist-modal-main p {
    font-size: 14px;
  }

  .artist-booking-mini-form {
    padding: 18px;
  }

  .artist-mini-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .artist-mini-actions button {
    width: 100%;
  }

  .artist-mini-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Dense roster grid: built for large artist counts. */
.artists-grid:not(.artists-grid--list) {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start;
}

.artists-grid:not(.artists-grid--list) .artist-card {
  min-height: 0;
}

.artists-grid:not(.artists-grid--list) .artist-card-media {
  aspect-ratio: 1;
}

.artists-grid:not(.artists-grid--list) .artist-card-media img {
  padding: 0;
  border-radius: 0;
}

.artists-grid:not(.artists-grid--list) .artist-card-placeholder {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  margin: 12px;
  font-size: 34px;
}

.artists-grid:not(.artists-grid--list) .artist-card-body {
  padding: 14px 10px 10px;
  gap: 6px;
}

.artists-grid:not(.artists-grid--list) .artist-card-kicker,
.artists-grid:not(.artists-grid--list) .artist-card-text,
.artists-grid:not(.artists-grid--list) .artist-card-genres {
  display: none;
}

.artists-grid:not(.artists-grid--list) .artist-card-name {
  font-size: 17px !important;
}

.artists-grid:not(.artists-grid--list) .artist-card-meta {
  font-size: 8px;
  line-height: 1.35;
}

.artists-grid:not(.artists-grid--list) .artist-card-footer {
  padding: 8px;
  gap: 6px;
}

.artists-grid:not(.artists-grid--list) .artist-card-cta,
.artists-grid:not(.artists-grid--list) .artist-card-book {
  min-height: 30px;
  padding: 0 5px;
  font-size: 7px;
  letter-spacing: .08em;
}

@media (max-width: 1500px) {
  .artists-grid:not(.artists-grid--list) {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1200px) {
  .artists-grid:not(.artists-grid--list) {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .artists-grid:not(.artists-grid--list) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .artists-grid:not(.artists-grid--list) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .artists-grid:not(.artists-grid--list) .artist-card-name {
    font-size: 16px !important;
  }

  .artists-grid:not(.artists-grid--list) .artist-card-meta span:last-child {
    display: none;
  }
}

/* Compact artist profile — EVOLVE dark theme. */
.artist-simple-page {
  background: #050505;
  color: #f5f5f5;
  min-height: 100vh;
  padding: 140px 28px 120px;
}

.artist-simple-wrap {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.artist-simple-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .25s;
}

.artist-simple-back:hover { color: var(--red); }

.artist-simple-card {
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(214, 0, 28, .06);
}

.artist-simple-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #111;
  overflow: hidden;
}

.artist-simple-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.artist-simple-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .28));
  pointer-events: none;
}

.artist-simple-image-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-display);
  font-size: 96px;
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 0, 28, .22), transparent 38%),
    linear-gradient(135deg, #151515, #2c3034);
}

.artist-simple-band {
  position: relative;
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 44px 52px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.artist-simple-band h1 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: .96;
  text-transform: uppercase;
  color: var(--text);
}

.artist-simple-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.artist-simple-meta div {
  min-width: 0;
}

.artist-simple-meta span {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.artist-simple-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.artist-simple-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 36px;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .35s cubic-bezier(.23,1,.32,1);
}

.artist-simple-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}

.artist-simple-book:hover::before { transform: translateX(0); }
.artist-simple-book:hover { color: var(--red); }
.artist-simple-book span { position: relative; z-index: 1; }

.artist-simple-band .artist-simple-book {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  border-radius: 0;
}

.artist-simple-band .artist-simple-book:hover {
  transform: translate(-50%, 48%);
}

.artist-simple-content {
  padding: 64px 80px 58px;
  text-align: center;
  background: #050505;
}

.artist-simple-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.artist-simple-socials a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.artist-simple-socials a:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(214,0,28,.08);
}

.artist-simple-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.artist-simple-bio {
  width: min(100%, 640px);
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  text-align: left;
}

.artist-simple-section {
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
  margin-top: 52px;
}

.artist-simple-section-title {
  margin-bottom: 32px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .35em;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.artist-simple-section-title::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.artist-simple-gallery,
.artist-simple-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--border);
}

.artist-simple-gallery-item,
.artist-simple-video {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: #101010;
  cursor: pointer;
  overflow: hidden;
}

.artist-simple-gallery-item img,
.artist-simple-video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  filter: none;
  transition: transform .45s ease, opacity .3s ease;
}

.artist-simple-gallery-item:hover img,
.artist-simple-video:hover img {
  transform: scale(1.04);
  opacity: .82;
}

.artist-simple-video {
  flex: initial;
  color: #fff;
  text-align: left;
}

.artist-simple-video.artist-video-card {
  flex: initial;
  border: 0;
  transform: none;
}

.artist-simple-video.artist-video-card:hover {
  transform: none;
}

.artist-simple-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #202124;
}

.artist-simple-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .24);
}

.artist-simple-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 42px;
  border-radius: 999px;
  background: #d6001c;
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.artist-simple-video-title {
  display: block;
  padding: 16px 18px 18px;
  background: #0d0d0d;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.4;
}

.artist-simple-downloads {
  padding: 54px 40px 58px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  text-align: center;
}

.artist-simple-downloads .artist-simple-section-title {
  color: var(--red);
}

.artist-simple-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 4px;
  padding: 0 30px;
  border-radius: 999px;
  background: #d6001c;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight:400;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.artist-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.artist-booking-modal.open {
  display: flex;
}

.artist-booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(8px);
}

.artist-booking-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(760px, calc(100dvh - 56px));
  overflow: auto;
  background: #080808;
  color: #f4f4f4;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.artist-booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.artist-booking-head {
  padding: 30px 34px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.artist-booking-head span {
  color: #d6001c;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight:400;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.artist-booking-head h2 {
  margin: 8px 44px 0 0;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.artist-profile-booking-form {
  padding: 30px 34px 34px;
}

.artist-booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.artist-booking-fields label {
  display: block;
}

.artist-booking-fields span,
.artist-booking-check span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1.35;
}

.artist-booking-fields input,
.artist-booking-fields textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  outline: 0;
  padding: 4px 0 10px;
}

.artist-booking-fields textarea {
  resize: vertical;
}

.artist-booking-fields input:focus,
.artist-booking-fields textarea:focus {
  border-bottom-color: #d6001c;
}

.artist-booking-wide {
  grid-column: 1 / -1;
}

.artist-booking-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
}

.artist-booking-check input {
  width: 18px;
  height: 18px;
  accent-color: #d6001c;
}

.artist-booking-check span {
  margin: 0;
}

.artist-booking-section-title {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red, #d6001c);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.artist-booking-check-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.artist-booking-check-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #d6001c;
  cursor: pointer;
}

.artist-booking-check-inline span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245,245,245,.8);
  margin: 0;
}

.artist-booking-status {
  min-height: 20px;
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-text);
  font-size: 13px;
}

.artist-booking-status.error {
  color: #ff7d7d;
}

.artist-booking-status.success {
  color: #9bf0ba;
}

.artist-booking-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.artist-booking-cancel {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight:400;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.artist-booking-locked {
  overflow: hidden;
}

@media (max-width: 768px) {
  .artist-simple-page {
    padding: 100px 0 80px;
  }

  .artist-simple-wrap {
    padding: 0 28px;
  }

  .artist-simple-card {
    box-shadow: 0 12px 38px rgba(214,0,28,.06);
  }

  .artist-simple-image {
    aspect-ratio: 4 / 3;
  }

  .artist-simple-band {
    padding: 32px 28px 56px;
  }

  .artist-simple-band h1 {
    font-size: 26px;
    letter-spacing: .04em;
  }

  .artist-simple-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .artist-simple-content {
    padding: 52px 28px 44px;
  }

  .artist-simple-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-simple-videos,
  .artist-booking-fields {
    grid-template-columns: 1fr;
  }

  .artist-simple-downloads {
    padding: 44px 28px 48px;
  }

  .artist-booking-modal {
    padding: 14px;
  }

  .artist-booking-dialog {
    max-height: calc(100dvh - 28px);
  }

  .artist-booking-head,
  .artist-profile-booking-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .artist-booking-head h2 {
    font-size: 26px;
  }

  .artist-booking-actions-row {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Final artist profile correction: dark minimal profile, not light UI. */
.artist-simple-page {
  background:
    radial-gradient(circle at 80% 18%, rgba(214,0,28,.08), transparent 34%),
    #050505 !important;
  color: var(--text) !important;
  padding: 100px 28px 86px !important;
}

.artist-simple-wrap {
  width: min(100%, 980px) !important;
}

.artist-simple-back {
  color: var(--red) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

.artist-simple-card {
  background: rgba(10,10,10,.96) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.54) !important;
}

.artist-simple-image {
  aspect-ratio: 16 / 5.8 !important;
  background: radial-gradient(circle at 50% 34%, rgba(214,0,28,.12), rgba(255,255,255,.018) 38%, rgba(0,0,0,.72)) !important;
}

.artist-simple-image img {
  filter: grayscale(.28) contrast(1.08) !important;
}

.artist-simple-band {
  background: rgba(12,12,12,.98) !important;
  color: var(--text) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  padding: 30px 46px 54px !important;
}

.artist-simple-band h1 {
  font-family: var(--font-display) !important;
  font-size: 34px !important;
  letter-spacing: .08em !important;
}

.artist-simple-meta span {
  color: rgba(245,245,245,.44) !important;
}

.artist-simple-meta strong {
  color: rgba(245,245,245,.82) !important;
}

.artist-simple-content {
  background: #070707 !important;
  padding: 56px 76px 48px !important;
}

.artist-simple-socials a {
  color: rgba(245,245,245,.7) !important;
}

.artist-simple-bio {
  color: rgba(245,245,245,.62) !important;
}

.artist-simple-section {
  border-top: 1px solid rgba(255,255,255,.08) !important;
  background: #070707 !important;
}

.artist-simple-section-title {
  color: rgba(245,245,245,.82) !important;
}

.artist-simple-downloads,
.artist-simple-video-title {
  background: #101010 !important;
}

.artist-simple-book {
  border-radius: 0 !important;
  background: var(--red) !important;
  box-shadow: 0 16px 44px rgba(214,0,28,.18) !important;
}

@media (max-width: 768px) {
  .artist-simple-page {
    padding: 82px 28px 72px !important;
  }

  .artist-simple-image {
    aspect-ratio: 4 / 3 !important;
  }

  .artist-simple-band {
    padding: 28px 22px 52px !important;
  }

  .artist-simple-band h1 {
    font-size: 26px !important;
  }

  .artist-simple-content {
    padding: 54px 24px 40px !important;
  }
}

/* ── Mobile 768px: center alignment ── */
@media (max-width: 768px) {
  .artists-hero {
    text-align: center !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .artists-hero-label {
    justify-content: center !important;
  }
  .artists-hero-label::before {
    display: none !important;
  }
  .artists-hero-heading {
    text-align: center !important;
  }
  .artists-hero-sub {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ── Mobile: center alignment + 28px padding ── */
@media (max-width: 560px) {
  .artists-hero,
  .artist-roster-panel,
  .artists-grid,
  .artist-roster-cta {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .artists-hero { text-align: center !important; }
  .artists-hero-label { text-align: center !important; justify-content: center !important; }
  .artists-hero-heading { text-align: center !important; font-size: 26px !important; }
  .artists-hero-sub { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .artist-roster-meta { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .artist-roster-controls { flex-direction: column !important; gap: 12px !important; }
  .artist-search-field,
  .artist-filter-field { width: 100% !important; }
  .artist-control-actions { justify-content: center !important; }
  .artists-grid { grid-template-columns: 1fr !important; }
  .artist-card-footer { justify-content: center !important; }
  .artist-roster-cta { text-align: center !important; }
  .artist-roster-cta h2 { font-size: 26px !important; text-align: center !important; }
  .artist-roster-cta .artist-section-label { justify-content: center !important; }
  .artist-book-btn { margin: 0 auto !important; display: block !important; width: fit-content !important; }

  /* Artist profile page */
  .artist-info-section { padding: 48px 28px !important; }
  .artist-gallery-section,
  .artist-videos-section,
  .artist-downloads-section { padding-left: 28px !important; padding-right: 28px !important; }
  .artist-booking-section { padding-left: 28px !important; padding-right: 28px !important; }
  .artist-booking-cta { text-align: center !important; padding-left: 28px !important; padding-right: 28px !important; }
  .artist-booking-actions { justify-content: center !important; }

  /* Artist card text centered */
  .artist-card-body { text-align: center !important; }
  .artist-card-kicker { text-align: center !important; }
  .artist-card-name { text-align: center !important; }
  .artist-card-meta { justify-content: center !important; }
  .artist-card-genres { justify-content: center !important; }
  .artist-card-text { text-align: center !important; }
}

/* ── 1920×1080 / ultra-wide layout ─────────────────────────── */
@media (min-width: 1440px) {
  .artist-page-shell {
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: max(140px, calc((100vw - 1400px) / 2 + 80px)) !important;
    padding-right: max(80px,  calc((100vw - 1400px) / 2 + 60px)) !important;
  }
  .artists-hero {
    padding-left: max(140px, calc((100vw - 1400px) / 2 + 80px)) !important;
    padding-right: max(80px,  calc((100vw - 1400px) / 2 + 60px)) !important;
  }
}
