/* ==========================================================================
   About Page
   ========================================================================== */

.about-page {
    background: var(--color-white);
    padding: 36px 0 96px;
    --about-intro-copy-size: clamp(18px, 1.4vw, 20px);
    --about-intro-copy-line: clamp(29px, 2.1vw, 32px);
}

.about-page__hero,
.about-page__gallery-item,
.about-page__bottom {
    margin: 0;
}

.about-page__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-page__intro {
    margin-top: 95px;
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
}

.about-page__title {
    margin: 0 0 56px;
    font-family: var(--font-base);
    color: var(--color-accent);
    font-size: clamp(30px, 3vw, 34px);
    font-weight: var(--weight-regular);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-page__text {
    max-width: none;
    font-family: var(--font-base);
    color: #222;
    font-size: var(--about-intro-copy-size);
    font-weight: var(--weight-regular);
    line-height: var(--about-intro-copy-line);
    letter-spacing: -0.03em;
}

.about-page__text p {
    margin: 0;
}

.about-page__text p + p {
    margin-top: 0;
}

.about-page__text strong {
    font-weight: var(--weight-semibold);
}

.about-page__text-spacer {
    height: var(--about-intro-copy-line);
    margin-top: 0;
}

.about-page__gallery {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 8px;
}

.about-page__gallery-item {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page__gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-page__bottom {
    margin-top: 6px;
}

.about-page__bottom-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .about-page {
        padding: 28px 0 80px;
    }

    .about-page__intro {
        margin-top: 64px;
        max-width: 700px;
        margin-inline: auto;
    }

    .about-page__text {
        max-width: 100%;
    }

    .about-page__gallery {
        margin-top: 64px;
    }

}

@media (max-width: 1024px) {
    .about-page {
        --about-intro-copy-size: 18px;
        --about-intro-copy-line: 28px;
    }

    .about-page__title {
        margin-bottom: 42px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 22px 0 64px;
        --about-intro-copy-size: 16px;
        --about-intro-copy-line: 25px;
    }

    .about-page__intro {
        margin-top: 48px;
    }

    .about-page__title {
        margin-bottom: 24px;
    }

    .about-page__gallery {
        margin-top: 48px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .about-page__bottom {
        margin-top: 12px;
    }

}


