.page-hero {
  padding: 42px 0 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.68), rgba(240, 231, 219, 0.28));
}

.page-hero-simple {
  max-width: 860px;
}

.artist-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(239, 232, 220, 0.8);
  color: var(--accent-dark);
  font-size: 12px;
}

.page-title {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.page-lead {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(44, 36, 28, 0.78);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.mini-link {
  position: relative;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
}

.artist-profile-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.artist-profile-main,
.artist-profile-side {
  min-width: 0;
}

.info-box {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(138, 106, 61, 0.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.info-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 16px;
  font-size: 14px;
}

.info-box dt {
  color: var(--muted);
}

.info-box dd {
  margin: 0;
  color: #3d3026;
}

.bio-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bio-list li {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(138, 106, 61, 0.10);
  line-height: 1.9;
}

.bio-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bio-year {
  display: inline-block;
  min-width: 6.2em;
  color: var(--accent-dark);
  font-weight: 600;
  white-space: nowrap;
  vertical-align: top;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.work-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(138, 106, 61, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(70, 52, 31, 0.10);
}

.work-media {
  height: 320px;
  background: linear-gradient(180deg, #f7f3eb 0%, #f1ece3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}

.work-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.work-card:hover .work-media img {
  transform: scale(1.04);
  filter: brightness(1.03) saturate(1.02);
}

.work-body {
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.work-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #2f261e;
}

.work-body span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.work-title-link {
  color: inherit;
}

.work-title-link:hover {
  color: var(--accent-dark);
}

.work-link {
  position: relative;
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 13px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(252, 250, 246, 0.92);
  border: 1px solid rgba(138, 106, 61, 0.14);
  color: #40342a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1024px) {
  .artist-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .works-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 28px 0 18px;
  }

  .page-lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .mini-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .artist-profile-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .info-box {
    padding: 22px 18px;
  }

  .info-box dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .page-title {
    white-space: normal;
  }
}
