/* ═══════════════════════════════════════════════════════════════
   CHIEF OFFICERS SECTION — leadership page (bento redesign)
   ═══════════════════════════════════════════════════════════════ */

/* ── Section Shell ── */
.ems-co-section {
    background: #0d0d0d;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

/* ── Background decorations ── */
.ems-co-bg { position: absolute; inset: 0; pointer-events: none; }

.ems-co-bg-glow--1 {
    position: absolute;
    top: -180px; left: -180px;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,153,58,0.09) 0%, transparent 65%);
}

.ems-co-bg-glow--2 {
    position: absolute;
    bottom: -100px; right: -120px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,153,58,0.06) 0%, transparent 65%);
}

.ems-co-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,153,58,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,153,58,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Centered Header ── */
.ems-co-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.ems-co-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.ems-co-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.6;
}

.ems-co-heading {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--off-white);
    line-height: 1.18;
    margin: 0 0 18px;
}

.ems-co-heading em {
    font-style: italic;
    color: var(--gold-primary);
}

.ems-co-subheading {
    font-size: 0.96rem;
    color: rgba(250,250,247,0.45);
    line-height: 1.72;
    margin: 0 0 36px;
}

/* stat row inside header */
.ems-co-header-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,153,58,0.14);
    border-radius: 50px;
    padding: 14px 32px;
}

.ems-co-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 28px;
}

.ems-co-hstat:first-child { padding-left: 0; }
.ems-co-hstat:last-child  { padding-right: 0; }

.ems-co-hstat-num {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.75rem;
    color: var(--gold-primary);
    line-height: 1;
}

.ems-co-hstat-num sup {
    font-size: 0.65em;
    vertical-align: super;
}

.ems-co-hstat-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.35);
    white-space: nowrap;
}

.ems-co-hstat-sep {
    width: 1px;
    height: 36px;
    background: rgba(201,153,58,0.18);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   CEO FEATURE ROW
   ══════════════════════════════════════════════════════════════ */

.ems-co-ceo-row {
    margin-bottom: 20px;
}

.ems-co-ceo-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(201,153,58,0.14);
    background: #111;
    text-decoration: none;
    color: inherit;
    min-height: 340px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ems-co-ceo-card:hover {
    border-color: rgba(201,153,58,0.45);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,153,58,0.18);
}

/* Photo panel */
.ems-co-ceo-photo {
    position: relative;
    overflow: hidden;
}

.ems-co-ceo-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ems-co-ceo-card:hover .ems-co-ceo-photo img {
    transform: scale(1.04);
}

.ems-co-ceo-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, #111 100%);
    pointer-events: none;
}

/* Content panel */
.ems-co-ceo-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 52px;
    gap: 0;
    position: relative;
}

.ems-co-ceo-body::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,153,58,0.25), transparent);
}

.ems-co-ceo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.ems-co-ceo-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.7;
}

.ems-co-ceo-name {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    color: var(--off-white);
    line-height: 1.1;
    margin: 0 0 6px;
}

.ems-co-ceo-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.38);
    margin: 0 0 24px;
}

.ems-co-ceo-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    border-radius: 1px;
    margin-bottom: 24px;
}

.ems-co-ceo-bio {
    font-size: 0.93rem;
    color: rgba(250,250,247,0.5);
    line-height: 1.78;
    margin: 0 0 28px;
    max-width: 480px;
}

.ems-co-ceo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 32px;
}

.ems-co-ceo-tags span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(201,153,58,0.22);
    border-radius: 20px;
    color: rgba(250,250,247,0.5);
    background: rgba(201,153,58,0.06);
    white-space: nowrap;
    transition: border-color 0.25s, color 0.25s;
}

.ems-co-ceo-card:hover .ems-co-ceo-tags span {
    border-color: rgba(201,153,58,0.4);
    color: rgba(250,250,247,0.75);
}

.ems-co-ceo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-primary);
    transition: gap 0.22s, color 0.22s;
    text-decoration: none;
}

.ems-co-ceo-card:hover .ems-co-ceo-link {
    gap: 14px;
    color: var(--gold-light);
}

