@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --blue: #005a9c;
    --blue-dark: #063b66;
    --ink: #142534;
    --muted: #66727c;
    --cream: #f5f2ec;
    --line: #dfe4e7;
    --white: #fff;
    --soft-blue: #eef5f9;
    --shadow: 0 16px 45px rgba(20, 37, 52, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.65;
    background: #fff
}

a {
    color: inherit;
    text-decoration: none
}

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

.container {
    width: min(1160px, calc(100% - 48px));
    margin: auto
}

.eyebrow,
.kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(20, 37, 52, .09);
    backdrop-filter: blur(12px)
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand-logo {
    width: 205px;
    height: auto
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600
}

.nav a:not(.nav-cta) {
    color: #344451;
    padding: 32px 0;
    border-bottom: 2px solid transparent
}

.nav a:not(.nav-cta):hover,
.nav a.active {
    color: var(--blue);
    border-color: var(--blue)
}

.nav-cta {
    padding: 11px 19px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 90, 156, .18)
}

.mobile-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
    color: var(--ink)
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
    color: #fff
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 32, 54, .9) 0%, rgba(3, 32, 54, .72) 43%, rgba(3, 32, 54, .25) 100%)
}

.hero-image {
    position: absolute;
    inset: 0
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    padding: 90px 0
}

.hero .eyebrow {
    color: #bcd8ea
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(42px, 5.3vw, 70px);
    line-height: 1.08;
    font-weight: 500;
    margin: 18px 0 22px;
    max-width: 780px
}

.hero p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
    max-width: 720px;
    margin: 0
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 21px;
    border-radius: 4px;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 90, 156, .16)
}

.button.light {
    background: #fff;
    border-color: #fff;
    color: var(--blue-dark)
}

.button.outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue)
}

.hero .button.outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .6)
}

.section {
    padding: 100px 0
}

.section.cream {
    background: var(--cream)
}

.section.soft {
    background: var(--soft-blue)
}

.section-header {
    max-width: 760px;
    margin-bottom: 48px
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.18;
    font-weight: 500;
    margin: 12px 0 18px;
    color: var(--ink)
}

.section-header p {
    font-size: 17px;
    color: var(--muted);
    margin: 0
}

.lead {
    font-size: 19px;
    color: #40515d
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center
}

.statement {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 29px;
    line-height: 1.4;
    color: var(--blue-dark);
    padding-left: 32px;
    border-left: 3px solid var(--blue)
}

.stats-section .container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.stats-heading {
    width: 100%;
    text-align: center;
    margin: 0 0 36px
}

.stats {
    width: 100%;
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stat {
    padding: 48px 24px 44px;
    text-align: center;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 225px
}

.stat:last-child {
    border-right: 0
}

.stat strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 50px;
    color: var(--blue);
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -.02em
}

.stat strong .counter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 50px;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.1
}

.stat>span:not(.counter) {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
    max-width: 100%
}

.stats+* {}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 31px;
    box-shadow: 0 4px 18px rgba(20, 37, 52, .025)
}

.card h3,
.service h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    line-height: 1.25;
    margin: 11px 0 9px
}

.card p,
.service p {
    color: var(--muted);
    margin: 0
}

.number {
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--blue)
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700
}

.story-image {
    height: 520px;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow)
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px
}

.experience-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #40515d
}

.check {
    color: var(--blue);
    font-weight: 800
}

.people {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.person {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 300px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden
}

.person-photo {
    height: 100%;
    min-height: 300px;
    background: var(--soft-blue);
    overflow: hidden
}

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

.person-photo.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    color: #9bb4c5
}

.person-body {
    padding: 31px
}

.person-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--blue)
}

.person h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 29px;
    margin: 7px 0 10px
}

.person-body p {
    color: var(--muted);
    margin: 0
}

.credentials {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: #53616b
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.pill {
    border: 1px solid #cbd7de;
    background: #fff;
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 14px;
    color: #3c4c58
}

.service {
    background: #fff;
    border: 1px solid var(--line);
    padding: 35px
}

.service ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none
}

.service li {
    padding: 8px 0;
    border-top: 1px solid #edf0f2;
    color: #4c5b65
}

.service li:before {
    content: '✓';
    color: var(--blue);
    font-weight: 800;
    margin-right: 9px
}

.service-tag {
    display: inline-block;
    margin-top: 22px;
    padding: 6px 10px;
    background: var(--soft-blue);
    color: var(--blue-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800
}

.page-hero {
    background: var(--blue-dark);
    color: #fff;
    padding: 90px 0
}

.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.12;
    max-width: 800px;
    margin: 14px 0
}

.page-hero p {
    max-width: 760px;
    font-size: 18px;
    color: rgba(255, 255, 255, .82);
    margin: 0
}

.page-hero .eyebrow {
    color: #bcd8ea
}

.narrow {
    max-width: 820px
}

.narrow h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    margin-top: 40px
}

.narrow p {
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.contact-item strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-item a {
    color: var(--blue);
    font-weight: 700
}

form {
    background: var(--cream);
    padding: 34px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #344451
}

input,
textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid #ccd5da;
    border-radius: 3px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
    color: var(--ink)
}

textarea {
    min-height: 150px;
    resize: vertical
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 13px
}

footer {
    background: #102a40;
    color: #d8e1e7;
    padding: 60px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 29px;
    color: #fff;
    margin-bottom: 9px
}

.footer-grid h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff
}

.footer-grid p,
.footer-grid div {
    font-size: 14px;
    color: #b9c7d0
}

.footer-grid a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 45px;
    padding-top: 20px;
    font-size: 12px;
    color: #91a3af
}

@media(max-width:950px) {
    .nav {
        gap: 17px
    }

    .brand-logo {
        width: 175px
    }

    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .stats {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .stat {
        padding: 42px 18px
    }

    .stat strong,
    .stat strong .counter {
        font-size: 50px
    }

    .stat>span:not(.counter) {
        font-size: 19px
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 32px, 1160px)
    }

    .header-inner {
        height: 76px
    }

    .mobile-toggle {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px 16px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
    }

    .nav.open {
        display: flex
    }

    .nav a:not(.nav-cta) {
        padding: 12px 5px
    }

    .nav-cta {
        text-align: center;
        margin-top: 7px
    }

    .hero {
        min-height: 600px
    }

    .hero-content {
        padding: 80px 0
    }

    .hero h1 {
        font-size: 43px
    }

    .hero p {
        font-size: 17px
    }

    .section {
        padding: 72px 0
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .experience-list,
    .form-row {
        grid-template-columns: 1fr
    }

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

    .stat {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
        min-height: 190px;
        padding: 42px 16px
    }

    .stat strong,
    .stat strong .counter {
        font-size: 50px
    }

    .stat>span:not(.counter) {
        font-size: 19px;
        margin-top: 8px
    }

    .stat:last-child {
        border-bottom: 0
    }

    .person {
        grid-template-columns: 120px 1fr
    }

    .person-photo {
        min-height: 280px
    }

    .person-body {
        padding: 22px
    }

    .person h3 {
        font-size: 24px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column
    }

    .story-image {
        height: 380px
    }
}

.stats-section .section-header {
    margin-bottom: 52px
}

.stats-section .section-header+.stats-heading {
    margin-top: 0
}

.counter {
    display: inline-block;
    min-width: 1ch;
    font-variant-numeric: tabular-nums;
    will-change: contents
}

.contact-map {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    margin-top: 32px;
}

@media(max-width:700px) {
    .contact-map {
        height: 300px;
    }
}
