.owner-page {
    width: 100%;
    background: #f5ecdf;
    overflow-x: hidden;
}

.owner-banner {
    width: 100%;
    height: 42vh;
    background: #f5ecdf;
    overflow: hidden;
}

.owner-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.owner-hero {
    display: grid;
    grid-template-columns: 46% 44%;
    gap: 6%;
    align-items: center;

    width: 100%;
    padding: 6% 7%;
}

.owner-hero__image-wrap {
    width: 100%;
}

.owner-hero__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;

    border-radius: 4%;
    box-shadow: 0 4% 8% rgba(60, 70, 55, 0.16);
}

.owner-hero__eyebrow {
    margin: 0 0 4% 0;

    color: #8b9b83;

    text-transform: uppercase;
    letter-spacing: 0.18em;

    font-size: clamp(0.7rem, 0.8vw, 0.95rem);
    font-weight: 700;
}

.owner-hero__title {
    margin: 0 0 5% 0;

    color: #566b56;

    font-size: clamp(2rem, 3.4vw, 4rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
}

.owner-hero__intro {
    margin: 0 0 7% 0;

    color: #3f463f;

    font-size: clamp(0.95rem, 1vw, 1.2rem);
    line-height: 1.75;
}

.owner-hero__button {
    display: inline-block;

    padding: 3% 8%;

    background: #bf7896;
    color: #fffaf6;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    font-size: clamp(0.75rem, 0.85vw, 1rem);
    font-weight: 700;

    border-radius: 0.6rem;
    box-shadow: 0 4% 8% rgba(60, 70, 55, 0.16);
}

.owner-story {
    width: 100%;
    padding: 0 7% 7% 7%;
}

.owner-story__content {
    max-width: 72%;
    margin: 0 auto;

    color: #3f463f;

    font-size: clamp(1rem, 1.05vw, 1.2rem);
    line-height: 1.85;
}

.owner-story__content p {
    margin: 0 0 3% 0;
}

.owner-story__highlight {
    color: #566b56;
    font-size: clamp(1.25rem, 1.8vw, 2rem);
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 800px) {

    .owner-hero {
        grid-template-columns: 1fr;
        gap: 3rem;

        padding: 10% 7%;
    }

    .owner-hero__content {
        text-align: center;
    }

    .owner-story {
        padding: 0 7% 10% 7%;
    }

    .owner-story__content {
        max-width: 100%;
    }
}
