﻿
:root {
    --ink: #0D1E35;
    --ink-mid: #2A3A47;
    --ink-soft: #6B7785;
    --ink-mute: #C0C7CE;
    --white: #FFFFFF;
    --bg: #F4F2EC;
    --bg-warm: #EDEAE2;
    --bg-soft: #F0F4F2;
    --rule: #DCD8CE;
    --rule-soft: #E7E4DA;
    --teal: #006B6B;
    --teal-bright: #5BBAB5;
    --teal-lt: #E8F4F2;
    --teal-pale: #F0F8F7;
    --amber: #C8923A;
    --amber-lt: #F7E6B8;
    --amber-soft: #FBF1D2;
    --sun: #F5C75A;
    --sun-soft: #FDF2D5;
    --ease-spring: cubic-bezier(.32,.72,0,1);
    --shadow-card: 0 1px 2px rgba(13,30,53,.04),0 8px 24px -8px rgba(13,30,53,.08);
    --shadow-soft: 0 2px 4px rgba(13,30,53,.04),0 20px 48px -16px rgba(13,30,53,.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img, svg {
    max-width: 100%;
    display: block
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer
}

ul, ol {
    list-style: none
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: .016;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

@media (max-width:899px) {
    .container {
        padding: 0 24px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 20px
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber)
}

    .eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--amber);
        opacity: .6
    }

/* HERO */
.team-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
    background: var(--bg)
}

.breadcrumb {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px
}

    .breadcrumb a {
        color: var(--ink-soft);
        transition: color .2s
    }

        .breadcrumb a:hover {
            color: var(--ink)
        }

    .breadcrumb .sep {
        color: var(--ink-mute)
    }

    .breadcrumb .current {
        color: var(--ink);
        font-weight: 500
    }

.team-hero-h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(40px,5.4vw,64px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.07;
    letter-spacing: -.018em;
    margin-bottom: 28px;
    max-width: 920px
}

    .team-hero-h1 em {
        font-style: italic;
        color: var(--amber)
    }

.team-hero-sub {
    font-size: 17.5px;
    line-height: 1.65;
    color: var(--ink-mid);
    font-weight: 300;
    max-width: 760px;
    margin-bottom: 48px
}

    .team-hero-sub strong {
        font-weight: 500;
        color: var(--ink)
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-top: 14px
}

.hero-stat {
    padding: 30px 28px 30px 0;
    border-right: 1px solid var(--rule)
}

    .hero-stat:last-child {
        border-right: 0;
        padding-right: 0
    }

.hero-stat-num {
    font-family: 'Playfair Display',serif;
    font-size: 46px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.025em
}

    .hero-stat-num sup {
        font-size: 18px;
        color: var(--amber);
        font-weight: 600;
        font-family: 'Plus Jakarta Sans',sans-serif;
        margin-left: 3px;
        vertical-align: super
    }

.hero-stat-label {
    margin-top: 10px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.4
}

@media(max-width:880px) {
    .team-hero {
        padding: 60px 0 40px
    }

    .hero-stats {
        grid-template-columns: repeat(2,1fr)
    }

    .hero-stat {
        padding: 22px 18px 22px 0
    }

        .hero-stat:nth-child(2) {
            border-right: 0
        }

        .hero-stat:nth-child(1), .hero-stat:nth-child(2) {
            border-bottom: 1px solid var(--rule)
        }
}

/* INTRO BAND */
.intro-band {
    padding: 74px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    text-align: center
}

.intro-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px
}

.intro-kicker {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px
}

.intro-headline {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(28px,3.4vw,38px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.01em;
    margin-bottom: 24px
}

    .intro-headline em {
        font-style: italic;
        color: var(--teal)
    }

.intro-text {
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 300;
    max-width: 740px;
    margin: 0 auto
}

/* TEAM GRID */
.team-section {
    padding: 90px 0 100px;
    background: var(--bg-warm)
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 54px;
    flex-wrap: wrap
}

.section-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(32px,4vw,46px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -.012em;
    max-width: 680px
}

    .section-title em {
        font-style: italic;
        color: var(--amber)
    }

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

    .section-eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--teal);
        opacity: .6
    }

.section-aside {
    font-family: 'Cormorant Garamond',serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-weight: 400;
    max-width: 280px;
    text-align: right
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px
}

@media(max-width:780px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .section-aside {
        display: none
    }

    .team-section {
        padding: 60px 0
    }
}

.doc-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--ease-spring), box-shadow .35s, border-color .35s;
    color: inherit;
    cursor: pointer
}

    .doc-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
        border-color: #C8C2B4
    }

