.about-owner {
    position: relative;
    overflow: hidden;
}

.about-owner::before {
    content: "";
    position: absolute;
    right: -180px;
    bottom: 4%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(247, 138, 0, 0.12) 0, rgba(247, 138, 0, 0.05) 38%, rgba(247, 138, 0, 0) 72%);
    filter: blur(44px);
}

.about-owner__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-owner__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 34%, rgba(247, 138, 0, 0.11), transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.about-owner__image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center bottom;
}

.about-owner__content {
    min-width: 0;
}

.about-owner__top {
    margin-bottom: 26px;
}

.about-owner__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    color: var(--accent-bg);
    font-family: var(--semibold);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(247, 138, 0, 0.32);
    border-radius: 999px;
    background: rgba(247, 138, 0, 0.08);
}

.about-owner__title {
    max-width: 760px;
    margin-bottom: 18px;
}

.about-owner__description {
    max-width: 820px;
}

.about-owner__description .text {
    color: rgba(247, 248, 250, 0.76);
}

.about-owner__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-owner__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.about-owner__feature .text {
    margin-bottom: 0;
    color: rgba(247, 248, 250, 0.88);
}

.about-owner__feature-icon {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--accent-bg);
    border-radius: 50%;
    background: rgba(247, 138, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(247, 138, 0, 0.18);
}

.about-owner__feature-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-owner__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.about-owner__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 108px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 0, rgba(247, 138, 0, 0.08), transparent 60%),
        rgba(255, 255, 255, 0.025);
}

.about-owner__stat-value {
    margin-bottom: 8px;
    color: var(--accent-bg);
    font-family: var(--bold);
    font-size: 28px;
    line-height: 1;
}

.about-owner__stat-label {
    color: rgba(247, 248, 250, 0.58);
    font-family: var(--semibold);
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-owner__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-owner__call-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.about-owner__call span {
    color: inherit;
    font: inherit;
}

@media (hover: hover) {
    .about-owner__media,
    .about-owner__stat {
        transition: border-color 0.25s ease, background 0.25s ease;
    }

    .about-owner__media:hover,
    .about-owner__stat:hover {
        border-color: rgba(247, 138, 0, 0.24);
    }
}

@media (min-width: 640px) {
    .about-owner__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-owner__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .about-owner__body {
        grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.38fr);
        align-items: stretch;
        gap: 42px;
    }

    .about-owner__media {
        min-height: 600px;
    }

    .about-owner__content {
        align-self: center;
    }
}

@media (min-width: 1200px) {
    .about-owner__body {
        gap: 56px;
    }
}

@media (max-width: 479px) {
    .about-owner__media {
        min-height: 390px;
    }

    .about-owner__call {
        width: 100%;
    }
}
