/* ==========================================================
   O SALONIE
   ========================================================== */

.about-page {
    background: #ffffff;
}

.about-page__eyebrow {
    margin: 0 0 0.8rem;
    color: #168387;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* HERO */

.about-hero {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-hero__grid {
    display: grid;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.about-hero__content {
    max-width: 660px;
}

.about-hero h1 {
    margin: 0;
    color: #004d57;
    font-size: clamp(2.8rem, 8vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.about-hero__lead {
    max-width: 58ch;
    margin: 1.6rem 0 0;
    color: #545d60;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.75;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.about-hero__media {
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 61, 70, 0.12);
}

.about-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* HISTORIA / GABINET */

.about-story {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: #f6f8f7;
}

.about-story__grid {
    display: grid;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.about-story__media {
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
}

.about-story__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-story__content {
    max-width: 650px;
}

.about-story h2,
.about-values h2 {
    margin: 0;
    color: #004d57;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
}

.about-story__content > p {
    margin: 1.3rem 0 0;
    color: #5b6365;
    line-height: 1.8;
}

.about-story__address {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 2rem;
    padding-left: 1.2rem;
    border-left: 3px solid #d6aa52;
    color: #334548;
    font-style: normal;
    line-height: 1.6;
}


/* WARTOŚCI */

.about-values {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-values__header {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-values__grid {
    display: grid;
    gap: 1rem;
}

.about-value {
    padding: clamp(1.5rem, 4vw, 2.2rem);
    border: 1px solid rgba(0, 77, 87, 0.11);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 61, 70, 0.05);
}


.about-value h3 {
    margin: 0;
    color: #064f58;
    font-size: 1.2rem;
}

.about-value p {
    margin: 0.9rem 0 0;
    color: #626a6c;
    line-height: 1.7;
}


@media (min-width: 48rem) {

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

}


@media (min-width: 64rem) {

    .about-hero__grid,
    .about-story__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-story__media {
        order: 1;
    }

    .about-story__content {
        order: 2;
    }

}
