/* ==========================================================================
   Hero Section (Minimalist Welcoming Studio Branding)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 6.5rem 0 1.5rem;
  overflow: hidden;
}

/* Subtle Ambient Gradient Warmth in Obsidian Dark Mode */
.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, rgba(129, 140, 248, 0.05) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3rem, 7.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 720px;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive Hero */
@media (max-width: 640px) {
  .hero-section {
    padding: 6rem 0 4rem;
    min-height: auto;
  }
}
