/* Hero Video Section */
.hero-video {
  position: relative;
  width: 100vw;
  height: 125vw;              /* 4:5 */
  max-height: 90vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.35);
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
}

.hero-overlay > * {
  max-width: 900px;
}

.hero-title {
  font-family: var(--qc-font);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.hero-subtitle {
  font-family: var(--qc-font);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
