:root {
    --paper: #e9dec5;
    --paper-deep: #ded0b4;
    --ink: #172c53;
    --soft: #52617c;
    --line: rgba(23, 44, 83, .22);
    --sans: "DM Sans", Arial, sans-serif;
    --serif: "Cormorant Garamond", Georgia, serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px
}

body.disclaimer-open {
    overflow: hidden
}

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 24, 50, .82);
    transition: opacity .25s ease, visibility .25s ease
}

.disclaimer-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.disclaimer-panel {
    width: min(100%, 610px);
    padding: clamp(32px, 6vw, 58px);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .3)
}

.disclaimer-panel .eyebrow { margin-bottom: 18px }

.disclaimer-panel h1 {
    margin: 0 0 24px;
    font: 500 clamp(48px, 6vw, 65px)/.9 var(--serif);
    letter-spacing: -.05em
}

.disclaimer-panel p:not(.eyebrow) {
    margin: 0 0 14px;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.7
}

.disclaimer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.disclaimer-actions button {
    cursor: pointer;
    padding: 14px 18px;
    font: 600 11px/1 var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase
}

.disclaimer-proceed {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper)
}

.disclaimer-leave {
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink)
}

.disclaimer-actions button:focus-visible {
    outline: 3px solid #aa7e38;
    outline-offset: 3px
}

.page-width {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto
}

.site-header {
    height: 92px;
    padding: 0 max(32px, calc((100vw - 1180px)/2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--paper);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10
}

main { padding-top: 92px }

.brand {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font: 600 15px/1 var(--serif);
    letter-spacing: .19em
}

.brand img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.brand i {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0
}

nav {
    display: flex;
    align-items: center;
    gap: 28px
}

nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: opacity .2s
}

nav a:hover {
    opacity: .58
}

.nav-contact {
    border: 1px solid var(--ink);
    padding: 12px 15px
}

.nav-contact span,
.button span,
.text-link span {
    font-size: 16px;
    margin-left: 7px
}

.menu-toggle {
    display: none
}

.hero {
    height: min(710px, calc(100vh - 92px));
    min-height: 580px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #172c53
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 29, 56, .87) 0%, rgba(20, 40, 75, .58) 44%, rgba(20, 40, 75, .17)), url('sample/images/11062b_8d66aa5276ce409f9faa7f49c32422ab~mv2.jpg') center/cover
}

.hero-copy {
    position: relative;
    padding-bottom: 12px
}

.eyebrow,
.section-label {
    margin: 0 0 21px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase
}

.hero h1,
h2 {
    font: 500 clamp(55px, 6.4vw, 88px)/.89 var(--serif);
    letter-spacing: -.055em;
    margin: 0
}

.hero h1 em,
h2 em {
    font-style: italic;
    font-weight: 400
}

.hero-copy>p:not(.eyebrow) {
    max-width: 490px;
    margin: 28px 0 34px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86)
}

.button {
    display: inline-flex;
    align-items: center;
    color: var(--paper);
    background: var(--ink);
    padding: 14px 19px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .2s, background .2s
}

.button:hover {
    transform: translateY(-2px);
}

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

.button-dark {
    background: #172c53;
    
}

.scroll-cue {
    position: absolute;
    right: max(32px, calc((100vw - 1180px)/2));
    bottom: 28px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    writing-mode: vertical-rl
}

.scroll-cue span {
    font-size: 18px;
    margin-top: 10px
}

.intro-section {
    display: grid;
    grid-template-columns: 1fr 1.55fr .8fr;
    gap: 52px;
    padding: 138px 0
}

.section-label {
    padding-top: 10px
}

.intro-copy .lede {
    font: 500 36px/1.08 var(--serif);
    letter-spacing: -.035em;
    margin: 0 0 28px
}

.intro-copy>p:not(.lede),
.heading-row>p,
.industry-copy>p,
.team-inner p {
    color: var(--soft);
    font-size: 15px;
    line-height: 1.75
}

.text-link {
    display: inline-block;
    color: var(--ink);
    margin-top: 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px
}

.portrait-stack {
    position: relative;
    min-height: 280px
}

.portrait-stack img {
    position: absolute;
    object-fit: cover;
    filter: grayscale(100%) sepia(15%)
}

.portrait-stack img:first-child {
    width: 66%;
    height: 205px;
    right: 0;
    top: 0
}

.portrait-stack img:last-child {
    width: 53%;
    height: 160px;
    left: 0;
    bottom: 0
}

.expertise-section {
    background: var(--ink);
    color: var(--paper);
    padding: 126px 0
}

.heading-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
    margin-bottom: 58px
}

.heading-row h2 {
    font-size: 68px
}

.heading-row>p {
    max-width: 310px;
    color: rgba(233, 222, 197, .73);
    margin: 0
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(233, 222, 197, .28);
    border-left: 1px solid rgba(233, 222, 197, .28)
}

.practice-grid article {
    padding: 26px 27px 30px;
    min-height: 248px;
    border-right: 1px solid rgba(233, 222, 197, .28);
    border-bottom: 1px solid rgba(233, 222, 197, .28);
    position: relative
}

.practice-grid span {
    font-size: 10px;
    letter-spacing: .12em;
    opacity: .55
}

.practice-grid h3,
.insight-grid h3 {
    font: 500 30px/1 var(--serif);
    letter-spacing: -.03em;
    margin: 48px 0 14px
}

