  :root{
    --black: #0a0a0c;
    --black-2: #131316;
    --panel: #18181c;
    --line: #2a2a2f;
    --bone: #ede7d9;
    --bone-dim: #b9b2a3;
    --gold: #c9974d;
    --gold-bright: #e3b876;
    --red: #7c1f1f;
    --red-bright: #b32a2a;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  body{
    background: var(--black);
    color: var(--bone);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  }

  ::selection{ background: var(--gold); color: var(--black); }

  img{ display:block; max-width:100%; }

  a{ color: inherit; text-decoration: none; }

  .display{
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 400;
  }
  .mono{
    font-family: 'Space Mono', monospace;
  }

  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- NAV ---------- */
  .nav{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 100;
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 22px 32px;
    mix-blend-mode: difference;
  }
  .nav__mark{
    font-family:'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    color: var(--bone);
  }
  .nav__links{
    display:flex;
    gap: 28px;
    font-family:'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav__links a{
    color: var(--bone-dim);
    transition: color .25s ease;
  }
  .nav__links a:hover{ color: var(--bone); }
  .nav__links a:focus-visible, a:focus-visible, button:focus-visible{
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }
  @media (max-width: 720px){
    .nav__links{ display:none; }
  }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    height: 100svh;
    min-height: 560px;
    display:flex;
    align-items: flex-end;
    overflow:hidden;
  }
  .hero__img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit: cover;
    object-position: 50% 30%;
    filter: saturate(1.05);
    transform: scale(1.06);
  }
  .hero__veil{
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.15) 30%, rgba(10,10,12,.35) 60%, rgba(10,10,12,.96) 100%);
  }
  .hero__content{
    position:relative;
    z-index: 2;
    width:100%;
    padding: 0 32px 56px;
  }
  .hero__eyebrow{
    font-family:'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    display:flex;
    align-items:center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero__eyebrow::before{
    content:'';
    width: 7px; height:7px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 10px var(--red-bright);
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{ opacity:1; transform: scale(1); }
    50%{ opacity:.4; transform: scale(.7); }
  }
  .hero__name{
    font-size: clamp(54px, 11vw, 138px);
    line-height: 0.86;
    color: var(--bone);
  }
  .hero__name span{ display:block; }
  .hero__name .accent{ color: var(--gold); }
  .hero__role{
    margin-top: 22px;
    max-width: 640px;
    font-size: clamp(14px, 1.6vw, 18px);
    color: var(--bone-dim);
    font-weight: 500;
    display:flex;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .hero__role b{ color: var(--bone); font-weight: 600; }
  .hero__role .dot{ color: var(--gold); }

  .scroll-cue{
    position:absolute;
    right: 32px;
    bottom: 28px;
    z-index:2;
    writing-mode: vertical-rl;
    font-family:'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--bone-dim);
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .scroll-cue::after{
    content:'';
    width:1px; height: 38px;
    background: var(--gold);
    animation: drip 1.8s ease-in-out infinite;
  }
  @keyframes drip{
    0%{ transform: scaleY(0); transform-origin: top; }
    50%{ transform: scaleY(1); transform-origin: top; }
    50.01%{ transform-origin: bottom; }
    100%{ transform: scaleY(0); transform-origin: bottom; }
  }
  @media (max-width: 720px){ .scroll-cue{ display:none; } }

  /* ---------- SECTION SHELL ---------- */
  section{ position: relative; }
  .section-head{
    display:flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 48px;
  }
  .section-num{
    font-family:'Space Mono', monospace;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .1em;
  }
  .section-title{
    font-size: clamp(30px, 4.2vw, 50px);
    color: var(--bone);
  }
  .section-rule{
    flex:1;
    height:1px;
    background: var(--line);
    align-self: center;
  }

  /* ---------- BIO / TIMELINE ---------- */
  .bio{
    padding: 130px 0 110px;
    background: var(--black);
  }
  .bio__intro{
    max-width: 760px;
    font-size: clamp(18px, 2.1vw, 23px);
    line-height: 1.55;
    color: var(--bone);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .bio__intro .em{ color: var(--gold-bright); }
  .bio__sub{
    max-width: 680px;
    color: var(--bone-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 90px;
  }

  .press{
    display:flex;
    align-items:center;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-bottom: 90px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .press__label{
    font-family:'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-right: 6px;
  }
  .press__item{
    font-size: 13px;
    color: var(--bone-dim);
    display:flex;
    align-items:center;
    gap: 8px;
  }
  .press__item b{ color: var(--bone); font-weight: 700; }
  .press__item:not(:last-child)::after{
    content:'•';
    margin-left: 20px;
    color: var(--line);
  }

  /* press release catalog timeline */
  .catalog{
    position: relative;
    padding-left: 40px;
  }
  .catalog::before{
    content:'';
    position:absolute;
    left: 7px; top: 6px; bottom: 6px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold), var(--line) 85%, transparent);
  }
  .catalog__row{
    position: relative;
    padding-bottom: 56px;
  }
  .catalog__row:last-child{ padding-bottom: 0; }
  .catalog__row::before{
    content:'';
    position:absolute;
    left: -40px;
    top: 4px;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--gold);
  }
  .catalog__cat{
    font-family:'Space Mono', monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .08em;
    margin-bottom: 8px;
  }
  .catalog__head{
    display:flex;
    align-items:baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .catalog__year{
    font-family:'Anton', sans-serif;
    font-size: 26px;
    color: var(--bone);
  }
  .catalog__title{
    font-size: 18px;
    font-weight: 700;
    color: var(--bone);
  }
  .catalog__body{
    max-width: 640px;
    color: var(--bone-dim);
    font-size: 15px;
    line-height: 1.7;
  }
  .catalog__body em{ color: var(--gold-bright); font-style: normal; font-weight: 600; }

  /* ---------- GALLERY ---------- */
  .gallery{
    padding: 110px 0;
    background: var(--black-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gallery__grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 10px;
  }
  .gallery__item{
    position:relative;
    overflow:hidden;
    background: var(--panel);
  }
  .gallery__item img{
    width:100%; height:100%;
    object-fit:cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
    filter: saturate(1.02) contrast(1.02);
  }
  .gallery__item:hover img{
    transform: scale(1.07);
  }
  .gallery__cap{
    position:absolute; left:0; right:0; bottom:0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
    font-family:'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bone-dim);
    opacity:0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .gallery__item:hover .gallery__cap{ opacity:1; transform: translateY(0); }

  .g1{ grid-column: 1 / 3; grid-row: 1 / 4; }
  .g2{ grid-column: 3 / 5; grid-row: 1 / 3; }
  .g3{ grid-column: 3 / 4; grid-row: 3 / 4; }
  .g4{ grid-column: 4 / 5; grid-row: 3 / 4; }

  @media (max-width: 880px){
    .gallery__grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .g1{ grid-column: 1 / 3; grid-row: 1 / 3; }
    .g2{ grid-column: 1 / 3; grid-row: 3 / 4; }
    .g3{ grid-column: 1 / 2; grid-row: 4 / 5; }
    .g4{ grid-column: 2 / 3; grid-row: 4 / 5; }
  }

  /* ---------- ROSTER / LABELS STRIP ---------- */
  .labels{
    padding: 80px 0;
    background: var(--black);
  }
  .labels__hero{
    overflow:hidden;
    border: 1px solid var(--line);
    margin-bottom: 40px;
  }
  .labels__hero img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: 50% 30%;
  }
  @media (max-width: 720px){
    .labels__hero img{ height: 260px; }
  }
  .labels__row{
    display:flex;
    flex-wrap: wrap;
    gap: 14px 14px;
  }
  .label-chip{
    border: 1px solid var(--line);
    padding: 11px 18px;
    font-family:'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--bone-dim);
    transition: border-color .25s ease, color .25s ease;
  }
  .label-chip:hover{ border-color: var(--gold); color: var(--bone); }

  /* ---------- NOW / RESIDENCY ---------- */
  .now{
    padding: 110px 0;
    background: var(--black-2);
    border-top: 1px solid var(--line);
    position: relative;
  }
  .now__grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 860px){ .now__grid{ grid-template-columns: 1fr; } }
  .now__img-wrap{
    position: relative;
    overflow:hidden;
  }
  .now__img-wrap img{ width:100%; height: 460px; object-fit: cover; object-position: 50% 25%; }
  .now__tag{
    position:absolute; top:18px; left:18px;
    background: var(--red);
    color: var(--bone);
    font-family:'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 12px;
  }
  .now__eyebrow{
    font-family:'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .now__title{
    font-size: clamp(28px,4vw,44px);
    margin-bottom: 22px;
    color: var(--bone);
  }
  .now__text{
    color: var(--bone-dim);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 26px;
  }
  .now__text b{ color: var(--bone); font-weight: 700; }
  .now__facts{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }
  .now__logos-label{
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bone-dim);
    margin-top: 30px;
    margin-bottom: 14px;
  }
  .now__logos{
    display:flex;
    align-items:center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .now__logos img{
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.9;
    border: 1px solid var(--line);
  }
  .now__flyer{
    margin-top: 28px;
    max-width: 280px;
    overflow:hidden;
    border: 1px solid var(--line);
  }
  .now__flyer img{
    width: 100%;
    height: auto;
    display:block;
  }
  .fact-k{
    font-family:'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bone-dim);
    margin-bottom: 6px;
  }
  .fact-v{ font-size: 16px; font-weight: 700; color: var(--bone); }

  /* ---------- BOOK / CONTACT ---------- */
  .book{
    padding: 140px 0 70px;
    background: var(--black);
  }
  .book__grid{
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
    text-align: left;
  }
  @media (max-width: 860px){
    .book__grid{ grid-template-columns: 1fr; text-align: center; }
    .book .cta-row{ justify-content: center; }
  }
  .book__media{
    position: relative;
    overflow:hidden;
  }
  .book__media img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: 50% 20%;
  }
  .book__copy{ text-align: left; }
  @media (max-width: 860px){ .book__copy{ text-align: center; } }
  .book .cta-row{ justify-content: flex-start; margin-bottom: 0; }
  .book__eyebrow{
    font-family:'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }
  .book__title{
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: .94;
    margin-bottom: 28px;
  }
  .book__title .accent{ color: var(--gold); }
  .book__sub{
    max-width: 460px;
    margin: 0 0 34px;
    color: var(--bone-dim);
    font-size: 15.5px;
    line-height: 1.7;
  }
  @media (max-width: 860px){
    .book__sub{ margin: 0 auto 34px; }
  }
  .cta-row{
    display:flex;
    justify-content:center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 16px 30px;
    font-family:'Space Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--bone);
    transition: background .25s ease, color .25s ease, transform .2s ease;
  }
  .btn--solid{
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }
  .btn--solid:hover{ background: var(--gold-bright); transform: translateY(-2px); }
  .btn:not(.btn--solid):hover{ background: rgba(201,151,77,.1); transform: translateY(-2px); }

  .socials{
    display:flex;
    justify-content:center;
    gap: 26px;
    margin-bottom: 60px;
    font-family:'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .socials a{ color: var(--bone-dim); transition: color .2s ease; }
  .socials a:hover{ color: var(--gold-bright); }

  /* ---------- CONNECT ---------- */
  .connect{
    padding: 0 0 110px;
    background: var(--black);
  }
  .connect__hero{
    overflow:hidden;
    border: 1px solid var(--line);
    margin-bottom: 40px;
  }
  .connect__hero img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: 50% 30%;
  }
  @media (max-width: 720px){
    .connect__hero img{ height: 280px; }
  }
  .connect__grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  @media (max-width: 720px){
    .connect__grid{ grid-template-columns: 1fr; }
  }
  .connect__card{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 26px 28px;
    border: 1px solid var(--line);
    background: var(--black-2);
    transition: border-color .25s ease, background .25s ease, transform .2s ease;
  }
  .connect__card:hover{
    border-color: var(--gold);
    background: var(--panel);
    transform: translateY(-2px);
  }
  .connect__name{
    font-size: clamp(22px, 3vw, 30px);
    color: var(--bone);
  }
  .connect__arrow{
    font-family:'Space Mono', monospace;
    font-size: 18px;
    color: var(--gold);
    transition: transform .25s ease;
  }
  .connect__card:hover .connect__arrow{ transform: translate(3px,-3px); }

  footer{
    border-top: 1px solid var(--line);
    padding: 26px 0;
    display:flex;
    justify-content: space-between;
    align-items:center;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-family:'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .06em;
    color: var(--bone-dim);
  }
  .footer__links{
    display:flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer__links a{
    color: var(--bone-dim);
    text-transform: uppercase;
    transition: color .2s ease;
  }
  .footer__links a:hover{ color: var(--gold-bright); }

  /* reveal-on-scroll */
  .reveal{
    opacity: 1;
    transform: none;
  }
  .reveal.js-pending{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.js-pending.in{ opacity:1; transform: translateY(0); }

/* ---------- SUB PAGE HERO ---------- */
.page-hero{
  padding: 170px 0 70px;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.page-hero__eyebrow{
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-hero__eyebrow::before{
  content:'';
  width: 7px; height:7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
}
.page-hero__title{
  font-size: clamp(42px, 8vw, 96px);
  line-height: .92;
  color: var(--bone);
}
.page-hero__title .accent{ color: var(--gold); }
.page-hero__sub{
  margin-top: 22px;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--bone-dim);
}
.page-hero__back{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 28px;
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .2s ease;
}
.page-hero__back:hover{ color: var(--gold-bright); }

/* ---------- MEDIA GRID (VIDEO) ---------- */
.media{
  padding: 100px 0;
  background: var(--black);
}
.media--alt{ background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.media__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.video-card__frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow:hidden;
}
.video-card__frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.video-card__title{
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.4;
}
.video-card__meta{
  margin-top: 6px;
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- SOUNDCLOUD EMBED LIST ---------- */
.sc-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.sc-grid--two{ grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
.sc-card__title{
  font-size: 16px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 4px;
}
.sc-card__meta{
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sc-card__frame{
  border: 1px solid var(--line);
  background: var(--panel);
  overflow:hidden;
}
.sc-card__frame iframe{ display:block; width:100%; border:0; }

.sc-card__fallback{
  display:inline-block;
  margin-top: 8px;
  font-family:'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .2s ease;
}
.sc-card__fallback:hover{ color: var(--gold-bright); }

.sc-card__playbtn{
  width:100%;
  height: 166px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  background: var(--panel);
  border: none;
  cursor: pointer;
  transition: background .25s ease;
}
.sc-card__playbtn:hover{ background: #1e1e23; }
.sc-card__playicon{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 13px;
  transition: background .25s ease, transform .25s ease;
}
.sc-card__playbtn:hover .sc-card__playicon{ background: var(--gold-bright); transform: scale(1.06); }
.sc-card__playtext{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- TEKNIKA RECORDS SIGN-OFF ---------- */
.teknika{
  padding: 20px 0 70px;
  background: var(--black);
  text-align: center;
}
.teknika__logo{
  width: 140px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 6px;
  opacity: 0.92;
}
.teknika__caption{
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- DJ MIXES PAGE ---------- */
.mix-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}
.mix-card{
  border: 1px solid var(--line);
  background: var(--panel);
  overflow:hidden;
}
.mix-card__art{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
}
.mix-card__art img{
  width:100%; height:100%;
  object-fit: cover;
}
.mix-card__body{
  padding: 22px 22px 26px;
}
.mix-card__meta{
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.mix-card__title{
  font-size: 19px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 18px;
}
.mix-card__player iframe{
  display:block;
  width:100%;
  border:0;
}

/* ---------- MINI PORTRAIT (above bio) ---------- */
.mini-portrait{
  display:flex;
  justify-content:center;
  padding: 0 0 36px;
}
.mini-portrait img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
