/*
 * The Living Company - About Page Styles
 *
 * Page-specific styles for the about page (about.html).
 * Requires: theme.css + public.css (loaded first).
 */

/* ==========================================================================
   Hero
   ========================================================================== */

.about-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 60px 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: 20px;
}

.about-hero .lead {
    font-size: 18px;
    color: var(--color-gray-600);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-black);
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 16px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Mission / Vision Cards
   ========================================================================== */

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: 40px;
}

.about-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* ==========================================================================
   Values Grid
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-black);
}

.value-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ==========================================================================
   Framework Attribution
   ========================================================================== */

.about-attribution {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    padding: 40px;
    margin-top: 40px;
}

.about-attribution h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-black);
}

.about-attribution p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 12px;
}

.about-attribution p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.about-cta {
    text-align: center;
    padding: 80px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 24px 60px;
    }

    .about-section {
        padding: 0 24px 60px;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .about-card {
        padding: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-attribution {
        padding: 28px;
    }

    .about-cta {
        padding: 60px 24px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
