/* ==========================================================================
   Kandryn Performance - Matt's Message page (/matts-message)
   A calm, reflective page. Gradient hero, centred narrative, pull-quote,
   support callout and CTA. Teal brand, deeper/quieter gradient.
   ========================================================================== */

/* Hero */
.mm-hero {
    position: relative;
    background:
        radial-gradient(130% 130% at 82% 8%, rgba(255,255,255,0.08), transparent 55%),
        linear-gradient(120deg, var(--teal-deep) 0%, #0a3b40 55%, var(--charcoal) 100%);
    color: #fff;
    text-align: center;
    padding-block: clamp(4.5rem, 12vw, 8rem);
}
.mm-hero .eyebrow { color: #7de0df; text-transform: none; letter-spacing: 0.01em; }
.mm-hero h1 { color: #fff; margin-bottom: 0.9rem; font-size: clamp(2.4rem, 5.2vw, 3.7rem); }
.mm-hero p { color: #e4eaec; font-size: 1.18rem; line-height: 1.6; max-width: 44rem; margin: 0 auto; }

/* Story / intro - text left, brothers photo right */
.mm-story__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: 1040px;
    margin-inline: auto;
    text-align: left;
}
.mm-story__rule { width: 64px; height: 4px; background: var(--teal); border-radius: 2px; margin: 0 0 2rem; }
.mm-story h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 1.1rem; }
.mm-story__lead { font-size: clamp(1.3rem, 2.5vw, 1.65rem); line-height: 1.5; color: var(--charcoal); font-weight: 500; margin-bottom: 1.7rem; }
.mm-story__body p { color: var(--muted); font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.25rem; }
.mm-story__body p:last-child { margin-bottom: 0; }
.mm-story__media { margin: 0; }
.mm-story__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--teal);
}
@media (max-width: 760px) {
    .mm-story__inner { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
    .mm-story__rule { margin: 0 auto 2rem; }
    .mm-story__media { max-width: 340px; margin-inline: auto; order: -1; }
}

/* Pull-quote - dark teal-green gradient */
.mm-quote {
    background:
        radial-gradient(120% 130% at 85% 10%, rgba(255,255,255,0.07), transparent 55%),
        linear-gradient(120deg, var(--teal-deep) 0%, #0a3b40 55%, var(--teal-dark) 100%);
}
.mm-quote__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.mm-quote i { color: #7de0df; font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
.mm-quote blockquote {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: clamp(1.55rem, 3.1vw, 2.2rem);
    line-height: 1.4;
    color: #fff;
}
.mm-quote__cite {
    display: block;
    margin-top: 1.6rem;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-style: normal;
    letter-spacing: 0.04em;
    color: #7de0df;
}

/* Support callout - with stat */
.mm-support__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.mm-support h2 { margin-bottom: 2rem; }
.mm-stat { margin: 0 auto 2rem; }
.mm-stat__num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(3.2rem, 10vw, 5.2rem);
    line-height: 1;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
}
.mm-stat__label { color: var(--muted); font-size: 1.05rem; line-height: 1.5; max-width: 440px; margin: 0.7rem auto 0; }
.mm-support p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.2rem; }
.mm-help {
    margin-top: 2rem;
    background: #fff;
    border: 1px solid var(--grey-line);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
}
.mm-help strong { color: var(--charcoal); }
.mm-help a { color: var(--teal-dark); font-weight: 600; }

/* CTA */
.mm-cta { text-align: center; }
.mm-cta h2 { margin-bottom: 0.8rem; }
.mm-cta p { max-width: 600px; margin: 0 auto 2rem; }
.mm-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
    .mm-cta__actions { flex-direction: column; align-items: stretch; }
    .mm-cta__actions .btn { justify-content: center; }
}