.practice-grid p {
    font-size: 13px;
    line-height: 1.65;
    max-width: 255px;
    color: rgba(233, 222, 197, .75);
    margin: 0
}

.practice-grid a {
    position: absolute;
    right: 25px;
    bottom: 24px;
    color: var(--paper);
    font-size: 22px;
    text-decoration: none
}

.industries-section {
    padding: 140px 0;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 100px
}

.industry-image img {
    display: block;
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.industry-copy h2 {
    font-size: 65px;
    margin-bottom: 27px
}

.industry-copy ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    border-top: 1px solid var(--line)
}

.industry-copy li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font: 500 23px var(--serif);
    letter-spacing: -.02em
}

.industry-copy li:after {
    float: right;
    font: 16px var(--sans)
}

.team-section {
    background: var(--paper-deep);
    padding: 105px 0
}

.team-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
    column-gap: 100px;
    row-gap: 42px;
    align-items: start
}

.team-inner h2 {
    font-size: 65px
}

.team-inner p {
    margin: 31px 0
}

.founder-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(34px, 7vw, 110px);
    margin-top: 6px;
    padding-top: 42px;
    border-top: 1px solid var(--line)
}

.founder-image {
    display: block;
    width: 100%;
    height: 590px;
    object-fit: cover;
    object-position: center top;
   
}

.founder-details {
    max-width: 520px;
    padding: 12px 0
}

.founder-details .eyebrow { margin: 0 0 13px }

.founder-details h3 {
    margin: 0;
    font: 500 65px/.92 var(--serif);
    letter-spacing: -.035em
}

.founder-role {
    margin: 15px 0 0;
    color: var(--soft)
}

.founder-bio {
    margin: 25px 0 0;
    color: var(--soft);
    font-size: 15px;
    line-height: 1.75
}

.insights-section {
    padding: 132px 0
}

.insights-section>h2 {
    font-size: 67px;
    margin-bottom: 55px
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.insight-grid article {
    border-top: 1px solid var(--ink);
    padding: 19px 0 30px
}

.insight-grid article>p {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .17em;
    margin: 0
}

.insight-grid h3 {
    max-width: 430px;
    margin: 76px 0 42px
}

.insight-grid a {
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase
}

.contact-section {
    background: var(--ink);
    color: var(--paper);
    padding: 119px 0
}

.contact-section h2 {
    font-size: 76px
}

.contact-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin: 40px 0 33px
}

.contact-details>* {
    color: var(--paper);
    text-decoration: none;
    font: 400 20px var(--serif);
    margin: 0
}

.contact-details p {
    opacity: .65
}

footer {
    padding: 34px 0;
    background: #112447;
    color: var(--paper)
}

footer .page-width {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

footer .brand {
    color: var(--paper)
}

footer .brand img {
    filter: brightness(0) invert(1)
}

footer p,
footer>a {
    font-size: 10px;
    color: rgba(233, 222, 197, .72);
    letter-spacing: .08em;
    text-decoration: none
}

@media(max-width:800px) {
    .page-width {
        width: calc(100% - 40px)
    }

    .site-header {
        height: 72px;
        padding: 0 20px
    }

    main { padding-top: 72px }

    .brand {
        font-size: 13px
    }

    .brand img {
        width: 29px;
        height: 29px
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 3px;
        border: 0;
        background: none;
        color: var(--ink);
        padding: 8px 0;
        font-size: 9px;
        letter-spacing: .12em
    }

    .menu-toggle span {
        display: block;
        width: 15px;
        height: 1px;
        background: var(--ink)
    }

    .menu-toggle b {
        margin-left: 7px;
        font-weight: 600
    }

    nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 22px 20px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(23, 44, 83, .12)
    }

    nav.open {
        display: flex
    }

    .nav-contact {
        padding: 9px 12px
    }

    .hero {
        height: 650px;
        min-height: 0
    }

    .hero-copy {
        padding-bottom: 25px
    }

    .hero h1 {
        font-size: 61px
    }

    .scroll-cue {
        right: 18px
    }

    .intro-section {
        grid-template-columns: 1fr;
        padding: 78px 0;
        gap: 22px
    }

    .section-label {
        padding: 0
    }

    .intro-copy .lede {
        font-size: 31px
    }

    .portrait-stack {
        display: none
    }

    .expertise-section {
        padding: 76px 0
    }

    .heading-row {
        display: block;
        margin-bottom: 40px
    }

    .heading-row h2,
    .industry-copy h2,
    .team-inner h2,
    .insights-section>h2 {
        font-size: 52px
    }

    .heading-row>p {
        margin-top: 22px
    }

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

    .practice-grid article {
        min-height: 210px
    }

    .industries-section {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 80px 0
    }

    .industry-image img {
        height: 390px
    }

    .team-section {
        padding: 76px 0
    }

    .team-inner {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .team-inner p {
        margin-top: 0
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 10px;
        padding-top: 28px
    }

    .founder-image { height: 390px }

    .founder-details h3 { font-size: 52px }

    .insights-section {
        padding: 76px 0
    }

    .insight-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .insight-grid h3 {
        margin: 45px 0 30px
    }

    .contact-section {
        padding: 76px 0
    }

    .contact-section h2 {
        font-size: 55px
    }

    .contact-details {
        display: block;
        margin: 28px 0
    }

    .contact-details>* {
        display: block;
        margin: 10px 0;
        font-size: 19px
    }

    footer .page-width { justify-content: center }
}
