:root {
    color-scheme: light;
    --ink: #102738;
    --muted: #526776;
    --blue: #136382;
    --line: #d9e2e5;
    --paper: #f8faf9;
    --white: #fff;
    --accent: #a8d4cf
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 1rem/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

a {
    color: #075676;
    text-underline-offset: .2em
}

a:hover {
    color: #003e57
}

a:focus-visible {
    outline: 3px solid #e49b37;
    outline-offset: 4px;
    border-radius: 2px
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #fff;
    padding: .6rem 1rem;
    z-index: 10
}

.skip-link:focus {
    top: 1rem
}

.site-header {
    background: #102738;
    color: #fff;
    border-bottom: 4px solid var(--accent)
}

.header-inner,
.footer-inner {
    max-width: 1180px;
    margin: auto;
    padding: 1.2rem clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 720;
    letter-spacing: -.03em;
    line-height: 1.2;
    white-space: nowrap
}

.brand:hover {
    color: #fff
}

.brand small {
    display: block;
    margin-top: .25rem;
    color: #b7d4da;
    font-size: .75rem;
    font-weight: 550;
    letter-spacing: .12em;
    text-transform: uppercase
}

.brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 1px solid #83b5ba;
    color: #bde5df;
    font: 600 1rem Georgia, serif;
    letter-spacing: -.05em
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .2rem 1.05rem
}

.primary-nav a {
    color: #d4e3e6;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    padding: .2rem 0
}

.primary-nav a:hover,
.primary-nav a[aria-current] {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: .45em
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.2rem clamp(1rem, 4vw, 2rem) 5rem
}

.breadcrumbs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 2.2rem
}

.breadcrumbs a {
    color: var(--muted)
}

.page-heading {
    max-width: 850px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.5rem;
    margin: 0 0 2rem
}

.eyebrow {
    font-size: .75rem !important;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 750;
    color: #0e6980;
    line-height: 1.5
}

.page-heading h1 {
    font: normal clamp(2.7rem, 6vw, 5.6rem)/1.06 Georgia, "Times New Roman", serif;
    letter-spacing: -.05em;
    margin: .55rem 0 .25rem;
    text-wrap: balance
}

.page-body {
    max-width: 920px
}

.page-body>p,
.content-section>p {
    max-width: 760px
}

p {
    margin: 0 0 1.35rem
}

.intro {
    font: normal clamp(1.35rem, 2.4vw, 1.75rem)/1.45 Georgia, serif;
    color: #173b4b
}

.home-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(240px, .9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start
}

.focus-panel {
    background: #e6f0ef;
    border-left: 4px solid #187d85;
    padding: 1.5rem;
    margin-top: .2rem
}

.focus-panel strong {
    display: block;
    font: normal 1.45rem/1.3 Georgia, serif;
    margin: .8rem 0
}

.focus-panel p {
    font-size: .95rem;
    margin: 0
}

.actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.7rem 0
}

.actions a {
    background: #10546c;
    color: #fff;
    padding: .6rem 1rem;
    text-decoration: none;
    font-weight: 650
}

.actions a+a {
    background: transparent;
    color: #10546c;
    border: 1px solid #8db0b8
}

.content-section {
    border-top: 1px solid var(--line);
    margin: 3.1rem 0 0;
    padding-top: 1.5rem
}

.content-section h2 {
    font: normal clamp(1.7rem, 3vw, 2.25rem)/1.2 Georgia, serif;
    letter-spacing: -.025em;
    margin: 0 0 1.1rem
}

.content-section h3 {
    font-size: 1.12rem;
    line-height: 1.3;
    margin: .4rem 0 .6rem
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    min-height: 230px
}

.card h3 a {
    color: var(--ink);
    text-decoration: none
}

.card h3 a:hover {
    text-decoration: underline
}

.card p {
    color: #3d5663;
    font-size: .96rem
}

.card .text-link {
    margin-top: auto;
    font-weight: 650;
    font-size: .9rem
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem
}

.capability-grid h3 {
    border-left: 3px solid #64a7a7;
    padding-left: .65rem
}

.visual-placeholder {
    margin: 2rem 0;
    min-height: 250px;
    background: repeating-linear-gradient(0deg, #e6eeee, #e6eeee 1px, #f4f8f7 1px, #f4f8f7 35px);
    border: 1px solid #c7d9d9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #305465
}

.visual-placeholder span {
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .2em
}

.visual-placeholder strong {
    font: normal 1.6rem Georgia, serif;
    margin: .5rem 0
}

.visual-placeholder small {
    font-size: .8rem
}

.project-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
}

.external-links {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.external-links a {
    padding: .65rem 1rem;
    background: #e6f0ef
}

.quiet {
    color: var(--muted);
    font-style: italic
}

.footer {
    background: #102738;
    color: #d6e4e7
}

.footer-inner {
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.footer a {
    color: #d6e4e7
}

.footer p {
    margin: .4rem 0
}

.footer small {
    color: #abc3c8
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media(max-width:850px) {
    .header-inner {
        display: block
    }

    .primary-nav {
        justify-content: flex-start;
        margin-top: 1.3rem;
        gap: .5rem 1rem
    }

    .home-lead {
        grid-template-columns: 1fr
    }

    .focus-panel {
        max-width: 600px
    }

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

@media(max-width:600px) {
    .container {
        padding-top: 1.4rem;
        padding-bottom: 3.5rem
    }

    .breadcrumbs {
        margin-bottom: 1.5rem
    }

    .cards,
    .capability-grid {
        grid-template-columns: 1fr
    }

    .card {
        min-height: 0
    }

    .footer-inner {
        display: block
    }

    .primary-nav {
        gap: .4rem .9rem
    }

    .primary-nav a {
        font-size: .84rem
    }

    .page-heading h1 {
        font-size: clamp(2.55rem, 11vw, 4rem)
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
}

