/* ===== Hero Section ===== */
.hero {
    padding: 25px 0 0;
}

.hero__content {
    max-width: 100%;
}

.hero__title {
    font-size: clamp(42px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 32px;
}

.hero__title-line {
    display: inline;
}

.hero__title-line--offset {
    display: inline-block;
    padding-left: 8vw;
}

.hero__subline {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 460px;
}

.hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Full-width image below content */
.hero__image-wrapper {
    width: 100%;
}

.hero__image {
    width: 100%;
    height: clamp(300px, 50vw, 600px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .hero {
        padding: 25px 0 0;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 44px);
        line-height: 1.15;
        text-align: center;
    }

    .hero__title-line--offset {
        padding-left: 0;
    }

    .hero__subline {
        font-size: 15px;
        max-width: 100%;
    }

    .hero__row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .hero__actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero__actions .btn {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        font-size: 13px;
        padding: 0 14px;
        height: 44px;
    }

    .hero__image {
        height: 260px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        gap: 8px;
    }

    .hero__actions .btn {
        padding: 0 40px 0 20px;
        height: 40px;
        font-size: 11px;
        gap: 4px;
        letter-spacing: 0;
    }

    .hero__actions .btn__icon {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .hero__actions .btn__icon svg {
        width: 12px;
        height: 12px;
    }

    .hero__image {
        height: 220px;
    }
}
