/* ── VideoHero ─────────────────────────────────────────────── */

@keyframes sh-char-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sh-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Container */
.sh-video-hero {
  position: relative;
  width: 100%;
  height: 105vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Video background */
.sh-hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.sh-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text overlay — centered */
.sh-hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 60px;
}

.sh-hero-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 403px;
  max-width: 100%;
}

.sh-hero-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Heading lines */
.sh-line-display,
.sh-line-hero {
  color: #fff;
  text-align: center;
  margin: 0;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  font-size: 100px;
  line-height: 100px;
}

.sh-line-display {
  font-family: var(--font-nexa-heavy), sans-serif;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.sh-line-hero {
  font-family: var(--font-san-de-more), sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

/* Animated character spans */
.sh-hero-char {
  display: inline-block;
  opacity: 0;
  animation: sh-char-in 0.5s forwards;
}

/* CTA button */
.sh-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  margin-top: 24px;
  opacity: 0;
  animation: sh-fade-in 0.5s forwards;
}

.sh-hero-cta-text {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  white-space: pre;
}

/* Bottom white curve */
.sh-hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4%;
  background-color: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  z-index: 1;
}

/* ── Compact variant (section break) ─────────────────────── */

.sh-video-hero--compact {
  height: 50vh;
}

.sh-video-hero--compact .sh-hero-video-wrap {
  height: 100%;
}

.sh-video-hero--compact .sh-hero-center {
  height: 100%;
}

.sh-video-hero--compact .sh-line-display,
.sh-video-hero--compact .sh-line-hero {
  font-size: 64px;
  line-height: 64px;
}

.sh-video-hero--compact .sh-hero-curve {
  display: none;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1023px) {
  .sh-video-hero  { height: min-content; }
  .sh-video-hero--compact { height: 40vh; }
  .sh-hero-center { height: auto; padding: 240px 40px; }
  .sh-video-hero--compact .sh-hero-center { padding: 80px 40px; }
  .sh-hero-text-wrap { width: 100%; }
}

@media (max-width: 809px) {
  .sh-video-hero--compact { height: 35vh; }
  .sh-video-hero--compact .sh-line-display { font-size: 32px; line-height: 40px; }
  .sh-video-hero--compact .sh-line-hero { font-size: 36px; line-height: 36px; }
  .sh-line-display   { font-size: 42px; line-height: 60px; }
  .sh-line-hero      { font-size: 48px; line-height: 48px; letter-spacing: 3px; }
  .sh-hero-cta       { padding: 16px 24px; }
  .sh-hero-cta-text  { font-size: 16px; line-height: 16px; }
}
