/* =============================================================
   ABOUT PAGE — Giesler-Tran Bookkeeping
   File: assets/css/about.css
   Uses the existing --lb-* design tokens defined in the theme's
   root stylesheet. Nothing here redeclares :root — it only adds
   the page-specific pieces the About page needs.
   ============================================================= */

/* -------------------------------------------------------------
   0. Shared helpers for this page
   ------------------------------------------------------------- */
.lb-about-eyebrow-row {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.lb-about-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--lb-font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--lb-accent);
    background: var(--lb-accent-soft);
    border-radius: 999px;
    padding: .35rem .75rem;
}

.lb-about-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* -------------------------------------------------------------
   1. HERO — Our Story
   ------------------------------------------------------------- */
.lb-about-hero {
    background: linear-gradient(180deg, var(--lb-accent-soft) 0%, var(--lb-bg) 78%);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--lb-line);
}

.lb-about-hero__lede {
    max-width: 62ch;
}

.lb-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--lb-line);
}

.lb-about-stat__num {
    font-family: var(--lb-font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: var(--lb-ink);
    line-height: 1.1;
}

.lb-about-stat__label {
    font-family: var(--lb-font-body);
    font-size: .85rem;
    color: var(--lb-muted);
    margin-top: .15rem;
}

@media (max-width: 767px) {
    .lb-about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }
}

/* -------------------------------------------------------------
   1b. HERO — image side
   ------------------------------------------------------------- */
.lb-hero-media {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.lb-hero-media__blob {
    position: absolute;
    top: -10%;
    right: -12%;
    width: 85%;
    height: 85%;
    background: var(--lb-primary);
    opacity: .16;
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    z-index: 0;
}

.lb-img-frame {
    position: relative;
    overflow: hidden;
    background: var(--lb-accent-soft);
    border: 1px solid var(--lb-line);
}

.lb-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lb-img-frame--portrait {
    aspect-ratio: 4 / 5;
    border-radius: var(--lb-radius);
    z-index: 1;
}

.lb-img-frame--banner {
    aspect-ratio: 16 / 6;
    border-radius: var(--lb-radius);
}

.lb-img-frame--card {
    aspect-ratio: 8 / 5;
    border-radius: 12px;
}

.lb-hero-media__badge {
    position: absolute;
    left: -10%;
    bottom: -6%;
    z-index: 2;
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: 12px;
    padding: .7rem 1rem;
    box-shadow: 0 12px 28px rgba(35, 43, 34, .12);
    display: flex;
    flex-direction: column;
    gap: .15rem;
    max-width: 200px;
}

.lb-hero-media__badge-stars {
    color: var(--lb-primary-dark);
    font-size: .85rem;
    letter-spacing: .05em;
}

.lb-hero-media__badge-text {
    font-size: .74rem;
    color: var(--lb-muted);
    font-weight: 600;
}

@media (max-width: 991px) {
    .lb-hero-media {
        max-width: 340px;
    }

    .lb-hero-media__badge {
        left: 4%;
        bottom: -8%;
    }
}

/* Card image overlay icon (Who We Serve) */
.lb-serve-card__ic--overlay {
    position: absolute;
    bottom: .6rem;
    left: .6rem;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(35, 43, 34, .18);
}

/* -------------------------------------------------------------
   2. TEAM — credential grid
   ------------------------------------------------------------- */
.lb-cred-card {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    padding: 1.4rem;
    height: 100%;
    transition: border-color .2s ease, transform .2s ease;
}

.lb-cred-card:hover {
    border-color: var(--lb-primary);
    transform: translateY(-2px);
}

.lb-cred-card__ic {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--lb-accent-soft);
    color: var(--lb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-cred-card__ic svg {
    width: 22px;
    height: 22px;
}

.lb-cred-card h3 {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.lb-cred-card p {
    font-size: .875rem;
    color: var(--lb-muted);
    margin-bottom: 0;
}

.lb-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lb-line);
}

.lb-trust-row .lb-stars {
    color: var(--lb-primary-dark);
    letter-spacing: .05em;
}

/* -------------------------------------------------------------
   3. APPROACH — Audit-Ready Clarity System (signature element)
   ------------------------------------------------------------- */
.lb-cadence {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    padding: 1.75rem;
}

.lb-cadence__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
}

.lb-cadence__row+.lb-cadence__row {
    border-top: 1px dashed var(--lb-line);
}

.lb-cadence__who {
    font-family: var(--lb-font-heading);
    font-weight: 600;
    font-size: .9rem;
    color: var(--lb-ink);
}

.lb-cadence__who small {
    display: block;
    font-family: var(--lb-font-body);
    font-weight: 400;
    color: var(--lb-muted);
    font-size: .75rem;
    margin-top: .15rem;
}

.lb-cadence__weeks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}

.lb-cadence__week {
    border-radius: 8px;
    padding: .55rem .4rem;
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    border: 1px solid var(--lb-line);
    color: var(--lb-muted);
    background: var(--lb-bg);
}

.lb-cadence__week--done {
    background: var(--lb-accent-soft);
    border-color: var(--lb-primary);
    color: var(--lb-accent);
}

