/* =====================================================
   About Us page
   Reuses the site-theme CSS variables (--site-primary,
   --site-navy, etc.) defined in site-theme.css, plus a few
   card/section styles from marketing-home.css, so this page
   stays visually consistent with the rest of the public site.
   ===================================================== */

/* ---------- Hero ---------- */
.about-hero {
    background: linear-gradient(135deg, var(--site-navy) 0%, var(--site-navy-soft) 60%, #1c2c48 100%);
    color: #fff;
    padding: 4.5rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(225, 29, 46, 0.16);
    filter: blur(2px);
}

.about-hero::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -60px;
}

.about-hero::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -40px;
    background: rgba(255, 255, 255, 0.06);
}

.about-hero > .container {
    position: relative;
    z-index: 1;
}

.about-hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.about-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.9rem;
    color: #fff;
}

.about-hero .about-hero-subtitle {
    color: var(--site-primary);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    margin-bottom: 1.1rem;
}

.about-hero .about-hero-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Generic section spacing / dividers ---------- */
.about-section {
    padding: 4rem 0;
}

.about-section-alt {
    background: var(--ba-surface-alt);
}

.about-section-title {
    font-weight: 800;
    color: var(--ba-text-900);
    margin-bottom: 1rem;
}

.about-section-kicker {
    color: var(--site-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* ---------- Founder section ---------- */
.founder-photo-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.75rem;
    box-shadow: 0 1rem 2.5rem rgba(15, 27, 45, 0.1);
    max-width: 380px;
    margin: 0 auto;
}

.founder-photo-card img {
    border-radius: 0.85rem;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.founder-signature {
    font-weight: 800;
    color: var(--site-navy);
    margin-top: 1.5rem;
}

.founder-signature small {
    display: block;
    font-weight: 600;
    color: var(--ba-text-500);
    margin-top: 0.15rem;
}

.founder-message p {
    color: var(--ba-text-700);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.founder-message h2 {
    font-weight: 800;
    color: var(--ba-text-900);
    margin-bottom: 1.1rem;
}

/* ---------- Story timeline-ish card ---------- */
.story-card {
    background: #fff;
    border: 1px solid var(--ba-surface-muted);
    border-radius: 1.1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 27, 45, 0.05);
}

.story-card p {
    color: var(--ba-text-700);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* ---------- Mission / Vision ---------- */
.mv-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 2.25rem;
    height: 100%;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 27, 45, 0.05);
    border-top: 4px solid var(--site-primary);
}

.mv-card.mv-card-navy {
    border-top-color: var(--site-navy);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: rgba(225, 29, 46, 0.1);
    color: var(--site-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.mv-card-navy .mv-icon {
    background: rgba(15, 27, 45, 0.08);
    color: var(--site-navy);
}

.mv-card h3 {
    font-weight: 800;
    color: var(--ba-text-900);
    margin-bottom: 0.85rem;
}

.mv-card p {
    color: var(--ba-text-600);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ---------- Who we serve ---------- */
.serve-card {
    background: #fff;
    border: 1px solid var(--ba-surface-muted);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.07);
}

.serve-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--site-navy);
    color: #fff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.serve-card h6 {
    font-weight: 700;
    color: var(--ba-text-900);
    margin-bottom: 0;
}

/* ---------- Why choose us ---------- */
.why-card {
    background: #fff;
    border: 1px solid var(--ba-surface-muted);
    border-radius: 1.1rem;
    padding: 1.75rem;
    height: 100%;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(225, 29, 46, 0.1);
    color: var(--site-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-card h6 {
    font-weight: 700;
    color: var(--ba-text-900);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--ba-text-500);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- CTA ---------- */
.about-cta {
    background: var(--site-navy);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
}

.about-cta h2 {
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: #fff;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .about-hero { padding: 3.5rem 0 4rem; }
    .about-section { padding: 2.75rem 0; }
    .story-card,
    .mv-card { padding: 1.5rem; }
    .about-cta { padding: 2.5rem 1.25rem; border-radius: 1.1rem; }
}
