.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-slide__poster,
.hero-slide__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide__poster {
    z-index: 1;
}
.hero-slide__video {
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active .hero-slide__video {
    opacity: 1;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2) 55%, transparent);
}
.hero-talent {
    position: absolute;
    left: clamp(1.5rem, 4vw, 4rem);
    bottom: clamp(3rem, 8vh, 6rem);
    z-index: 10;
    min-width: 400px;
    max-width: 500px;
    color: #fff;
}
.hero-talent__name {
    margin: 0 0 15px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
}
.hero-talent__meta {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.hero-talent {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}
.hero-talent.is-changing {
    opacity: 0;
    transform: translateY(12px);
}
.hero-talent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}
.hero-talent__button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.hero__content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    padding: 50px;
    color: #fff;
}
.hero__title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 0;
}
.hero__subtitle {
    max-width: 600px;
    margin-top: 15px;
    opacity: 0.8;
}
.hero__cta {
    display: inline-flex;
    margin-top: 25px;
    padding: 12px 26px;
    background: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}
.reel-tag {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide__video {
        transition: none;
    }
}
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    color: #fff;
}
.hero__title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 0;
}
.hero__subtitle {
    margin-top: 10px;
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.9;
}
