/* ============================================================
   ABOUT-US.CSS — Therapy Moms
   Extends global.css. All colors/fonts via CSS variables.
   ============================================================ */

:root {
    --brand-purple:         #512974;
    --brand-purple-dark:    #3d1d57;
    --brand-purple-mid:     #6b3a8a;
    --brand-pink:           #dd89af;
    --brand-pink-light:     rgba(221, 137, 175, 0.15);
    --brand-pink-medium:    rgba(221, 137, 175, 0.35);

    --bg-white:             #ffffff;
    --bg-subtle:            #faf8fd;
    --bg-light-purple:      #f4f0fa;

    --text-dark:            #1a0c2e;
    --text-body:            #4a3860;
    --text-muted:           #7a6b8a;
    --text-on-dark:         #ffffff;

    --divider:              rgba(81, 41, 116, 0.1);
    --divider-strong:       rgba(81, 41, 116, 0.2);

    --font-serif:           Georgia, 'Times New Roman', serif;
    --font-sans:            'Segoe UI', system-ui, -apple-system, sans-serif;

    --btn-radius:           8px;
    --card-radius:          12px;
    --img-radius:           10px;

    --content-max-w:        1100px;
    --page-pad-h:           clamp(1.5rem, 4vw, 3rem);
    --section-v:            clamp(4rem, 8vw, 7rem);
}

.wrap {
    max-width: var(--content-max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad-h);
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-pink);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
}

hr.section-rule {
    border: none;
    border-top: 1px solid var(--divider);
    margin: 0;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-up    { transform: translateY(28px); }
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-group .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.35s; }
.reveal-group .reveal.is-visible   { transition-delay: 0s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.from-up,
    .reveal.from-left,
    .reveal.from-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO ──────────────────────────────────────── */
.about-hero {
    background: var(--brand-purple-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,137,175,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero .wrap { position: relative; }

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: #ffffff;
    line-height: 1.18;
    font-weight: 700;
    max-width: 720px;
    margin-bottom: 1.5rem;
    animation: fade-up 0.75s ease both 0.25s;
}

.about-hero-rule {
    width: 48px;
    height: 3px;
    background: var(--brand-pink);
    border-radius: 2px;
    animation: fade-up 0.75s ease both 0.35s;
}

/* ── WHO WE ARE ─────────────────────────────────────── */
.about-intro {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-white);
}

.about-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-intro-text p:last-child { margin-bottom: 0; }

.intro-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.intro-stat {
    background: var(--bg-light-purple);
    border: 1px solid var(--divider);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.intro-stat:hover {
    box-shadow: 0 6px 24px rgba(81,41,116,0.09);
    transform: translateY(-3px);
}

.intro-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--brand-pink-light);
    border: 1px solid var(--brand-pink-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.intro-stat-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.intro-stat-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── PULL QUOTE ─────────────────────────────────────── */
.about-pullquote {
    background: var(--brand-purple);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.about-pullquote::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.about-pullquote::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.about-pullquote blockquote {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--page-pad-h);
    position: relative;
}

.about-pullquote blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: #ffffff;
    line-height: 1.45;
    font-style: italic;
    font-weight: 400;
}

/* ── FOUNDERS ───────────────────────────────────────── */
.about-founders {
    background: var(--bg-subtle);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-founders .section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.about-founders .section-head .section-sub {
    margin: 0 auto;
}

.founder-card--wide {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--bg-white);
    border: 2px solid var(--divider-strong);
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.founder-card--wide:last-child {
    margin-bottom: 0;
}

.founder-card--wide:hover {
    box-shadow: 0 16px 48px rgba(81,41,116,0.15);
    transform: translateY(-4px);
    border-color: var(--brand-pink);
}

.founder-card-img-wrap {
    padding: 1.25rem;
    background: var(--bg-white);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.founder-card-wide-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 8px;
    border: 3px solid var(--divider-strong);
    box-shadow: 0 4px 20px rgba(81,41,116,0.18);
}

.founder-mobile-header  { display: none; }
.founder-rule-mobile    { display: none; }
.founder-desktop-meta   { display: block; }

.mona-img-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 3px solid var(--divider-strong);
    box-shadow: 0 4px 20px rgba(81,41,116,0.18);
    overflow: hidden;
    position: relative;
}

#img-mona {
    width: 140%;
    height: auto;
    position: absolute;
    top: -40px;
    left: -20%;
}