/* Gold accent line on card edge */
.ems-co-ceo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ems-co-ceo-card:hover::before {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   EXEC GRID (6-person, 3-column)
   ══════════════════════════════════════════════════════════════ */

.ems-co-exec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.ems-co-exec-cell {
    min-height: 360px;
}

/* ── Base Card ── */
.ems-co-bcard {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #111;
    border: 1px solid rgba(201,153,58,0.10);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ems-co-bcard:hover {
    border-color: rgba(201,153,58,0.45);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,153,58,0.18);
}

.ems-co-bcard-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ems-co-bcard:hover .ems-co-bcard-img {
    transform: scale(1.05);
}

.ems-co-bcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.18) 38%,
        rgba(5,4,2,0.78) 68%,
        rgba(5,4,2,0.97) 100%
    );
    transition: opacity 0.3s ease;
}

/* ── Card Content ── */
.ems-co-bcard-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 24px 28px;
}

.ems-co-bcard-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201,153,58,0.85);
    background: rgba(10,8,4,0.6);
    border: 1px solid rgba(201,153,58,0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
}

.ems-co-bcard-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ems-co-bcard-name {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.28rem;
    color: var(--off-white);
    line-height: 1.22;
    margin: 0;
}

.ems-co-bcard-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin: 0 0 8px;
    line-height: 1.45;
    opacity: 0.85;
}

/* Reveal on hover */
.ems-co-bcard-reveal {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.38s ease, opacity 0.3s ease;
}

.ems-co-bcard:hover .ems-co-bcard-reveal {
    max-height: 100px;
    opacity: 1;
}

.ems-co-bcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.ems-co-bcard-tags span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border: 1px solid rgba(201,153,58,0.24);
    border-radius: 20px;
    color: rgba(250,250,247,0.55);
    background: rgba(201,153,58,0.07);
    white-space: nowrap;
}

.ems-co-bcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    transition: gap 0.22s ease, color 0.22s ease;
    margin-top: 2px;
}

.ems-co-bcard:hover .ems-co-bcard-cta {
    gap: 11px;
    color: var(--gold-light);
}

/* Gold bottom accent line on hover */
.ems-co-bcard::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
    border-radius: 1px;
}

.ems-co-bcard:hover::after {
    transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════════
   CREDENTIAL BAR
   ══════════════════════════════════════════════════════════════ */

.ems-co-credbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,153,58,0.1);
    border-radius: 14px;
    padding: 22px 32px;
}

.ems-co-credbar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(250,250,247,0.55);
    padding: 0 28px;
    white-space: nowrap;
}

.ems-co-credbar-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    opacity: 0.85;
}

.ems-co-credbar-item:first-child { padding-left: 0; }
.ems-co-credbar-item:last-child  { padding-right: 0; }

.ems-co-credbar-sep {
    width: 1px;
    height: 28px;
    background: rgba(201,153,58,0.14);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
    .ems-co-ceo-card {
        grid-template-columns: 320px 1fr;
    }
    .ems-co-exec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ems-co-ceo-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ems-co-ceo-photo {
        height: 380px;
    }
    .ems-co-ceo-photo::after {
        background: linear-gradient(180deg, transparent 55%, #111 100%);
    }
    .ems-co-ceo-body {
        padding: 36px 36px 40px;
    }
    .ems-co-ceo-body::before { display: none; }
    .ems-co-exec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .ems-co-exec-cell { min-height: 320px; }
    .ems-co-credbar {
        gap: 12px;
        justify-content: flex-start;
    }
    .ems-co-credbar-item { padding: 0 16px; }
    .ems-co-credbar-sep  { height: 20px; }
}

@media (max-width: 767px) {
    .ems-co-section { padding: 80px 0 70px; }
    .ems-co-ceo-body { padding: 28px 24px 32px; }
    .ems-co-exec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .ems-co-exec-cell { min-height: 280px; }
    .ems-co-credbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px 20px;
    }
    .ems-co-credbar-item { padding: 0; }
    .ems-co-credbar-sep  { display: none; }
    .ems-co-header-stats {
        flex-direction: column;
        border-radius: 16px;
        padding: 20px 24px;
        gap: 10px;
        width: 100%;
    }
    .ems-co-hstat { padding: 0; }
    .ems-co-hstat-sep { width: 80px; height: 1px; }
}

