/* ==========================================================================
   Kandryn Performance - Mental Health page (/mental-health)
   Reuses global section / eyebrow / lead / button classes; this file only
   adds the hero, intro prose and offering-card styles.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.mh-hero {
    position: relative;
    background:
        radial-gradient(130% 130% at 82% 8%, rgba(255,255,255,0.10), transparent 55%),
        linear-gradient(125deg, var(--teal) 0%, var(--teal-dark) 38%, var(--teal-deep) 100%);
    color: #fff;
    text-align: center;
    padding-block: clamp(4rem, 11vw, 8rem);
}
.mh-hero .eyebrow { color: #d6f7f6; }
.mh-hero h1 {
    color: #fff;
    margin-bottom: 0.9rem;
    font-size: clamp(2.4rem, 5.2vw, 3.7rem);
    max-width: 20ch;
    margin-inline: auto;
}
.mh-hero p {
    color: #e4eaec;
    font-size: 1.18rem;
    line-height: 1.6;
    max-width: 46rem;
    margin: 0 auto 2rem;
}
.mh-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Intro prose ("Positive Change")
   -------------------------------------------------------------------------- */
.mh-intro__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.mh-intro__inner h2 { margin-bottom: 1.1rem; font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.mh-intro__rule {
    width: 64px; height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin: 0 auto 2rem;
}
.mh-intro__lead {
    font-size: clamp(1.18rem, 2.1vw, 1.4rem);
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.mh-intro__body { color: var(--muted); font-size: 1.08rem; line-height: 1.78; }
.mh-intro__body strong { color: var(--teal-dark); font-weight: 600; }

/* --------------------------------------------------------------------------
   Offerings - stacked alternating image rows (one at a time)
   -------------------------------------------------------------------------- */
.mh-offer__head { text-align: center; max-width: 620px; margin-inline: auto; margin-bottom: 3rem; }
.mh-rows { display: flex; flex-direction: column; gap: 2.4rem; }
.mh-row {
    position: relative;
    display: grid;
    /* image track is the narrower side; text gets the wider track */
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 470px;          /* every box the same height regardless of text */
    background: #fff;
    border: 1px solid var(--grey-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
/* teal accent bar across the top of each box */
.mh-row::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--teal);
    z-index: 3;
}
.mh-row__media { position: relative; min-height: 320px; background: var(--grey); }
.mh-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* keep faces in frame when the near-square photos are cropped to cover */
.mh-row__media img[src*="walk-talk"]        { object-position: 28% 22%; }
.mh-row__media img[src*="suicide-awareness"] { object-position: center 20%; }
.mh-row__body {
    padding: clamp(2rem, 3.4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mh-row__label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 0.7rem;
}
.mh-row__body h3 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); margin-bottom: 0.9rem; }
.mh-row__body p { color: var(--muted); font-size: 1.02rem; line-height: 1.76; margin-bottom: 1rem; }
.mh-row__body p:last-child { margin-bottom: 0; }

/* zig-zag: even rows place the image on the right (keep it on the narrow track) */
.mh-row:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
.mh-row:nth-child(even) .mh-row__media { order: 2; }

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */
.mh-cta { text-align: center; }
.mh-cta h2 { margin-bottom: 0.8rem; }
.mh-cta p { max-width: 620px; margin: 0 auto 2rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 820px) {
    .mh-row,
    .mh-row:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
    .mh-row__media { min-height: 230px; }
    .mh-row:nth-child(even) .mh-row__media { order: 0; }
}
@media (max-width: 600px) {
    .mh-hero__actions { flex-direction: column; align-items: stretch; }
    .mh-hero__actions .btn { justify-content: center; }
}
