body {
    background-color: #deecd0;
}

/* ── Two equal cards side by side ── */
.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

/* Left card: white, two skill sections */
.card--white {
    background: #ffffff;
    border: 1px solid black;
}

.card--white h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card--white .skill-section {
    margin-top: 10px;
}

.card--grey {
    background: #f0f0ec;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card--grey h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.card--grey .card-body p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 20px;
}

.card--grey .who-heading {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.card--grey .age-tag {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    display: block;
}

.card--grey .cta-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 14px;
}

/* ── Two photos side by side ── */
.photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.photo-row .photo-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
}

.photo-row .photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .two-col-cards,
    .photo-row {
    grid-template-columns: 1fr;
    }

    .photo-row .photo-thumb {
    height: 220px;
    }
}