@media (max-width: 480px) {
    .ems-co-exec-grid {
        grid-template-columns: 1fr;
    }
    .ems-co-exec-cell { min-height: 300px; }
    .ems-co-ceo-photo { height: 300px; }
}

/* ═══════════════════════════════════════════════════════════════
   TEAM PROFILE PAGE — /leadership/{slug}
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.ems-tp-hero {
    position: relative;
    background: #0a0a0a;
    padding: 130px 0 100px;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.ems-tp-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.ems-tp-hero-glow {
    position: absolute;
    top: -100px; left: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,153,58,0.1) 0%, transparent 60%);
}

.ems-tp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,153,58,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,153,58,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 90% at 20% 50%, black 30%, transparent 100%);
}

.ems-tp-hero-divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Back link */
.ems-tp-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.35);
    text-decoration: none;
    margin-bottom: 48px;
    transition: color 0.22s;
}

.ems-tp-back:hover { color: var(--gold-primary); }

/* Split layout */
.ems-tp-hero-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* Left */
.ems-tp-hero-left { padding-right: 20px; }

.ems-tp-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 22px;
}

.ems-tp-hero-eyebrow-dot {
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    flex-shrink: 0;
}

.ems-tp-hero-name {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    color: var(--off-white);
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.ems-tp-hero-role-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.ems-tp-hero-role {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.ems-tp-hero-headline {
    font-size: 1.05rem;
    color: rgba(250,250,247,0.5);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

/* chips */
.ems-tp-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.ems-tp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(201,153,58,0.08);
    border: 1px solid rgba(201,153,58,0.22);
    border-radius: 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(250,250,247,0.7);
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.ems-tp-chip svg { color: var(--gold-primary); flex-shrink: 0; }

/* hero CTA */
.ems-tp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold-primary);
    color: #0a0a0a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.22s, gap 0.22s;
}

.ems-tp-hero-cta:hover {
    background: var(--gold-light);
    gap: 14px;
    color: #0a0a0a;
}

/* Right — photo */
.ems-tp-hero-right { display: flex; justify-content: flex-end; align-items: center; }

.ems-tp-photo-wrap {
    position: relative;
    width: 380px;
    flex-shrink: 0;
}

.ems-tp-photo-ring {
    position: absolute;
    border-radius: 24px;
    border: 1px solid rgba(201,153,58,0.18);
    pointer-events: none;
}

.ems-tp-photo-ring--outer { inset: -14px; border-radius: 28px; }
.ems-tp-photo-ring--inner { inset: -5px; border-radius: 21px; border-color: rgba(201,153,58,0.3); }

.ems-tp-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.ems-tp-photo-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    z-index: 2;
    background: rgba(10,8,4,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,153,58,0.28);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 200px;
}

.ems-tp-photo-badge-role {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.ems-tp-photo-badge-org {
    font-size: 0.75rem;
    color: rgba(250,250,247,0.5);
    letter-spacing: 0.02em;
}

/* ── Metric Strip ──────────────────────────────────────────── */
.ems-tp-metrics {
    background: #111;
    border-top: 1px solid rgba(201,153,58,0.1);
    border-bottom: 1px solid rgba(201,153,58,0.1);
    padding: 32px 0;
}

.ems-tp-metrics-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ems-tp-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 44px;
}

.ems-tp-metric-num {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.6rem;
    color: var(--gold-primary);
    line-height: 1;
}

.ems-tp-metric-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.35);
    white-space: nowrap;
}

.ems-tp-metric-sep {
    width: 1px;
    height: 40px;
    background: rgba(201,153,58,0.15);
    flex-shrink: 0;
}

/* ── Body ──────────────────────────────────────────────────── */
.ems-tp-body { background: #fafaf7; padding: 80px 0 100px; }

.ems-tp-body-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

/* Block */
.ems-tp-block {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ems-tp-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ems-tp-block-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.4rem;
    color: #0a0a0a;
    margin-bottom: 22px;
}

.ems-tp-block-title svg { color: var(--gold-primary); flex-shrink: 0; }

.ems-tp-bio {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 16px;
}
.ems-tp-bio:last-child { margin-bottom: 0; }

/* Expertise grid */
.ems-tp-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ems-tp-exp-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.22s, box-shadow 0.22s;
}

