.home-hero-block {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 5.5rem 0;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.home-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.home-hero-left {
    max-width: 760px;
}

.home-hero-title {
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.home-hero-subtitle {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(1.1rem, 2vw, 2rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.home-hero-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.5;
    max-width: 40ch;
}

.home-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.home-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 285px;
    padding: 1rem 2.05rem;
    border-radius: 18px;
    border: 3px solid #1f2937;
    background: #c22026;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-hero-button:hover {
    background: #a91b20;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .home-hero-block {
        min-height: 520px;
        padding: 4rem 0;
    }

    .home-hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .home-hero-right {
        justify-content: flex-start;
    }
}
