.header {
    margin-bottom: 0;
}

.home-hero {
    position: relative;
    background-color: #f4dfbd;
    width: 100%;
    height: 41.6667vw;
    max-height: 800px;
    min-height: 600px;
    flex: 0 0 auto;
    overflow: hidden;
    color: var(--gray-color-120);
}

.home-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.home-hero-poster,
.home-hero-poster img,
.home-hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.home-hero-video.is-ready {
    opacity: 1;
}

.home-hero-copy {
    position: absolute;
    top: clamp(64px, 7vw, 110px);
    left: 50%;
    width: min(880px, calc(100% - 40px));
    text-align: center;
    transform: translateX(-50%);
}

.home-hero-title {
    font-family: "Literata", Georgia, serif;
    color: #201b16;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.025em;
    margin: 0;
}

.home-hero-lead {
    max-width: 720px;
    color: #4d453d;
    font-size: 20px;
    line-height: 1.5;
    margin: 16px auto 0;
}

.home-hero + .tales {
    padding-top: 48px;
}

/* АДАПТИВ */

@media screen and (max-width: 1099px) {
    .home-hero-copy {
        top: 64px;
    }

    .home-hero-title {
        font-size: clamp(40px, 5vw, 46px);
    }

    .home-hero-lead {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .home-hero {
        height: 125vw;
        max-height: 600px;
        min-height: 500px;
    }

    .home-hero-copy {
        top: clamp(32px, 10vw, 48px);
        width: calc(100% - 40px);
    }

    .home-hero-title {
        font-size: clamp(30px, 7.4vw, 36px);
        line-height: 1.16;
    }

    .home-hero-lead {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.45;
        margin-top: 12px;
    }

    .home-hero + .tales {
        padding-top: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-video {
        display: none;
        transition: none;
    }
}
