/* ============================================================
   about.css — About Us page styles
   Sections: teal hero (base), full-width photo, statement
   (base), Our Values cards, Numbers band (base).
   The values grid is shared with contact.html via this file.
   ============================================================ */

/* Full-bleed photo under the hero */
.about-photo img {
    width: 100%;
    height: clamp(320px, 42vw, 600px);
    object-fit: cover;
}

/* ------------------------------------------------------------
   Our Values — four color cards with asterisk badge
   (also used on contact.html / thank-you.html)
   ------------------------------------------------------------ */
.values {
    padding: var(--section-py) 0 120px;
}

.values .section-title {
    margin-bottom: 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.value-card .value-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.value-card p {
    margin-top: auto;
    font-size: 15px;
    line-height: 1.55;
    padding-top: 24px;
}

.value-card--yellow { background: var(--yellow); }
.value-card--yellow h3 { color: var(--teal-accent); }
.value-card--yellow p { color: var(--ink-soft); }

.value-card--plum { background: var(--plum); }
.value-card--plum h3 { color: var(--yellow); }
.value-card--plum p { color: rgba(255, 255, 255, 0.92); }

.value-card--mint { background: var(--mint); }
.value-card--mint h3 { color: var(--teal-accent); }
.value-card--mint p { color: var(--ink-soft); }

.value-card--red { background: var(--red); }
.value-card--red h3 { color: var(--yellow); }
.value-card--red p { color: rgba(255, 255, 255, 0.95); }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .value-card p {
        padding-top: 40px;
    }
}
