.vault-video-section,
.vault-hero-section {
    position: relative;
    overflow: hidden;
    background: #00171c;
}

.vault-hero-section {
    min-height: 100svh;
    height: 100svh;
}

.vault-hero-section--mobile {
    min-height: 92svh;
    height: 92svh;
}

.vault-hero-section--mobile .vault-hero-caption {
    justify-content: flex-end;
}

.vault-hero-section--mobile .vault-hero-caption__mobile-inner {
    margin-bottom: clamp(2.5rem, 14vh, 5rem);
    padding-bottom: clamp(1rem, 4vh, 1.5rem);
}

.vault-hero-section--mobile .vault-hero-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 23, 28, 0.92) 0%,
        rgba(0, 23, 28, 0.55) 42%,
        rgba(0, 23, 28, 0.12) 68%,
        transparent 100%
    );
}

.vault-hero-section--mobile .vault-hero-caption__badge {
    display: inline-block;
}

@media (min-width: 768px) {
    .vault-hero-section--below-nav {
        margin-top: var(--site-desktop-header-height, 72px);
        min-height: calc(100svh - var(--site-desktop-header-height, 72px));
        height: calc(100svh - var(--site-desktop-header-height, 72px));
    }
}

.vault-hero-media {
    position: absolute;
    inset: 0;
    transform: translate3d(0, 0, 0);
    transform-origin: center center;
    will-change: transform;
    z-index: 0;
}

.vault-hero-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 47%;
}

.vault-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    z-index: 1;
}

.vault-hero-caption {
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    z-index: 2;
}

.vault-hero-caption__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

.vault-hero-caption__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 36rem;
}

.vault-hero-caption__headline h2,
.vault-hero-caption__headline p,
.vault-hero-caption__eyebrow {
    width: 100%;
    max-width: 36rem;
    margin-left: 0;
    padding-left: 0;
}

.vault-hero-caption__eyebrow {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .vault-hero-caption__eyebrow {
        margin-bottom: 0.625rem;
    }
}

.vault-hero-caption__copy {
    transform: none;
    will-change: auto;
}

.vault-hero-scroll-hint {
    transform: translate3d(-50%, 0, 0);
    will-change: transform, opacity;
    z-index: 3;
}

.vault-hero-section .vault-video-controls {
    pointer-events: auto;
}

.vault-hero-section.is-parallax-active .vault-hero-scroll-hint {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .vault-hero-media,
    .vault-hero-overlay,
    .vault-hero-caption,
    .vault-hero-scroll-hint {
        transform: none !important;
        will-change: auto;
    }
}

.hero-reflection-spacer {
    display: block;
    width: 100%;
    height: clamp(2.5rem, 7vh, 5rem);
    background: #00171c;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-reflection-spacer {
        height: clamp(3rem, 8vh, 6rem);
    }
}

/* Reflection band — mirror-finish photo behind headline */
.reflection-section {
    position: relative;
    overflow: hidden;
}

.reflection-section__bg {
    position: absolute;
    inset: 0;
}

.reflection-section__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.9);
}

.reflection-section__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 23, 28, 0.72) 0%,
        rgba(0, 23, 28, 0.35) 45%,
        rgba(0, 23, 28, 0.25) 100%
    );
}

/* Legacy inline video blocks */
.vault-video-section video {
    display: block;
    width: 100%;
    min-height: 50svh;
    max-height: min(72vh, 820px);
    object-fit: cover;
    object-position: center center;
}

.vault-video-overlay {
    pointer-events: none;
}

.vault-video-controls {
    pointer-events: auto;
}

.vault-video-controls button {
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.vault-video-controls button:hover {
    opacity: 0.85;
    transform: scale(1.05);
}
