/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.56) 0%, rgba(17, 17, 17, 0.34) 44%, rgba(17, 17, 17, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: min(48rem, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 8rem 0 6rem;
  text-align: center;
}

.centered {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245, 243, 239, 0.86);
}

.hero .section-kicker.centered {
  color: rgba(245, 243, 239, 0.88);
}

.centered span {
  width: 1.5rem;
  height: 1px;
  background: var(--rust);
}

.hero-lead {
  width: min(32rem, 100%);
  margin: 1.5rem auto 0;
  color: var(--text-invert);
  font-size: 0.84rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2.35rem;
}

.hero-actions .button {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-footer {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.15rem;
  border-top: 1px solid var(--line-light);
  background: rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(12px);
  color: rgba(245, 243, 239, 0.72);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.hero-footer span {
  white-space: nowrap;
}

.hero-footer span:nth-child(2) {
  display: none;
}
