/* ===== Hero — layout по образцу Timati RVR ===== */
.hero--rvr {
    min-height: clamp(580px, 92vh, 900px);
    padding: 0;
    align-items: stretch;
    overflow: visible;
}

.hero--rvr .hero-overlay {
    background:
        linear-gradient(0deg, #070708 0%, transparent 58%),
        linear-gradient(0deg, rgba(20, 20, 24, 0.55), rgba(20, 20, 24, 0.55));
}

.hero--rvr .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding:
        calc(var(--site-header-offset) + 8px)
        clamp(16px, 4vw, 24px)
        clamp(100px, 14vh, 140px);
    max-width: 1230px;
    margin: 0 auto;
    width: 100%;
}

.hero--rvr .hero-title {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin-left: clamp(0px, 6vw, 80px);
}

.hero--rvr .hero-eyebrow {
    margin-bottom: 0.65rem;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
}

.hero--rvr .hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.hero--rvr .hero-h1-main {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.125rem, 2.6vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    text-wrap: balance;
    max-width: 780px;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: none;
    overflow-wrap: normal;
    hyphens: manual;
}

.hero--rvr .hero-h1-main strong {
    font-weight: 800;
}

.hero--rvr .hero-h1-main .text-accent {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.hero--rvr .hero-subtitle {
    max-width: 495px;
    margin: 0 0 0.85rem;
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
}

.hero--rvr .hero-lead__soon {
    max-width: 520px;
    margin: 0 0 0.85rem;
    font-size: clamp(0.84rem, 1.55vw, 0.98rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
}

.hero--rvr .hero-lead__accent {
    color: var(--primary);
    font-weight: 700;
}

.hero--rvr .hero-trust {
    justify-content: flex-start;
    margin: 0.85rem 0 0;
    max-width: 520px;
    gap: 0.5rem 1.25rem;
}

.hero--rvr .hero-trust li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
}

.hero--rvr .hero-recon {
    --hero-recon-red: #CC0605;
}

.hero--rvr .hero-recon--boxed {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 0;
    padding: 14px 18px;
    max-width: min(100%, 560px);
    position: relative;
    z-index: 4;
    opacity: 1;
    visibility: visible;
    border: 2px solid var(--hero-recon-red);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(204, 6, 5, 0.22) 0%, rgba(8, 8, 10, 0.96) 55%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 0 0 1px rgba(204, 6, 5, 0.25),
        0 0 28px rgba(204, 6, 5, 0.35),
        0 8px 32px rgba(0, 0, 0, 0.35);
    animation: hero-recon-pulse 2.8s ease-in-out infinite;
}

@keyframes hero-recon-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(204, 6, 5, 0.25),
            0 0 28px rgba(204, 6, 5, 0.35),
            0 8px 32px rgba(0, 0, 0, 0.35);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(204, 6, 5, 0.45),
            0 0 40px rgba(204, 6, 5, 0.55),
            0 8px 32px rgba(0, 0, 0, 0.35);
    }
}

.hero--rvr .hero-recon__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid rgba(204, 6, 5, 0.55);
    background: var(--hero-recon-red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.78rem, 1.6vw, 0.88rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero--rvr .hero-recon__badge i {
    font-size: 0.95em;
}

.hero--rvr .hero-recon__text {
    flex: 1 1 200px;
    font-size: clamp(0.82rem, 1.5vw, 0.95rem);
    line-height: 1.45;
    color: #fff;
    font-weight: 500;
}

.hero--rvr .hero-lower {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(72px, 14vh, 140px);
    z-index: 2;
    padding: 0;
    pointer-events: none;
}

.hero--rvr .hero-lower .container {
    max-width: 1230px;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
}

.hero--rvr .hero-location-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.2rem 0.35rem;
    margin: 0;
    margin-left: clamp(0px, 6vw, 80px);
    padding: 0;
    max-width: min(100%, 680px);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

.hero--rvr .hero-location-line__type {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.hero--rvr .hero-location-line__place {
    color: rgba(255, 255, 255, 0.82);
}

.hero--rvr .hero-location-line__track {
    color: rgba(255, 255, 255, 0.78);
}

.hero--rvr .hero-location-line__track strong {
    font-weight: 800;
    color: var(--primary);
}

.hero--rvr .hero-location-line__sep {
    color: rgba(255, 255, 255, 0.35);
    user-select: none;
}

.hero--rvr .hero-location-line::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 18px;
    margin-right: 8px;
    margin-top: 1px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18' fill='none'%3E%3Cpath d='M7 0C3.13 0 0 3.13 0 7c0 5.25 7 11 7 11s7-5.75 7-11c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 7 4.5a2.5 2.5 0 0 1 0 5z' fill='%23ff3b3b'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero--rvr .hero-location-line i {
    display: none;
}

@media (max-width: 768px) {
    .hero--rvr {
        min-height: clamp(520px, 88vh, 620px);
    }

    .hero--rvr .hero-content {
        padding-top: calc(var(--site-header-offset) + 6px);
        padding-bottom: 100px;
    }

    .hero--rvr .hero-title {
        margin-left: 0;
    }

    .hero--rvr .hero-h1-main {
        font-size: clamp(1rem, 4.8vw, 1.35rem);
        line-height: 1.35;
        letter-spacing: 0.06em;
    }

    .hero--rvr .hero-subtitle {
        max-width: 100%;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .hero--rvr .hero-lead__soon {
        max-width: 100%;
        font-size: 0.8rem;
    }

    .hero--rvr .hero-trust {
        flex-direction: column;
        gap: 0.4rem;
    }

    .hero--rvr .hero-recon--boxed {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 8px;
    }

    .hero--rvr .hero-recon__badge {
        font-size: 0.78rem;
    }

    .hero--rvr .hero-recon__text {
        font-size: 0.8rem;
    }

    .hero--rvr .hero-lower {
        bottom: clamp(48px, 10vh, 72px);
    }

    .hero--rvr .hero-location-line {
        margin-left: 22px;
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .hero--rvr .hero-location-line::before {
        margin-left: -22px;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero--rvr .hero-title {
        margin-left: clamp(0px, 3vw, 40px);
    }

    .hero--rvr .hero-location-line {
        margin-left: clamp(0px, 3vw, 40px);
    }
}
