.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  background: #ffffffdb;
  border-radius: 2rem;
  padding: 2rem 2rem 2rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0px);
}

.hero-text {
  flex: 1.2;
  min-width: 240px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #2f2a27 0%, #8f6b4c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #b47c48;
  margin-bottom: 0.5rem;
  border-left: 4px solid #cfb797;
  padding-left: 1rem;
}

.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7efe6;
  padding: 0.4rem 1rem;
  border-radius: 60px;
  font-size: 0.85rem;
  color: #6a4e2e;
  margin: 0.8rem 0;
  font-weight: 500;
}

.hero-bio {
  font-size: 1rem;
  line-height: 1.5;
  color: #3f3a36;
  max-width: 480px;
  margin-top: 0.5rem;
}

.hero-photo {
  flex: 0.8;
  min-width: 180px;
  display: flex;
  justify-content: center;
}

.artist-placeholder {
  background: #e5ddd2;
  border-radius: 32px;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 28px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  border: 1px solid #f5ede3;
  background-image: radial-gradient(circle at 30% 40%, rgba(170, 130, 90, 0.08) 2%, transparent 2.5%);
  background-size: 26px 26px;
  overflow: hidden;
}

.artist-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.placeholder-icon svg {
  width: 68px;
  height: 68px;
  stroke: #a77f56;
  stroke-width: 1.3;
  fill: none;
}

.placeholder-text {
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255, 250, 240, 0.8);
  padding: 0.25rem 1rem;
  border-radius: 60px;
  color: #8c6744;
  margin-top: 8px;
}

.caption-placeholder {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  text-align: center;
  color: #b29276;
}