/* Product-first hero section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f3ede4;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: clamp(32px, 5vw, 88px);
    transform: translateY(-50%);
    width: min(36vw, 520px);
    color: #1d1d1d;
}

.hero__eyebrow {
    margin: 0 0 0.7rem;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 64px);
    line-height: 1.25;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.hero__description {
    margin: clamp(18px, 2vw, 30px) 0 0;
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.9;
    letter-spacing: 0.04em;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(22px, 2.4vw, 36px);
    padding: 0.9rem 1.35rem;
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid #1c1c1c;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero__cta:hover {
    background: #fff;
    color: #1c1c1c;
}

.hero__cta:focus-visible {
    outline: 3px solid #1c1c1c;
    outline-offset: 4px;
}

.hero__cta:active {
    transform: translateY(1px);
}

@media (max-width: 960px) {
    .hero__content {
        left: 4vw;
        width: 39vw;
    }

    .hero__description {
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero__image {
        height: clamp(260px, 78vw, 390px);
        object-fit: cover;
        object-position: 72% center;
    }

    .hero__content {
        position: static;
        width: 100%;
        transform: none;
        padding: 28px 24px 34px;
        background: #f3ede4;
    }

    .hero__eyebrow {
        font-size: 13px;
        margin-bottom: 0.45rem;
    }

    .hero__title {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.3;
    }

    .hero__description {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.8;
    }

    .hero__desktop-break {
        display: none;
    }

    .hero__cta {
        margin-top: 22px;
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1.1rem;
    }
}
