/* =====================================================================
   jamesmccann — site design CSS (webflow.css)
   Source: claude-design/index.html (Claude-designed one-pager), converted
   to a Webflow-export-shaped bundle via claude-design-to-export (2026-08-04).
   Structure: tokens/base -> buttons -> nav (w-nav skin) -> page-title band
   -> homepage sections -> footer -> promoted-from-inline -> layout media
   queries -> team bio modal -> firm stats.
   Fonts: Google Fonts <link> in the static pages; in WordPress configure
   via Glacial Settings (glacial_fonts, font_loading = local) instead.
   ===================================================================== */

:root {
    --ink: #16302A;
    --ink-soft: #283A33;
    --paper: #F3F1E8;
    --paper-2: #EDEAE0;
    --taupe: #6E6A5F;
    --brass: #9C7A3C;
    --brass-soft: #B79460;
    --line: rgba(22, 48, 42, .16);
    --line-faint: rgba(22, 48, 42, .09);
    --on-dark: #E8E6DA;
    --on-dark-soft: #A9B3AC;
    --maxw: 1180px;
    --gut: clamp(20px, 5vw, 64px);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink-soft);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

a:focus-visible, .btn:focus-visible, button:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
    border-radius: 2px
}

h1, h2, h3, h4 {
    font-family: "Newsreader", Georgia, serif;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.08;
    margin: 0;
    letter-spacing: -.01em
}

p {
    margin: 0 0 1.1em
}

a {
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

em {
    font-style: italic;
    color: var(--brass)
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut)
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brass);
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--brass);
    opacity: .7
}

.lede {
    font-size: clamp(18px, 2.1vw, 21px);
    line-height: 1.6;
    color: var(--ink-soft)
}

.logo-img {
    display: inline-block;
    width: auto;
    vertical-align: middle
}

/* buttons (shared) */
.btn {
    display: inline-block;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 11px 18px;
    background: var(--ink);
    color: var(--on-dark);
    border-radius: 2px;
    transition: background .25s, transform .25s
}

.btn:hover {
    background: #0e221d;
    transform: translateY(-1px)
}

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 10px 17px
}

.btn.ghost:hover {
    background: var(--ink);
    color: var(--on-dark);
    border-color: var(--ink)
}

.btn.light {
    background: var(--paper);
    color: var(--ink)
}

.btn.light:hover {
    background: #fff
}

/* ============ nav / w-nav banner (authored) ============
   Replaces the design's custom sticky header + fullscreen mobile overlay.
   Structural w-nav behavior comes from the theme's components.css
   (static preview: webflow-base-preview.css). Skin only lives here;
   final nav colors/fonts also map to glacial_nav_settings — see README.
   Selectors stay lower-specificity than .w-nav[data-collapse] .w-nav-menu. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 241, 232, .82);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s
}

.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(243, 241, 232, 1)
}

.site-header .nav {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 24px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut)
}

.site-header .nav-menu {
    margin-left: auto
}

.brand {
    font-family: "Newsreader", serif;
    font-size: 21px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap
}

.brand b {
    font-weight: 500
}

.brand span {
    color: var(--brass);
    font-style: italic
}

.nav-menu {
    font-family: "Hanken Grotesk", sans-serif
}

.gl-top-level {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px
}

.gl-top-level a {
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    opacity: .85;
    transition: opacity .2s, color .2s;
    white-space: nowrap
}

.gl-top-level a:hover {
    opacity: 1;
    color: var(--ink)
}

.gl-top-level .current-menu-item > a {
    opacity: 1;
    color: var(--ink)
}

.nav-cta {
    display: flex;
    align-items: center
}

.menu-button {
    color: var(--ink)
}

.menu-button.w--open {
    background: var(--paper-2);
    color: var(--ink)
}

/* mobile overlay skin — webflow.js moves .nav-menu into .w-nav-overlay under 991px */
.w-nav-overlay .nav-menu {
    margin-left: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 22px var(--gut) 28px
}

.w-nav-overlay .gl-top-level {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.w-nav-overlay .gl-top-level a {
    font-size: 16px;
    opacity: 1
}

@media (max-width: 991px) {
    .site-header .nav-cta {
        margin-left: auto
    }
}

@media (max-width: 479px) {
    .nav-cta .btn {
        padding: 9px 12px;
        font-size: 13px
    }

    .brand {
        font-size: 18px
    }
}

/* ============ page title band (inner pages; maps to page-title.php) ============ */
.page-title-section {
    padding: clamp(36px, 6vh, 64px) 0;
    border-bottom: 1px solid var(--line-faint)
}

.page-title-section .breadcrumbs, .page-title-section #breadcrumbs {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brass);
    margin: 0 0 14px
}

