/* =========================================================
   COMPANY PROFILE PAGE — ADDITIONS
   Append this block to assets/css/style.css
   (uses the same design tokens defined in :root)
========================================================= */

/* ---- Page banner (top of Company Profile page) ---- */
.page-banner {
     background-color: var(--espresso);
    background-image: linear-gradient(180deg, rgba(46, 33, 24, 0.85), rgba(46, 33, 24, 0.88)),
        url('../images/home-decor/banner.jpg');
    background-size: cover;
    background-position: center 30%;
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 3px solid var(--brass);
}

.page-banner .section-eyebrow-light {
    display: block;
}

.page-banner-title {
    font-family: var(--font-display);
    color: var(--ivory);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-banner-text {
    font-family: var(--font-body);
    color: rgba(251, 247, 241, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Stat blocks reused on a light background (Global Reach) ---- */
.stat-block-light {
    border-left: 2px solid var(--brass);
    text-align: left;
}

.stat-number-dark {
    color: var(--espresso);
}

.stat-label-dark {
    color: var(--espresso);
}

/* ---- Heritage fact list ---- */
.heritage-fact-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.heritage-fact-list li {
    font-family: var(--font-body);
    color: #413327;
    font-size: 0.98rem;
    line-height: 1.9;
}

/* ---- Clients section CTA button on light card ---- */
.clients-cta-btn {
    background-color: var(--espresso);
    color: var(--ivory);
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 2px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.clients-cta-btn:hover {
    background-color: var(--walnut);
    color: var(--ivory);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 767.98px) {
    .page-banner {
        padding: 3rem 0 2rem;
    }
}