
.hh-hero {
    width: calc(100% - 32px);
    margin: 16px auto;
    display: grid;
    overflow: hidden;
    border: 1px solid #eee8de;
    background: #fffcf7;
    box-sizing: border-box;
}

.hh-hero__left,
.hh-hero__right {
    min-width: 0;
}

.hh-hero__left {
    display: flex;
    align-items: stretch;
    background: #fffcf7;
}

.hh-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hh-hero__heading {
    margin: 0 0 22px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 5vw, 82px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
}

.hh-hero__subtitle {
    max-width: 520px;
    margin: 0 0 28px;
    color: #595959;
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.38;
}

.hh-hero__button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 6px;
    background: #6f7f55;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.hh-hero__button:hover {
    color: #fff;
    transform: translateY(-1px);
    opacity: .94;
    box-shadow: 0 10px 25px rgba(78, 91, 60, .18);
}

.hh-hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.hh-hero__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hh-hero__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    color: #6f7f55;
    font-size: 26px;
}

.hh-hero__feature-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.hh-hero__feature-text {
    color: #4e4e4e;
    font-size: 14px;
    line-height: 1.3;
}

.hh-hero__right {
    position: relative;
    min-height: 560px;
    background: #eee8de;
}

.hh-hero__right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .hh-hero {
        grid-template-columns: 1fr !important;
    }

    .hh-hero__left {
        order: 2;
    }

    .hh-hero__right {
        order: 1;
        min-height: 440px !important;
    }

    .hh-hero__heading {
        font-size: clamp(48px, 8vw, 72px);
    }
}

@media (max-width: 767px) {
    .hh-hero {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .hh-hero__left {
        min-height: auto !important;
        padding: 38px 24px 30px !important;
    }

    .hh-hero__right {
        min-height: 330px !important;
    }

    .hh-hero__heading {
        margin-bottom: 18px;
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1;
    }

    .hh-hero__subtitle {
        margin-bottom: 24px;
        font-size: 19px;
    }

    .hh-hero__button {
        width: 100%;
    }

    .hh-hero__features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    .hh-hero__feature-text {
        font-size: 15px;
    }
}
