
:root{--black:#050505;--paper:#f1f1ed;--line:#292929;--ease:cubic-bezier(.16,1,.3,1)}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--black);color:#fff;font-family:Inter,Arial,sans-serif}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.artist-page-header{height:82px;padding:15px 34px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #252525;background:#070707}
.artist-page-header img{width:280px;height:50px;object-fit:contain;object-position:left}
.artist-page-header nav{display:flex;gap:30px;font-size:10px;letter-spacing:.2em;text-transform:uppercase}
.artist-page-header nav a{opacity:.65}.artist-page-header nav a:hover{opacity:1}
.artist-hero{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(330px,.75fr);min-height:760px;border-bottom:1px solid var(--line)}
.artist-hero-image{background:#dce5f2;overflow:hidden}
.artist-hero-image img{width:100%;height:100%;object-fit:cover;object-position:center 43%}
.artist-hero-copy{padding:7vw 5vw;display:flex;flex-direction:column;justify-content:space-between}
.artist-kicker{font-size:9px;letter-spacing:.26em;color:#999}
.artist-hero h1{margin:16px 0 32px;font:600 clamp(92px,12vw,190px)/.76 "Space Grotesk",sans-serif;letter-spacing:-.09em}
.artist-summary{max-width:520px;font-size:17px;line-height:1.75;color:#b6b6b1}
.artist-meta{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:56px;padding-top:30px;border-top:1px solid #333}
.artist-meta span{display:block;margin-bottom:8px;font-size:8px;letter-spacing:.22em;color:#7f7f7a}
.artist-meta strong{font-size:13px;font-weight:500;letter-spacing:.08em}
.members{padding:9vw 6vw;background:var(--paper);color:#080808}
.members-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:52px}
.members-head span{font-size:9px;letter-spacing:.24em}
.members-head h2{margin:0;font:600 clamp(58px,8vw,120px)/.85 "Space Grotesk",sans-serif;letter-spacing:-.07em}
.member-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.member-card{background:#fff;border:1px solid #c7c7c1}
.member-image{aspect-ratio:4/5;overflow:hidden;background:#dce5f2}
.member-image img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .7s var(--ease)}
.member-card:hover .member-image img{transform:scale(1.025)}
.member-info{padding:22px 20px 26px}
.member-info span{font-size:8px;letter-spacing:.2em;color:#777}
.member-info h3{margin:10px 0 14px;font:600 34px/1 "Space Grotesk",sans-serif;letter-spacing:-.05em}
.member-info p{margin:0;font-size:12px;line-height:1.6;color:#555}

.demo-note strong{color:#fff;font-weight:500}
.artist-footer{padding:30px 6vw;border-top:1px solid #252525;display:flex;justify-content:space-between;font-size:9px;letter-spacing:.18em;color:#888}
@media(max-width:1000px){
 .artist-hero{grid-template-columns:1fr}
 .artist-hero-image{min-height:70vh}
 .artist-hero-copy{min-height:620px}
 .member-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:650px){
 .artist-page-header{padding:12px 18px;height:68px}
 .artist-page-header img{width:190px}
 .artist-page-header nav{gap:14px;font-size:8px}
 .artist-hero-image{min-height:58vh}
 .artist-hero-copy{padding:70px 24px;min-height:560px}
 .artist-meta{grid-template-columns:1fr}
 .members{padding:80px 18px}
 .members-head{align-items:start;flex-direction:column;gap:16px}
 .member-grid{grid-template-columns:1fr}
 .artist-footer{padding-left:18px;padding-right:18px;flex-direction:column}
}


/* Preserve original artist image color */
.artist-feature-image img,
.artist-hero-image img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}


/* Artist profile metadata: only members and label */
.artist-meta{
  grid-template-columns:1fr 1fr;
}


/* Mobile and performance safeguards */
html{
  -webkit-text-size-adjust:100%;
}
img,
video{
  max-width:100%;
}
img{
  height:auto;
}
button,
a,
input,
select,
textarea{
  touch-action:manipulation;
}
@media (hover:none), (pointer:coarse){
  .custom-cursor,
  .cursor,
  .cursor-dot,
  .cursor-ring{
    display:none !important;
  }
  body{
    cursor:auto !important;
  }
}
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto !important;
  }
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