#img-kelly {
    height: 300px;
    object-position: center top;
}

.founder-card--no-img {
    grid-template-columns: 1fr;
}

.founder-card--wide .founder-card-body {
    padding: 2.25rem 2.5rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-card-role {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-purple);
    opacity: 0.65;
    margin-bottom: 0.35rem;
}

.founder-card-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.3rem;
}

.founder-card-credentials {
    font-size: 0.82rem;
    color: var(--brand-pink);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.1rem;
}

.founder-card-rule {
    width: 32px;
    height: 2px;
    background: var(--brand-pink);
    border-radius: 2px;
    margin-bottom: 1.1rem;
}

.founder-card--wide .founder-card-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ── BOARD OF DIRECTORS ─────────────────────────────── */
.about-board {
    background: var(--bg-white);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-board .section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.about-board .section-head .section-sub {
    margin: 0 auto;
    text-align: center;
}

.board-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.board-card {
    background: var(--bg-light-purple);
    border: 2px solid var(--divider-strong);
    border-radius: var(--card-radius);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.board-card:hover {
    box-shadow: 0 10px 36px rgba(81,41,116,0.13);
    transform: translateY(-3px);
    border-color: var(--brand-pink);
}

.board-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.board-card-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 16px rgba(81,41,116,0.15);
    flex-shrink: 0;
}

.board-card-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-purple);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.board-card-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.board-card-bio {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ── LICENSED CLINICIANS ────────────────────────────── */
.about-clinicians {
    background: var(--bg-subtle);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-clinicians .section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.about-clinicians .section-head .section-sub {
    margin: 0 auto;
    text-align: center;
}

.clinician-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* White bg, pink left-border accent — distinct from the purple-tinted board cards */
.clinician-card {
    background: var(--bg-white);
    border: 2px solid var(--divider-strong);
    border-radius: var(--card-radius);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.clinician-card:hover {
    box-shadow: 0 10px 36px rgba(81,41,116,0.13);
    transform: translateY(-3px);
    border-color: var(--brand-pink);
}

/* Header: larger photo + meta/tags side by side */
.clinician-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.clinician-card-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 16px rgba(81,41,116,0.15);
    flex-shrink: 0;
}

.clinician-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.1rem;
}

.clinician-card-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-purple);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.clinician-card-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.clinician-card-credentials {
    font-size: 0.82rem;
    color: var(--brand-pink);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Pill-style specialty tags — removed */

.clinician-card-bio {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .intro-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-card--wide {
        grid-template-columns: 1fr;
    }

    .founder-card-img-wrap  { display: none; }
    .founder-desktop-meta   { display: none; }

    .mona-mobile-container {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid var(--divider-strong);
        box-shadow: 0 4px 16px rgba(81,41,116,0.15);
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    #img-mona-mobile {
        width: 120%;
        height: auto;
        position: absolute;
        top: -10px;
        left: -16%;
    }

    .founder-mobile-header  { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.1rem; }
    .founder-rule-mobile    { display: block; }

    .founder-mobile-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center top;
        border: 3px solid var(--divider-strong);
        box-shadow: 0 4px 16px rgba(81,41,116,0.15);
        flex-shrink: 0;
        display: block;
    }

    #img-mona-mobile  { object-position: 80% top; }
    #img-kelly-mobile { object-position: center top; }

    .founder-card--wide .founder-card-body {
        padding: 1.5rem 1.75rem 1.75rem;
    }

    .board-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .intro-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .board-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .clinician-card {
        padding: 1.5rem;
    }

    .clinician-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}