/* ============================================================
   ADA.CSS — Therapy Moms
   Page-specific styles only. Global/footer/nav in global.css.
   Mirrors privacy-policy.css structure and design tokens.
   ============================================================ */

:root {
    --brand-purple:         #512974;
    --brand-purple-dark:    #3d1d57;
    --brand-pink:           #dd89af;
    --brand-pink-light:     rgba(221, 137, 175, 0.15);

    --bg-white:             #ffffff;
    --bg-subtle:            #faf8fd;
    --bg-light-purple:      #f4f0fa;

    --text-dark:            #1a0c2e;
    --text-body:            #4a3860;
    --text-muted:           #7a6b8a;

    --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;

    --card-radius:          12px;
    --content-max-w:        1100px;
    --page-pad-h:           clamp(1.5rem, 4vw, 3rem);
}

/* ── WRAP ───────────────────────────────────────────── */
.wrap {
    max-width: var(--content-max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad-h);
}

/* ── Shared tokens ──────────────────────────────────── */
.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: 1.25rem;
}

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.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.from-up { opacity: 1; transform: none; transition: none; }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO ──────────────────────────────────────── */
.ada-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;
}

.ada-hero::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,137,175,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ada-hero::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.ada-hero .wrap { position: relative; }

.ada-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #ffffff;
    line-height: 1.18;
    font-weight: 700;
    max-width: 680px;
    margin-bottom: 1.25rem;
    animation: fade-up 0.75s ease both 0.25s;
}

.ada-hero-rule {
    width: 48px;
    height: 3px;
    background: var(--brand-pink);
    border-radius: 2px;
    margin-bottom: 1.25rem;
    animation: fade-up 0.75s ease both 0.35s;
}

.ada-hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    line-height: 1.7;
    animation: fade-up 0.75s ease both 0.45s;
}

/* ── INTRO ──────────────────────────────────────────── */
.ada-intro {
    background: var(--bg-white);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.ada-intro-inner {
    max-width: 720px;
}

.ada-intro-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.85;
}

.ada-intro-text strong {
    color: var(--brand-purple);
}

/* ── POLICY BODY ────────────────────────────────────── */
.ada-body {
    background: var(--bg-subtle);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ── ADA sections ───────────────────────────────────── */
.ada-sections {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.ada-section {
    background: var(--bg-white);
    border: 1px solid var(--divider-strong);
    border-radius: var(--card-radius);
    padding: 2rem 2.25rem;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1.25rem;
    align-items: start;
    transition: box-shadow 0.2s;
}

.ada-section:hover {
    box-shadow: 0 6px 24px rgba(81,41,116,0.07);
}

.ada-section-icon {
    font-size: 1.4rem;
    margin-top: 0.15rem;
    line-height: 1;
}

.ada-section-content h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.ada-section-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 0.65rem;
}

.ada-section-content p:last-child { margin-bottom: 0; }

.ada-section-content strong {
    color: var(--brand-purple);
    font-weight: 700;
}

/* ── Bullet list inside section ─────────────────────── */
.ada-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.ada-list li {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.75;
    padding: 0.75rem 1rem 0.75rem 1.1rem;
    background: var(--bg-light-purple);
    border-radius: 8px;
    border-left: 3px solid var(--brand-pink);
}

.ada-list li strong {
    color: var(--brand-purple);
}

/* ── Contact + revised note ─────────────────────────── */
.ada-footer-note {
    max-width: 820px;
    margin: 0 auto;
}

.ada-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--divider-strong);
    border-left: 4px solid var(--brand-pink);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
}

.ada-contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ada-contact-note p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
}

.ada-contact-note a {
    color: var(--brand-purple);
    font-weight: 600;
    text-decoration: none;
}

.ada-contact-note a:hover {
    color: var(--brand-pink);
}

.ada-revised {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: right;
}

.ada-revised strong {
    color: var(--text-body);
}

/* ── CTA Section ────────────────────────────────────── */
.ada-cta-section {
    background: var(--bg-white);
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.ada-cta-inner {
    max-width: 560px;
    text-align: center;
    margin: 0 auto;
}

.ada-cta-inner p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.ada-contact-btn {
    display: inline-block;
    background: var(--brand-purple);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 8px;
    padding: 14px 32px;
    box-shadow: 0 4px 16px rgba(221, 137, 175, 0.3);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.ada-contact-btn:hover {
    background: var(--brand-purple-dark);
    box-shadow: 0 6px 22px rgba(221, 137, 175, 0.45);
    transform: translateY(-1px);
}

.ada-contact-btn:active {
    transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 640px) {
    .ada-section {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.5rem 1.25rem;
    }

    .ada-contact-note {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
}