/* ==========================================================================
   Kandryn Performance - About page (/about)
   Reuses global section / eyebrow / lead / button classes; adds hero, story,
   approach cards, track-record chips and CTA.
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   Story
   -------------------------------------------------------------------------- */
.abt-story__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;   /* text left, photo right */
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: 1040px;
    margin-inline: auto;
}
.abt-story__body h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.1rem; }
.abt-story__rule { width: 64px; height: 4px; background: var(--teal); border-radius: 2px; margin-bottom: 1.6rem; }
.abt-story__lead { font-size: clamp(1.2rem, 1.9vw, 1.4rem); line-height: 1.6; color: var(--charcoal); margin-bottom: 1.2rem; }
.abt-story__text { color: var(--muted); font-size: 1.08rem; line-height: 1.78; }
.abt-story__media { margin: 0; }
.abt-story__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--teal);
}

/* --------------------------------------------------------------------------
   Approach - wide, equal, vertically stacked boxes
   -------------------------------------------------------------------------- */
.abt-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 3rem; }
.abt-list { display: flex; flex-direction: column; gap: 1.6rem; }
.abt-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: #fff;
    border: 1px solid var(--grey-line);
    border-left: 5px solid var(--teal);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.4rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.abt-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.abt-item__head { display: flex; align-items: center; gap: 1rem; }
.abt-item__icon {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    border-radius: 15px;
    display: grid; place-items: center;
    background: rgba(3, 182, 181, 0.12);
    color: var(--teal-dark);
    font-size: 1.4rem;
}
.abt-item__head h3 { font-size: 1.45rem; margin: 0; }
.abt-item__body p { color: var(--muted); font-size: 1.05rem; line-height: 1.76; margin: 0; }

/* --------------------------------------------------------------------------
   Track record
   -------------------------------------------------------------------------- */
.abt-credits__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.abt-credits h2 { margin-bottom: 1rem; }
.abt-credits__intro { color: var(--muted); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.9rem; }
.abt-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 2.2rem; }
.abt-chip {
    background: var(--grey);
    border: 1px solid var(--grey-line);
    color: var(--charcoal);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}
.abt-credits__note { color: var(--muted); font-size: 1.05rem; line-height: 1.75; max-width: 700px; margin-inline: auto; }

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 820px) {
    .abt-story__grid { grid-template-columns: 1fr; gap: 2rem; }
    .abt-story__media { max-width: 460px; margin-inline: auto; order: -1; }
    .abt-item { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.9rem 1.7rem; }
}
@media (max-width: 600px) {
    .abt-cta__actions { flex-direction: column; align-items: stretch; }
    .abt-cta__actions .btn { justify-content: center; }
}
