.about {
    position: relative;
    overflow: hidden;
    padding: 110px 8%;
    background: var(--light);
}

.about::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3eff9, #ffffff);
    top: -320px;
    right: -220px;
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f4f8fc;
    bottom: -250px;
    left: -180px;
    z-index: 0;
}

.section-title {
    margin-top: 100px;
}

/* CONTAINER */
.section-title {
    margin-bottom: 70px;
}

/* ---------- MAIN GRID ---------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 40px;
}

.image-layout {
    position: relative;
    min-height: 650px;
}

.image-layout img {
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(20, 40, 70, 0.12);
}

.main-photo {
    width: 75%;
    height: 520px;
}

.second-photo {
    position: absolute;
    width: 48%;
    right: 0;
    bottom: 25px;
    height: 270px;
    border: 10px solid white;
}

.floating-tag {
    position: absolute;
    left: -30px;
    bottom: 140px;
    background: var(--bg);
    padding: 18px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.floating-tag h3 {
    color: var(--accent);
    font-size: 2rem;
}

.floating-tag span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

/* ---------- OWNER ---------- */

.owner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
}

.owner-image {
    position: relative;
}

.owner-image img {
    border-radius: 25px;
    height: 540px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.owner-image::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--accent);
    border-radius: 22px;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.owner-content h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.owner-content p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 22px;
}

.owner-info {
    display: flex;
    gap: 60px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.owner-info div h3 {
    font-size: 2rem;
    color: var(--accent);
}

.owner-info div span {
    color: var(--text);
}

/* ---------- MOBILE ---------- */

@media (max-width: 1200px) {

    .about::before,
    .about::after {
        display: none;
    }

    .about-grid,
    .owner {
        grid-template-columns: 1fr;
    }

    .image-layout {
        min-height: auto;
    }

    .main-photo {
        width: 100%;
        height: 420px;
    }

    .second-photo {
        display: none;
    }

    .floating-tag {
        left: 20px;
        bottom: 20px;
    }

    .owner-image {
        max-width: 500px;
        margin: auto;
    }

    .owner-image img {
        height: 420px;
    }

    .section-title {
        margin: 80px 0 20px 0;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 24px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .owner-content h2 {
        font-size: 2.2rem;
    }

    .about-content h3 {
        font-size: 1.6rem;
        line-height: 1.4;
        padding-bottom: 20px;
    }

    .main-photo {
        height: 320px;
    }

    .owner-image img {
        height: 340px;
    }

    .owner-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 70px 20px;
    }

    .main-photo {
        height: 260px;
    }

    .owner-image img {
        height: 280px;
    }

    .section-title p,
    .about-content p,
    .owner-content p {
        font-size: 0.96rem;
    }

    .floating-tag {
        padding: 14px 18px;
    }

    .floating-tag h3 {
        font-size: 1.5rem;
    }
}