.ems-tp-exp-card:hover {
    border-color: rgba(201,153,58,0.35);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ems-tp-exp-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201,153,58,0.08);
    border: 1px solid rgba(201,153,58,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.ems-tp-exp-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ems-tp-exp-card-desc {
    font-size: 0.8rem;
    color: #6a6a6a;
    line-height: 1.55;
}

/* Scope list */
.ems-tp-scope-list { display: flex; flex-direction: column; gap: 0; }

.ems-tp-scope-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ems-tp-scope-item:last-child { border-bottom: none; padding-bottom: 0; }
.ems-tp-scope-item:first-child { padding-top: 0; }

.ems-tp-scope-num {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.5rem;
    color: rgba(201,153,58,0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
    text-align: right;
}

.ems-tp-scope-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ems-tp-scope-desc { font-size: 0.84rem; color: #5a5a5a; line-height: 1.6; }

/* Sidebar */
.ems-tp-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }

.ems-tp-sidebar-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.ems-tp-sidebar-card--cta { background: #0a0a0a; border-color: rgba(201,153,58,0.18); }

.ems-tp-sidebar-title {
    font-family: var(--font-display, 'DM Serif Display', serif);
    font-size: 1.05rem;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.ems-tp-sidebar-card--cta .ems-tp-sidebar-title { color: var(--off-white); }

.ems-tp-sidebar-body {
    font-size: 0.83rem;
    color: rgba(250,250,247,0.5);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Quick facts */
.ems-tp-qfacts { display: flex; flex-direction: column; gap: 12px; }

.ems-tp-qfact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ems-tp-qfact:last-child { border-bottom: none; padding-bottom: 0; }

.ems-tp-qfact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    flex-shrink: 0;
}

.ems-tp-qfact-val {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

/* Skill list */
.ems-tp-skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ems-tp-skill-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.86rem;
    color: #2e2e2e;
    line-height: 1.45;
}

.ems-tp-skill-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    margin-top: 7px;
}

/* CTA buttons */
.ems-tp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
    background: var(--gold-primary);
    color: #0a0a0a;
    border: 1px solid var(--gold-primary);
}

.ems-tp-cta-btn:hover { background: var(--gold-light); border-color: var(--gold-light); color: #0a0a0a; }
.ems-tp-cta-btn--ghost { background: transparent; color: rgba(250,250,247,0.65); border: 1px solid rgba(201,153,58,0.28); margin-bottom: 0; }
.ems-tp-cta-btn--ghost:hover { background: rgba(201,153,58,0.1); color: var(--gold-light); border-color: var(--gold-primary); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .ems-tp-hero-split { grid-template-columns: 1fr 360px; gap: 44px; }
    .ems-tp-photo-wrap { width: 340px; }
    .ems-tp-photo { height: 460px; }
}

@media (max-width: 991px) {
    .ems-tp-hero {
        padding: 110px 0 80px;
        min-height: auto;
        align-items: flex-start;
    }
    .ems-tp-hero-split { grid-template-columns: 1fr; gap: 48px; }
    .ems-tp-hero-left { padding-right: 0; }
    .ems-tp-hero-right { justify-content: flex-start; }
    .ems-tp-photo-wrap { width: 300px; }
    .ems-tp-photo { height: 380px; }
    .ems-tp-photo-badge { left: 10px; bottom: 16px; }
    .ems-tp-body-grid { grid-template-columns: 1fr; }
    .ems-tp-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .ems-tp-sidebar-card { flex: 1 1 260px; }
    .ems-tp-expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .ems-tp-hero-name { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .ems-tp-metrics-inner { gap: 0; justify-content: flex-start; }
    .ems-tp-metric { padding: 12px 20px; }
    .ems-tp-metric-sep { height: 28px; }
    .ems-tp-expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .ems-tp-back { margin-bottom: 32px; }
    .ems-tp-photo-wrap { width: 100%; }
    .ems-tp-photo { height: 300px; }
    .ems-tp-sidebar { flex-direction: column; }
    .ems-tp-metrics-inner { flex-wrap: wrap; justify-content: center; }
    .ems-tp-metric-sep { display: none; }
    .ems-tp-metric { flex: 1 1 45%; padding: 12px 0; border-bottom: 1px solid rgba(201,153,58,0.1); }
}

