.home-wrapper {
  position: fixed;
  inset: 0;
  top: 64px;
  bottom: 52px;
  overflow: hidden;
}

.home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.home-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 14px;
}

.home-eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.home-title {
  font-family: 'Freight', serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 6px 0 14px;
  letter-spacing: 1px;
}

.home-subtitle {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.home-cta {
  display: inline-block;
  padding: 14px 42px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.home-cta:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  text-decoration: none;
}

.home-meta {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}