/* About page */

.about-page {
    background: var(--bg-cream);
    font-family: var(--font-sans);
}

.about-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── Hero ── */
.about-hero {
    border-color: var(--border-light) !important;
    /* Clear fixed navbar (~80px) + comfortable gap */
    padding: calc(80px + clamp(1.5rem, 4vw, 2.25rem)) 0 clamp(2.5rem, 5vw, 4rem);
}

.about-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.about-hero__lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--charcoal-3);
    max-width: 32rem;
}

.about-hero__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .about-hero__media {
        display: flex;
        justify-content: flex-end;
    }

    .about-hero__figure {
        max-width: 22rem;
        width: 100%;
    }
}

/* ── Stats ── */
.about-stats {
    padding: 0 0 3rem;
}

.about-stats .row {
    --bs-gutter-y: 1rem;
}

@media (max-width: 575.98px) {
    .about-stats {
        padding-bottom: 2.5rem;
    }

    .about-stats .row {
        --bs-gutter-y: 0.85rem;
    }

    .about-stat-card {
        padding: 1.25rem 1.15rem;
    }

    .about-stat-card__note {
        font-size: 0.8125rem;
        line-height: 1.55;
    }
}

.about-stat-card {
    height: 100%;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-stat-card__value {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
    color: var(--text-dark);
    margin: 0;
}

.about-stat-card__label {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.about-stat-card__note {
    margin: 0.45rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--charcoal-3);
}

/* ── Mission / Vision ── */
.about-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.about-section--values {
    background: var(--bg-cream);
    border-top: 1px solid var(--border-light);
}

.about-section__intro {
    max-width: 34rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.about-mission-row + .about-mission-row {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.about-block-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.about-block-title {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-body-text {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--charcoal-3);
}

.about-body-text:last-child {
    margin-bottom: 0;
}

.about-block-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-sm);
}

.about-page figure {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius) + 4px);
}

/* ── Values ── */
.about-value-card {
    height: 100%;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-value-card__icon {
    margin-bottom: 1rem;
    color: var(--accent-deep);
    line-height: 0;
}

.about-value-card__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-value-card__text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal-3);
}

/* ── CTA ── */
.about-cta {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 4rem;
    border-top: 1px solid var(--border-light);
}

.about-cta__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--text-dark);
}

.about-cta__lead {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal-3);
}

.about-btn-arrow {
    transition: transform 0.3s ease;
}

.about-page .page-units-btn:hover .about-btn-arrow {
    transform: translateX(0.3rem);
}

@media (max-width: 575.98px) {
    .about-hero__actions .page-units-btn,
    .about-cta__action .page-units-btn {
        width: 100%;
        justify-content: center;
    }

    .about-hero__actions {
        flex-direction: column;
    }
}
