/* Hero */
.hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 4, 18, 0) 0%,
    rgba(6, 4, 18, 0) 42%,
    rgba(6, 4, 18, 0.6) 64%,
    rgba(6, 4, 18, 0.97) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 48px 56px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-name {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  transition: background 0.2s, border-color 0.2s;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

/* Home content area */
.home-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-bio {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 22px;
}

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

.hero-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hero-social-link:hover { color: #fff; }

.hero-social-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* "See all upcoming shows" link below home shows list */
.shows-see-all {
  padding: 12px 0 4px;
  text-align: center;
}

.shows-see-all-link {
  display: inline-block;
  color: var(--accent-purple-lt);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(180, 100, 255, 0.35);
  padding: 10px 24px;
  letter-spacing: 0.5px;
  transition: background 0.15s, border-color 0.15s;
}

.shows-see-all-link:hover {
  background: rgba(180, 100, 255, 0.1);
  border-color: rgba(180, 100, 255, 0.6);
}

.shows-see-all-link:focus-visible {
  outline: 2px solid var(--accent-purple);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .hero-content { padding: 32px 20px 32px; }
  .home-content { padding: 24px 20px 60px; }
  .hero-bio { font-size: 12.5px; }
  .hero-socials { gap: 14px; }
  .hero-social-link span { display: none; }
}
