﻿/* ============================================================
   About — page-specific styles
   pages/about/about.css
   Global styles are in: assets/css/theme.css
   ============================================================ */

/* ──────────────────────────────────────────
   AB-HERO: Cream / Sage gradient hero
   Mirrors .mo-hero in models.css
   ────────────────────────────────────────── */
.ab-hero {
    position: relative;
    background: linear-gradient(160deg, #F5F2ED 0%, #EAE6DF 55%, #d6e8d0 100%);
    padding: 5.5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.ab-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #588157 30%, #3d6040 70%, transparent 100%);
}

.ab-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(88, 129, 87, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(88, 129, 87, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.ab-hero__content {
    position: relative;
    z-index: 1;
}

.ab-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #588157;
    margin-bottom: 1rem;
}

.ab-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    margin: 0 auto 1.25rem;
    max-width: 720px;
}

.ab-hero__sub {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ab-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ghost-light override for cream background: use sage instead of white */
.ab-hero .btn--ghost-light {
    border-color: #588157;
    color: #588157;
}
.ab-hero .btn--ghost-light:hover {
    background: #588157;
    color: #fff;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .ab-hero {
        padding: 3.5rem 0 2.75rem;
    }
    .ab-hero__sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ab-hero {
        padding: 2.5rem 0 2.25rem;
    }
    .ab-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .ab-hero__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}
