/* ── Hero Section ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--full {
  min-height: 70vh;
}

@media (min-width: 768px) {
  .hero--full {
    min-height: 85vh;
  }
}

.hero--compact {
  min-height: 35vh;
}

@media (min-width: 768px) {
  .hero--compact {
    min-height: 40vh;
  }
}

/* ── Hero Background ── */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 61, 0.9) 0%,
    rgba(15, 27, 61, 0.7) 100%
  );
  z-index: 1;
}

/* Compact hero uses solid background when no image */
.hero--compact {
  background-color: var(--color-secondary);
  color: var(--color-text-on-dark);
}

.hero--full {
  color: var(--color-text-on-dark);
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-12);
  width: 100%;
}

.hero--full .hero-content {
  padding-block: var(--space-16);
  max-width: 720px;
}

@media (min-width: 768px) {
  .hero--full .hero-content {
    padding-block: var(--space-20);
  }
}

.hero-eyebrow {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-widest);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero h1 {
  margin-bottom: var(--space-4);
}

.hero-sub {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-300);
  max-width: var(--max-width-prose);
  margin-bottom: var(--space-8);
}

.hero--compact .hero-sub {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
