/* ── About Page Styles ───────────────────────────────────────────────────────
   Loaded only on page-about.php via is_page_template() conditional.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Shared inner-page utilities ───────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ── Page Hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-mid) 100%);
    padding: calc(var(--topbar-h) + var(--nav-h) + 64px) 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
    letter-spacing: -0.01em;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ══ OUR STORY ════════════════════════════════════════════════════════════ */
.about-story {
    padding: 100px 0;
    background: var(--white);
}
.story-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 72px;
    align-items: start;
}
.story-text .pill-label { margin-bottom: 16px; }
.story-para {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0 0 18px;
}
.story-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.story-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}
.story-bullet svg { color: var(--gold); flex-shrink: 0; }

/* Pull-quote */
.pull-quote {
    background: var(--navy-dark);
    border-radius: 4px;
    padding: 40px 36px;
    position: relative;
    margin-bottom: 20px;
}
.pq-mark {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: 28px;
    left: 28px;
    pointer-events: none;
}
.pq-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 20px 0 28px;
    padding: 0;
    border: none;
}
.pq-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.pq-loc {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    letter-spacing: 0.06em;
}

/* Stats row */
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.sstats-item {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid var(--border);
}
.sstats-item:last-child { border-right: none; }
.sstats-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.sstats-label {
    font-family: var(--font-ui);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

/* ══ VALUES ═══════════════════════════════════════════════════════════════ */
.about-values {
    padding: 100px 0;
    background: var(--off-white);
}
.values-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px 36px;
    transition: box-shadow 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.3);
}
.vc-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 22px;
}
.vc-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}
.vc-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ══ TEAM ════════════════════════════════════════════════════════════════ */
.about-team {
    padding: 100px 0;
    background: var(--white);
}
.team-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 56px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.team-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}
.team-info { padding: 24px 20px 28px; }
.team-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.team-role {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.team-bio {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* ══ CREDENTIALS STRIP ═══════════════════════════════════════════════════ */
.credentials-strip {
    background: var(--navy-dark);
    padding: 36px 0;
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cred-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.cred-item svg { color: var(--gold); flex-shrink: 0; }
.cred-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
}

/* ══ CTA ════════════════════════════════════════════════════════════════ */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.acta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}
.acta-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.15;
}
.acta-sub {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin: 0;
}
.acta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.acta-btn-gold {
    padding: 16px 36px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.acta-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.acta-btn-outline {
    padding: 15px 30px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
}
.acta-btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .story-inner { grid-template-columns: 1fr; gap: 48px; }
    .story-quote-col { max-width: 560px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-story, .about-values, .about-team, .about-cta { padding: 64px 0; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cred-inner { gap: 24px; justify-content: flex-start; }
    .cred-item { padding: 0 20px; }
    .cred-divider { display: none; }
    .acta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .acta-buttons { flex-direction: column; width: 100%; }
    .acta-btn-gold, .acta-btn-outline { text-align: center; justify-content: center; width: 100%; }
    .page-hero { padding: calc(var(--topbar-h) + var(--nav-h) + 32px) 0 48px; }
    .story-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .cred-inner { flex-direction: column; align-items: center; gap: 16px; }
    .cred-item { padding: 0; justify-content: center; }
}