.page-title-section .breadcrumbs a, .page-title-section #breadcrumbs a {
    color: var(--taupe);
    text-decoration: none
}

.page-title-section .breadcrumbs a:hover, .page-title-section #breadcrumbs a:hover {
    color: var(--ink)
}

.page-title-section .breadcrumbs .sep {
    margin: 0 8px;
    opacity: .6;
    color: var(--taupe)
}

.page-title-section h1 {
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -.02em
}

.inner-content .wrap {
    max-width: 860px
}

/* hero */
.hero {
    padding: clamp(30px, 6vh, 92px) 0 0
}

.hero-grid {
    display: grid;
    grid-template-columns:1.04fr .96fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center
}

.hero .partner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--taupe);
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: -.025em
}

.hero .lede {
    max-width: 46ch;
    margin-top: 24px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px
}

.hero-media {
    position: relative
}

.hero-media img.skyimg {
    width: 100%;
    border-radius: 3px;
    position: relative;
    z-index: 1
}

/* credo */
.throughline {
    margin-top: clamp(48px, 7vh, 84px)
}

.throughline .rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass) 12%, var(--brass) 88%, transparent);
    opacity: .55
}

.credo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 40px;
    padding: clamp(30px, 4vh, 40px) 0
}

.credo div {
    font-size: 13.5px;
    color: var(--taupe);
    flex: 1 1 auto;
    min-width: 150px
}

.credo b {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 20px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 2px
}

.credo sup {
    color: var(--brass);
    font-size: .6em;
    vertical-align: baseline;
    position: relative;
    top: -.5em
}

section {
    padding: clamp(40px, 6vh, 112px) 0
}

.sec-head {
    margin-bottom: clamp(38px, 6vh, 60px)
}

.sec-head h2 {
    font-size: clamp(30px, 4.4vw, 46px);
    max-width: 20ch
}

.two-col {
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start
}

.two-col .lede {
    font-family: "Newsreader", serif;
    font-size: clamp(19px, 2.3vw, 24px);
    line-height: 1.45;
    color: var(--ink)
}

/* about-focus */
.about-focus {
    background: var(--paper-2)
}

/* services 6 */
.svc-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: clamp(26px, 3vw, 44px)
}

.svc {
    border-top: 1px solid var(--ink);
    padding-top: 20px
}

.svc .n {
    font-family: "Newsreader", serif;
    font-style: italic;
    font-size: 14px;
    color: var(--brass);
    display: block;
    margin-bottom: 8px
}

.svc h3 {
    font-size: clamp(20px, 2.2vw, 24px);
    margin: 0 0 12px
}

.svc p {
    font-size: 15px;
    color: var(--taupe);
    margin: 0;
    line-height: 1.6
}

/* process */
.process {
    background: var(--ink);
    color: var(--on-dark)
}

.process h2 {
    color: var(--paper)
}

.process .eyebrow {
    color: var(--brass-soft)
}

.process .eyebrow::before {
    background: var(--brass-soft)
}

.timeline {
    position: relative;
    margin-top: clamp(44px, 6vh, 64px);
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px)
}

.timeline::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--brass), rgba(183, 148, 96, .25))
}

.step {
    position: relative;
    padding-top: 34px
}

.step::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--brass-soft)
}

.step .k {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brass-soft)
}

.step h3 {
    color: var(--paper);
    font-size: clamp(20px, 2.2vw, 24px);
    margin: 8px 0 10px
}

.step p {
    font-size: 14.5px;
    color: var(--on-dark-soft);
    margin: 0;
    line-height: 1.6
}

/* who we serve */
.serve {
    background: var(--paper-2)
}

.serve-intro {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(34px, 6vw, 64px);
    align-items: center;
    margin-bottom: clamp(40px, 6vh, 60px)
}

.serve-intro h2 {
    font-size: clamp(30px, 4.4vw, 46px);
    max-width: 15ch
}

.serve-lede {
    color: var(--taupe);
    margin: 22px 0 0;
    font-size: 16.5px;
    max-width: 44ch
}

.serve-figure img {
    width: 100%;
    height: auto;
    border-radius: 3px
}

.cards {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1px;
    background: var(--line-faint);
    border: 1px solid var(--line-faint)
}

.card {
    background: var(--paper-2);
    padding: clamp(26px, 3vw, 40px)
}

.card .num {
    font-family: "Newsreader", serif;
    font-style: italic;
    font-size: 15px;
    color: var(--brass)
}

.card h3 {
    font-size: clamp(22px, 2.6vw, 27px);
    margin: 10px 0 12px
}

.card p {
    font-size: 15.5px;
    color: var(--taupe);
    margin: 0;
    line-height: 1.62
}