.lb-cadence__week svg {
    width: 14px;
    height: 14px;
    display: block;
    margin: 0 auto .2rem;
}

.lb-cadence__caption {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--lb-line);
    font-size: .85rem;
    color: var(--lb-muted);
}

.lb-cadence__caption strong {
    color: var(--lb-ink);
}

@media (max-width: 575px) {
    .lb-cadence__row {
        grid-template-columns: 1fr;
    }

    .lb-cadence__weeks {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Pillars beneath the cadence visual */
.lb-pillar {
    height: 100%;
}

.lb-pillar__tag {
    display: inline-block;
    font-family: var(--lb-font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lb-accent);
    margin-bottom: .5rem;
}

/* -------------------------------------------------------------
   4. WHO WE SERVE — industries + location
   ------------------------------------------------------------- */
.lb-serve-card {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    padding: 1.75rem;
    height: 100%;
}

.lb-serve-card__ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--lb-accent-soft);
    color: var(--lb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lb-serve-card__ic svg {
    width: 24px;
    height: 24px;
}

.lb-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.lb-pill {
    font-size: .8rem;
    font-weight: 600;
    color: var(--lb-ink);
    background: var(--lb-bg);
    border: 1px solid var(--lb-line);
    border-radius: 999px;
    padding: .4rem .85rem;
}

/* Location strip: three connected markers */
.lb-locate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: 2.5rem;
    padding: 1.5rem 1.25rem;
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
}

.lb-locate__stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
    flex: 1;
}

.lb-locate__stop svg {
    width: 22px;
    height: 22px;
    color: var(--lb-accent);
}

.lb-locate__stop--muted svg {
    color: var(--lb-muted);
}

.lb-locate__stop-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--lb-ink);
    line-height: 1.25;
}

.lb-locate__stop-sub {
    font-size: .72rem;
    color: var(--lb-muted);
}

.lb-locate__line {
    flex: 0 0 auto;
    width: 100%;
    max-width: 60px;
    height: 0;
    border-top: 2px dashed var(--lb-line);
    align-self: center;
    margin-top: -1.4rem;
}

@media (max-width: 575px) {
    .lb-locate {
        flex-direction: column;
    }

    .lb-locate__line {
        display: none;
    }
}

/* -------------------------------------------------------------
   5. WHY TRUST — guarantees, testimonials, CTA (dark band)
   ------------------------------------------------------------- */
.lb-trust-band {
    background: var(--lb-ink);
    color: #F3F2ED;
    border-radius: var(--lb-radius);
    padding: 3rem clamp(1.25rem, 4vw, 3rem);
}

.lb-trust-band .lb-eyebrow {
    color: var(--lb-primary);
}

.lb-trust-band h2 {
    color: #FFFFFF;
}

.lb-trust-band p.lb-about-hero__lede {
    color: #C9CFC3;
}

.lb-guarantee {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.lb-guarantee__ic {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(132, 189, 63, .16);
    color: var(--lb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
}

.lb-guarantee__ic svg {
    width: 20px;
    height: 20px;
}

.lb-guarantee h3 {
    font-size: .95rem;
    color: #FFFFFF;
    margin-bottom: .35rem;
}

.lb-guarantee p {
    font-size: .82rem;
    color: #C9CFC3;
    margin-bottom: 0;
}

.lb-quote {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 1.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.lb-quote__stars {
    color: var(--lb-primary);
    font-size: .8rem;
    letter-spacing: .08em;
}

.lb-quote p {
    font-size: .88rem;
    color: #E7E9E1;
    margin-bottom: 0;
    flex-grow: 1;
}

.lb-quote cite {
    font-style: normal;
    font-size: .8rem;
    color: #A9B29E;
}

.lb-quote cite strong {
    color: #FFFFFF;
}

.lb-quote__author {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.lb-avatar {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(132, 189, 63, .18);
    color: var(--lb-primary);
    font-family: var(--lb-font-heading);
    font-size: .74rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: .55rem 1.1rem;
    margin: 1.75rem 0;
}

.lb-rating-badge__num {
    font-family: var(--lb-font-heading);
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1rem;
}

.lb-rating-badge__stars {
    color: var(--lb-primary);
    font-size: .85rem;
}

.lb-rating-badge__sub {
    font-size: .78rem;
    color: #A9B29E;
}

.lb-trust-band .btn-primary {
    background: var(--lb-primary);
    border-color: var(--lb-primary);
    color: var(--lb-ink);
}

.lb-trust-band .btn-primary:hover {
    background: #9ccf58;
    border-color: #9ccf58;
}

/* -------------------------------------------------------------
   Accessibility / motion
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    .lb-cred-card,
    .lb-serve-card,
    .lb-quote,
    .lb-guarantee {
        transition: none !important;
    }

    .lb-cred-card:hover {
        transform: none;
    }
}

.lb-about-hero a.btn:focus-visible,
.lb-trust-band a.btn:focus-visible,
.lb-cred-card:focus-visible,
.lb-serve-card:focus-visible {
    outline: 2px solid var(--lb-primary);
    outline-offset: 2px;
}