.doc-card-photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #E8E2D3 0%, #DCD8CE 50%, #D0CCBF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

    .doc-card-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(245,199,90,.08) 0%, transparent 50%),radial-gradient(circle at 70% 70%, rgba(91,186,181,.06) 0%, transparent 50%)
    }

.doc-card-initials {
    font-family: 'Playfair Display',serif;
    font-size: 108px;
    font-weight: 400;
    color: rgba(13,30,53,.22);
    letter-spacing: -.03em;
    line-height: 1;
    z-index: 1
}

.doc-card-photo-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-mid);
    z-index: 2
}

.doc-card-body {
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.doc-card-pill {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 11px;
    background: var(--teal-lt);
    color: var(--teal);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px
}

    .doc-card-pill.lead {
        background: var(--sun-soft);
        color: var(--amber)
    }

    .doc-card-pill.research {
        background: #F4ECF9;
        color: #7A5BA1
    }

    .doc-card-pill.early {
        background: var(--teal-lt);
        color: #0A8C7E
    }

.doc-card-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.012em;
    margin-bottom: 10px
}

.doc-card-creds {
    font-size: 12.5px;
    color: var(--ink-soft);
    letter-spacing: .01em;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.55
}

.doc-card-role {
    font-family: 'Cormorant Garamond',serif;
    font-style: italic;
    font-size: 17px;
    color: var(--teal);
    line-height: 1.45;
    margin-bottom: 20px
}

.doc-card-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 24px;
    flex: 1
}

.doc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px
}

.doc-card-tag {
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: .02em
}

.doc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--rule)
}

.doc-card-yrs {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft)
}

    .doc-card-yrs strong {
        color: var(--ink);
        font-weight: 700;
        font-size: 13px
    }

.doc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink)
}

    .doc-card-link::after {
        content: "→";
        font-size: 14px;
        transition: transform .2s
    }

.doc-card:hover .doc-card-link::after {
    transform: translateX(3px)
}

/* LEADERSHIP BAR */
.lead-bar {
    background: var(--ink);
    color: var(--white);
    padding: 84px 0
}

.lead-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center
}

@media(max-width:880px) {
    .lead-bar {
        padding: 54px 0
    }

    .lead-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px
    }
}

.lead-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

    .lead-eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--sun);
        opacity: .6
    }

.lead-headline {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(28px,3.6vw,42px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.012em;
    color: var(--white)
}

    .lead-headline em {
        color: var(--sun);
        font-style: italic
    }

.lead-text {
    font-size: 15.5px;
    line-height: 1.78;
    color: rgba(255,255,255,.82);
    font-weight: 300
}

    .lead-text p + p {
        margin-top: 18px
    }

    .lead-text strong {
        color: var(--white);
        font-weight: 500
    }

.lead-roles {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.lead-role-pill {
    padding: 6px 14px;
    background: rgba(245,199,90,.14);
    border: 1px solid rgba(245,199,90,.3);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--sun)
}

/* RESEARCH BAND */
.research-band {
    padding: 90px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--rule)
}

.research-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center
}

@media(max-width:880px) {
    .research-band {
        padding: 54px 0
    }

    .research-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.research-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(28px,3.6vw,42px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -.012em;
    margin-bottom: 24px
}

    .research-title em {
        font-style: italic;
        color: var(--amber)
    }

.research-text {
    font-size: 15.5px;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 32px
}

    .research-text strong {
        color: var(--ink);
        font-weight: 500
    }

.research-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .25s
}

    .btn-primary:hover {
        background: var(--teal)
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all .25s
}

    .btn-secondary:hover {
        border-color: var(--ink);
        background: var(--white)
    }

.research-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

.research-stat {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px 26px
}

.research-stat-num {
    font-family: 'Playfair Display',serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.02em
}

    .research-stat-num sup {
        font-size: 16px;
        color: var(--amber);
        font-weight: 600;
        font-family: 'Plus Jakarta Sans',sans-serif;
        margin-left: 3px;
        vertical-align: super
    }

.research-stat-label {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.5
}

/* CONSULT CTA */
.consult {
    padding: 84px 0;
    background: linear-gradient(135deg, var(--amber-soft) 0%, var(--sun-soft) 100%);
    border-bottom: 1px solid var(--rule)
}

.consult-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center
}

.consult-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

    .consult-eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--amber);
        opacity: .6
    }

.consult-headline {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(30px,4vw,46px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -.012em;
    margin-bottom: 18px
}

    .consult-headline em {
        font-style: italic;
        color: var(--teal)
    }

.consult-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 34px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
}

.consult-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .25s
}

    .btn-whatsapp:hover {
        background: #1FAA52
    }