/* why choose us */
.why {
    background: var(--ink);
    color: var(--on-dark);
    text-align: center
}

.why h2 {
    color: var(--paper);
    font-size: clamp(28px, 4vw, 42px);
    max-width: 20ch;
    margin: 0 auto
}

.why .eyebrow {
    color: var(--brass-soft);
    justify-content: center;
    display: inline-flex
}

.why .eyebrow::before {
    background: var(--brass-soft)
}

.why p {
    max-width: 60ch;
    margin: 18px auto 0;
    color: var(--on-dark-soft)
}

.why .goal {
    font-family: "Newsreader", serif;
    font-style: italic;
    font-size: clamp(19px, 2.4vw, 24px);
    color: var(--paper);
    margin-top: 26px
}

/* team */
.team-featured {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
    margin-bottom: clamp(48px, 7vh, 80px)
}

.team-featured .figure img {
    width: 100%;
    border-radius: 3px
}

.team-featured h3 {
    font-size: clamp(26px, 3.2vw, 34px);
    margin-bottom: 6px
}

.team-featured .role {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 20px
}

.team-featured p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.62
}

.creds {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px 28px
}

.creds b {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500
}

.creds div {
    font-size: 14px;
    color: var(--taupe)
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px
}

.member {
    flex: 0 1 calc((100% - 64px) / 3);
    min-width: 210px;
    max-width: 340px
}

.m-photo {
    aspect-ratio: 4/5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center
}

.m-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%
}

.member h4 {
    font-family: "Newsreader", serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 3px
}

.member .role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brass);
    margin: 0 0 8px
}

.member a {
    font-size: 13.5px;
    color: var(--taupe);
    text-decoration: none;
    border-bottom: 1px solid var(--line)
}

.member a:hover {
    color: var(--ink);
    border-color: var(--ink)
}

/* partnership */
.partner-block {
    margin-top: clamp(48px, 7vh, 80px);
    background: var(--paper-2);
    border: 1px solid var(--line-faint);
    border-radius: 4px;
    display: grid;
    grid-template-columns:.7fr 1.3fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding: clamp(30px, 4vw, 52px)
}

.partner-block .left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start
}

.award {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    border: 1px solid var(--brass);
    border-radius: 3px;
    padding: 9px 16px;
    color: var(--ink);
    background: var(--paper)
}

.award b {
    font-weight: 600;
    font-size: 13px
}

.award .award-sub {
    font-size: 11.5px;
    color: var(--taupe)
}

.award sup {
    color: var(--brass)
}

.partner-block h3 {
    font-size: clamp(22px, 2.8vw, 30px);
    margin-bottom: 14px
}

.partner-block p {
    font-size: 15.5px;
    color: var(--taupe);
    margin: 0;
    line-height: 1.62
}

/* contact */
.contact {
    background: var(--ink);
    color: var(--on-dark)
}

.contact h2 {
    color: var(--paper);
    font-size: clamp(30px, 4.6vw, 50px)
}

.contact .eyebrow {
    color: var(--brass-soft)
}

.contact .eyebrow::before {
    background: var(--brass-soft)
}

.contact-grid {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
    margin-top: 8px
}

.contact .lede {
    color: var(--on-dark-soft);
    max-width: 42ch;
    margin-top: 18px
}

.contact-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.cdetails {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 24px
}

.cdetails .row {
    display: block;
    margin-bottom: 18px
}

.cdetails .lab {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brass-soft);
    margin-bottom: 5px
}

.cdetails a, .cdetails span {
    color: var(--paper);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5
}

.cdetails a:hover {
    color: var(--brass-soft)
}

/* login */
.login {
    background: var(--paper-2);
    text-align: center
}

.login h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px
}

.login p {
    color: var(--taupe);
    max-width: 48ch;
    margin: 0 auto 30px
}

.login-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.login-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
    width: 230px;
    height: 82px;
    padding: 14px 20px;
    text-decoration: none;
    transition: border-color .2s, transform .2s, box-shadow .2s
}

.login-btns a img {
    width: auto;
    object-fit: contain
}

.login-btns a img.fidelity-logo {
    max-height: 32px;
    max-width: 78%
}

.login-btns a img.schwab-logo {
    max-height: 30px;
    max-width: 78%
}

.login-btns a img.emoney-logo {
    max-height: 34px;
    max-width: 78%
}

.login-btns a:hover {
    border-color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(22, 48, 42, .08)
}

/* footer */
footer {
    background: var(--paper-2);
    padding: 54px 0 40px;
    border-top: 1px solid var(--line)
}

.foot-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: baseline;
    margin-bottom: 28px
}

.foot-top .brand {
    font-size: 23px
}

.foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px
}

.foot-nav a {
    font-size: 14px;
    color: var(--taupe);
    text-decoration: none
}

