.about-page {
    background: #111;
}

.about-hero {
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 6% 80px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.3)
        ),
        url("../images/hero.jpg") center / cover no-repeat;
}

.about-hero-text {
    max-width: 760px;
}

.page-label,
.section-label {
    margin-bottom: 14px;
    color: #d62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero h2 {
    margin-bottom: 20px;
    font-size: clamp(46px, 7vw, 78px);
    line-height: 1;
}

.about-hero p:last-child {
    max-width: 650px;
    color: #d0d0d0;
    font-size: 20px;
    line-height: 1.7;
}

/* Owner section */

.owner-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 70px;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    padding: 120px 6%;
}

.owner-image img {
    width: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.owner-content h2 {
    margin-bottom: 26px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}

.owner-content > p {
    margin-bottom: 20px;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.8;
}



/* Shared heading */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 5vw, 56px);
}

.section-heading > p:last-child {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.7;
}

/* Values */

.values-section {
    padding: 110px 6%;
    background: #181818;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 38px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.65);
}

.value-card span {
    display: block;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 38px;
    font-weight: 700;
}

.value-card h3 {
    margin-bottom: 16px;
    font-size: 24px;
}

.value-card p {
    color: #aaa;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 950px) {
    .owner-section {
        grid-template-columns: 1fr;
    }

    .owner-image img {
        min-height: 430px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .about-hero,
    .owner-section,
    .values-section {
        padding-left: 20px;
        padding-right: 20px;
    }

}