/* ================================================================
   Our Story Page  — os-
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.os-hero {
    background: var(--hv2-dark);
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}
.os-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(200,98,42,.18) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(212,168,83,.12) 0%, transparent 45%);
    pointer-events: none;
}
.os-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    margin-bottom: 16px;
}
.os-hero__title {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
}
.os-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    max-width: 540px;
    line-height: 1.65;
    margin: 0;
}

/* ── Stats bar ──────────────────────────────────────────────── */
.os-stats-bar { background: var(--hv2-primary); }
.os-stats-inner {
    display: flex;
    align-items: stretch;
}
.os-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.2);
}
.os-stat:last-child { border-right: none; }
.os-stat__num {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.os-stat__label {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    letter-spacing: .3px;
}
@media (max-width: 576px) {
    .os-stats-inner { flex-wrap: wrap; }
    .os-stat { flex-basis: 50%; border-bottom: 1px solid rgba(255,255,255,.2); }
    .os-stat:nth-child(2n) { border-right: none; }
    .os-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Generic section wrapper ────────────────────────────────── */
.os-section         { padding: 72px 0; }
.os-section--cream  { background: var(--hv2-cream); }
.os-section--white  { background: #fff; }
.os-section--dark   { background: var(--hv2-dark); }

.os-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 12px;
}
.os-section-label--gold { color: var(--hv2-gold); }

.os-section-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.os-section-title--white { color: #fff; }

.os-section-body {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}
.os-section-body--white { color: rgba(255,255,255,.72); }

/* ── Vision + Mission blocks ────────────────────────────────── */
.os-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) { .os-two-col { grid-template-columns: 1fr; } }

.os-block {
    background: #fff;
    border: 1px solid var(--hv2-border);
    border-radius: 14px;
    padding: 32px;
}
.os-block__icon {
    width: 44px;
    height: 44px;
    background: var(--hv2-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hv2-primary);
    margin-bottom: 18px;
}
.os-block__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 10px;
}
.os-block__body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--hv2-muted);
    margin: 0;
}

/* ── Team grid ──────────────────────────────────────────────── */
.os-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.os-team-card {
    background: #fff;
    border: 1px solid var(--hv2-border);
    border-radius: 14px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.os-team-card:hover {
    box-shadow: 0 8px 24px rgba(28,45,69,.09);
    transform: translateY(-3px);
}
.os-team-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid var(--hv2-cream);
    box-shadow: 0 2px 8px rgba(28,45,69,.1);
}
.os-team-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 6px;
}
.os-team-card__bio {
    font-size: 12px;
    color: var(--hv2-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Reviews section ────────────────────────────────────────── */
.os-reviews-section {
    padding: 64px 0;
    background: var(--hv2-cream);
    text-align: center;
}