.foot-nav a:hover {
    color: var(--ink)
}

.disclosure {
    font-size: 12px;
    line-height: 1.7;
    color: var(--taupe);
    border-top: 1px solid var(--line-faint);
    padding-top: 24px
}

.disclosure p {
    margin: 0 0 10px
}

.disclosure a {
    color: var(--brass);
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 122, 60, .35)
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

/* ============ promoted from inline style="" attributes ============ */
.hero--flush {
    padding-bottom: 0
}

.logo-img--h22 {
    height: 22px
}

.logo-img--h48 {
    height: 48px
}

.logo-img--h34 {
    height: 34px;
    margin-bottom: 18px
}

.u-mb-0 {
    margin-bottom: 0
}

.about-focus .two-col h2 {
    font-size: clamp(28px, 3.8vw, 42px)
}

.process h2 em {
    color: var(--brass-soft)
}

.btn.ghost.on-dark {
    color: var(--paper);
    border-color: rgba(255, 255, 255, .3)
}

.eyebrow--center {
    justify-content: center;
    display: inline-flex
}

.disclosure a.credit-link {
    color: inherit;
    text-decoration: none;
    border: 0
}

/* ============ layout media queries ============ */
@media (max-width: 880px) {
    .hero-grid, .two-col, .serve-intro, .team-featured, .partner-block, .contact-grid {
        grid-template-columns:1fr
    }

    .hero-media {
        order: -1;
        max-width: 460px
    }

    .svc-grid {
        grid-template-columns:1fr 1fr
    }

    .member {
        flex-basis: calc((100% - 32px) / 2)
    }

    .timeline {
        grid-template-columns:1fr 1fr
    }

    .timeline::before {
        display: none
    }

    .step {
        padding-top: 0;
        border-top: 1px solid rgba(183, 148, 96, .4);
        padding-top: 18px
    }

    .step::before {
        display: none
    }
}

@media (max-width: 560px) {
    .cards, .svc-grid, .creds {
        grid-template-columns:1fr
    }

    .member {
        flex-basis: 100%
    }
}

/* team bio modal */
.bio-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.bio-modal.open {
    display: flex
}

.bio-modal .overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 48, 42, .55);
    backdrop-filter: blur(3px)
}

.bio-dialog {
    position: relative;
    z-index: 1;
    background: var(--paper);
    max-width: 720px;
    width: 100%;
    top: 10px;
    max-height: 80vh;
    overflow: auto;
    border-radius: 4px;
    border: 1px solid var(--line);
    box-shadow: 0 26px 70px rgba(22, 48, 42, .34)
}

.bio-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    opacity: .65
}

.bio-close:hover {
    opacity: 1;
    background: rgba(22, 48, 42, .06)
}

.bio-hd {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 30px 34px 20px;
    border-bottom: 1px solid var(--line)
}

.bio-hd img {
    width: 96px;
    height: 120px;
    flex: none;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 3px;
    background: var(--paper-2)
}

.bio-hd h3 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 5px
}

.bio-hd .role {
    color: var(--brass);
    font: 600 12px/1.3 "Hanken Grotesk";
    letter-spacing: .09em;
    text-transform: uppercase
}

.bio-body {
    padding: 22px 34px 32px
}

.bio-body p {
    color: var(--taupe);
    font-size: 15.5px;
    line-height: 1.72;
    margin: 0 0 15px
}

.bio-body p:last-child {
    margin: 0
}

.bio-body .fn {
    font-size: 12.5px;
    color: var(--taupe);
    opacity: .8
}

body.modal-lock {
    overflow: hidden
}

@media (max-width: 560px) {
    .bio-hd {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 34px 20px 18px
    }

    .bio-body {
        padding: 20px 20px 26px
    }
}

/* integrated by the numbers */
.firm-stats {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line)
}

.firm-stats .eyebrow {
    margin-bottom: 22px;
    display: block
}

.stat-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brass);
    border-radius: 3px;
    padding: 22px 22px 20px;
    box-shadow: 0 8px 24px rgba(22, 48, 42, .05)
}

.stat .num {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1;
    color: var(--ink)
}

.stat .num sup {
    font-size: .5em;
    color: var(--brass);
    top: -.9em
}

.stat .lab {
    font: 600 13.5px/1.3 "Hanken Grotesk";
    color: var(--ink);
    margin-top: 10px
}

.stat .desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--taupe);
    margin-top: 5px
}

.firm-stats .fine {
    font-size: 12px;
    color: var(--taupe);
    opacity: .85;
    margin-top: 18px
}

@media (max-width: 860px) {
    .stat-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 520px) {
    .stat-grid {
        grid-template-columns:1fr
    }
}
