/* Eagle Distribution — original brand assets, locally served styles. */
:root {
    --ink: #142f3c;
    --navy: #103746;
    --deep: #092a38;
    --teal: #0b6c75;
    --lime: #d1e79c;
    --paper: #f4f6f3;
    --muted: #5b6b70;
    --line: #dce3df;
    --white: #fff;
    --max: 1280px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI",Arial,sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

button, input, textarea, select {
    font: inherit
}

button, a, input, textarea, select, summary {
    -webkit-tap-highlight-color: transparent
}

button {
    cursor: pointer
}

img {
    max-width: 100%;
    display: block
}

svg {
    display: block
}

h1, h2, h3, p {
    margin: 0
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.045em
}

h1 {
    font-size: clamp(44px,4.8vw,72px)
}

h2 {
    font-size: clamp(32px,3.3vw,48px)
}

h3 {
    font-size: 25px;
    letter-spacing: -.025em
}

p {
    color: var(--muted);
    margin-top: 18px
}

    p:first-child {
        margin-top: 0
    }

em {
    font-style: normal;
    color: var(--lime)
}

::selection {
    background: var(--lime);
    color: var(--deep)
}

:focus-visible {
    outline: 3px solid #b58e17;
    outline-offset: 5px
}

section[id] {
    scroll-margin-top: 25px
}

.container {
    width: calc(100% - 112px);
    max-width: var(--max);
    margin-inline: auto
}

.section {
    padding: 96px 0
}

.section-muted {
    background: var(--paper)
}

.section-dark {
    background: var(--navy);
    color: #fff
}

    .section-dark p {
        color: #c7d8dd
    }

    .section-dark .lead {
        color: #f2f7f7
    }

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    background: var(--lime);
    padding: 12px 24px;
    z-index: 1000
}

    .skip-link:focus {
        top: 10px
    }

.eyebrow {
    font-size: 11px;
    letter-spacing: .17em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--teal);
    display: block;
    margin-bottom: 22px
}

    .eyebrow.light {
        color: #cce2df
    }

    .eyebrow > span {
        display: inline-block;
        width: 7px;
        height: 7px;
        background: var(--lime);
        border-radius: 50%;
        margin-right: 10px;
        vertical-align: 1px
    }

.lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -.015em
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 52px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: background .2s,transform .2s,color .2s;
    cursor: pointer;
    text-align: center;
    white-space: normal
}

    .button:hover {
        transform: translateY(-2px)
    }

    .button span {
        font-size: 22px;
        font-weight: 400;
        line-height: 1
    }

.button-dark {
    background: var(--navy);
    color: #fff
}

    .button-dark:hover {
        background: var(--teal)
    }

.button-lime {
    background: var(--lime);
    color: var(--deep)
}

    .button-lime:hover {
        background: #e1f2bd
    }

.button-outline {
    border-color: #bccbc7;
    background: transparent;
    color: var(--ink)
}

    .button-outline:hover {
        border-color: var(--teal);
        background: var(--paper)
    }

.button-row {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 32px
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid #a8b8b3;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 20px
}

    .text-link span {
        font-size: 22px;
        line-height: 1
    }

    .text-link:hover {
        color: var(--teal);
        border-color: var(--teal)
    }

.light-link {
    color: #fff;
    border-color: #728e96
}

    .light-link:hover {
        color: var(--lime);
        border-color: var(--lime)
    }
/* Site navigation */
.utility-bar {
    background: var(--deep);
    color: #d9e5e7;
    font-size: 11px;
    letter-spacing: .03em
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 20px
}

    .utility-inner > span, .utility-inner > div {
        display: flex;
        align-items: center;
        gap: 13px
    }

    .utility-inner a:hover {
        color: var(--lime)
    }

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--lime)
}

.utility-divider {
    height: 11px;
    width: 1px;
    background: #53707a;
    margin-inline: 4px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(20,47,60,.08)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    height: 98px
}

.brand {
    width: 224px;
    flex-shrink: 0
}

    .brand img {
        width: 224px;
        height: auto
    }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 29px
}

    .primary-nav > a {
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        position: relative
    }

        .primary-nav > a:not(.button) {
            padding-block: 14px
        }

            .primary-nav > a:not(.button):after {
                content: "";
                position: absolute;
                bottom: 7px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--teal);
                transition: width .2s
            }

        .primary-nav > a:hover:after, .primary-nav > a.active:after {
            width: 100%
        }

    .primary-nav > .nav-contact {
        margin-left: 5px;
        gap: 30px;
        padding: 11px 21px;
        min-height: 46px
    }

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    width: 44px;
    height: 44px;
    padding: 10px
}

    .menu-toggle span {
        display: block;
        height: 2px;
        background: var(--ink);
        margin: 4px 0
    }
/* Homepage */
.home-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--deep);
    color: #fff;
    display: flex;
    align-items: center
}

.hero-photo {
    position: absolute;
    width: 78%;
    height: 100%;
    right: 0;
    top: 0;
    object-fit: cover;
    object-position: center 58%
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#0a2b39 2%,rgba(10,43,57,.97) 24%,rgba(10,43,57,.88) 36%,rgba(10,43,57,.47) 57%,rgba(10,43,57,.04) 82%),linear-gradient(0deg,rgba(7,25,36,.55),transparent 40%)
}

.hero-content {
    position: relative;
    padding-top: 74px;
    padding-bottom: 70px;
    z-index: 1
}

    .hero-content h1 {
        max-width: 760px;
        line-height: 1.06;
        letter-spacing: -.052em
    }

    .hero-content .eyebrow {
        margin-bottom: 29px
    }

    .hero-content p {
        max-width: 485px;
        color: #d5e1e5;
        font-size: 17px;
        line-height: 1.75;
        margin-top: 27px
    }

.hero-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #76939e;
    padding-block: 10px;
    display: flex;
    gap: 24px;
    align-items: center
}

    .hero-link:hover {
        color: var(--lime)
    }

.hero-location {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 52px;
    font-size: 11px;
    color: #c4d7db;
    letter-spacing: .02em
}

    .hero-location > span {
        font-size: 19px;
        color: var(--lime)
    }

.hero-caption {
    position: absolute;
    bottom: 32px;
    right: 4%;
    font-size: 9px;
    letter-spacing: .13em;
    color: #fff;
    display: flex;
    gap: 12px;
    align-items: center
}

.caption-line {
    display: block;
    background: var(--lime);
    width: 35px;
    height: 1px
}

.stat-strip {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-block: 33px
}

    .stats-grid > div {
        display: flex;
        flex-direction: column;
        padding-left: 48px;
        border-left: 1px solid var(--line);
        gap: 3px
    }

        .stats-grid > div:first-child {
            padding-left: 0;
            border: 0
        }

    .stats-grid strong {
        font-size: 38px;
        line-height: 1.2;
        letter-spacing: -.055em;
        font-weight: 600
    }

        .stats-grid strong > span {
            font-size: 25px
        }

    .stats-grid > div > span {
        font-size: 12px;
        color: var(--muted)
    }

.split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start
}

    .split-intro > div > p {
        max-width: 560px
    }

.intro-section {
    padding-block: 88px
}

.intro-copy {
    padding-top: 7px
}

    .intro-copy p + p {
        margin-top: 18px
    }

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 70px;
    margin-bottom: 44px
}

    .section-heading > p {
        max-width: 390px;
        margin: 0
    }

    .section-heading > .text-link {
        flex-shrink: 0;
        margin-bottom: 5px
    }

    .section-heading .eyebrow {
        margin-bottom: 18px
    }

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.capability-card {
    position: relative;
    border: 1px solid var(--line);
    background: #fff;
    padding: 29px 25px 82px;
    min-height: 365px;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow .2s,transform .2s
}

    .capability-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(18,48,55,.08)
    }

.card-number {
    display: block;
    font-size: 10px;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 28px
}

.service-icon {
    width: 53px;
    height: 53px;
    stroke: var(--teal);
    stroke-width: 1.5;
    margin: 31px 0 27px
}

.capability-card h3 {
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -.045em
}

.capability-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 16px
}

.circle-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid #ccd6d2;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    position: absolute;
    bottom: 24px;
    right: 24px
}

.photo-card {
    color: #fff;
    padding: 0
}

    .photo-card > img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 54% center
    }

    .photo-card:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,rgba(7,35,47,.97) 5%,rgba(7,35,47,.65) 48%,rgba(7,35,47,.12))
    }

.photo-card-content {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 29px 25px 82px
}

.photo-card .card-number {
    color: #e0ebeb;
    margin-bottom: 122px
}

.photo-card p {
    color: #d2e1e4
}

.photo-card .circle-arrow {
    border-color: #8ca5ac;
    color: var(--lime)
}

.image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px
}

.image-frame {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: var(--paper)
}

    .image-frame img {
        width: 100%;
        height: 450px;
        object-fit: cover
    }

.image-label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    padding: 12px 18px;
    background: rgba(9,42,56,.91);
    color: #fff;
    font-size: 11px;
    letter-spacing: .035em;
    backdrop-filter: blur(8px);
    border-radius: 3px
}

.check-list {
    padding: 0;
    list-style: none;
    margin: 25px 0 0
}

    .check-list li {
        position: relative;
        padding: 10px 0 10px 29px;
        border-bottom: 1px solid #e5eae7;
        font-size: 14px
    }

        .check-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            color: var(--teal);
            font-weight: 700
        }

.sector-band {
    background: var(--navy);
    color: #fff;
    padding-block: 47px
}

    .sector-band .eyebrow {
        margin-bottom: 23px
    }

.sector-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

    .sector-list > span {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -.025em
    }

.coverage-panel {
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 29px;
    background: var(--paper)
}

.coverage-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line)
}

    .coverage-heading .status-dot {
        background: var(--teal)
    }

    .coverage-heading > span:last-child {
        margin-left: auto;
        color: var(--muted);
        font-size: 10px
    }

.province-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-block: 27px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.025em
}

    .province-grid > span:before {
        content: "↗";
        color: var(--teal);
        margin-right: 12px;
        font-size: 15px
    }

.coverage-footer {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

    .coverage-footer > span {
        font-size: 11px;
        color: var(--muted)
    }

    .coverage-footer strong {
        font-size: 13px;
        font-weight: 500
    }

.cta-section {
    background: var(--lime);
    padding-block: 62px
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
}

    .cta-inner h2 {
        font-size: clamp(30px,3.2vw,46px)
    }

    .cta-inner .eyebrow {
        margin-bottom: 16px;
        color: #345348
    }

    .cta-inner .button {
        flex-shrink: 0;
        min-width: 210px
    }

.data-note {
    font-size: 11px;
    color: var(--muted);
    padding-block: 18px;
    line-height: 1.6
}
/* Inner pages */
.page-hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 37px 0 75px;
    overflow: hidden
}

    .page-hero:after {
        content: "";
        pointer-events: none;
        position: absolute;
        width: 550px;
        height: 550px;
        border: 1px solid rgba(183,215,209,.09);
        border-radius: 50%;
        right: -150px;
        top: -160px;
        box-shadow: 0 0 0 80px rgba(183,215,209,.025),0 0 0 160px rgba(183,215,209,.02)
    }

    .page-hero > .container {
        position: relative;
        z-index: 1
    }

    .page-hero h1 {
        font-size: clamp(42px,4.5vw,66px);
        max-width: 960px
    }

    .page-hero p {
        max-width: 650px;
        font-size: 17px;
        color: #c6dadd;
        margin-top: 25px
    }

    .page-hero .button {
        margin-top: 30px
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #b6ced3;
    margin-bottom: 43px
}

    .breadcrumb a:hover {
        color: var(--lime)
    }

    .breadcrumb > span {
        color: #789ba5
    }

.compact-hero {
    padding-bottom: 55px
}

    .compact-hero h1 {
        font-size: 50px
    }

.three-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.value-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px
}

    .value-card .card-number {
        margin-bottom: 35px
    }

    .value-card p {
        font-size: 14px
    }

.footprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden
}

    .footprint-grid article {
        padding: 35px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line)
    }

.pill {
    display: inline-block;
    background: #eaf0eb;
    color: #31534d;
    font-size: 9px;
    letter-spacing: .065em;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 3px
}

.footprint-grid h3 {
    margin-top: 25px;
    font-size: 24px
}

.footprint-grid p {
    font-size: 14px
}

.credential-section {
    background: var(--navy);
    padding: 76px 0;
    color: #fff
}

.credential-inner {
    display: grid;
    grid-template-columns: .75fr 1.4fr;
    gap: 100px;
    align-items: center
}

.credential-mark {
    border: 1px solid #54777f;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--lime);
    position: relative
}

    .credential-mark:before, .credential-mark:after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 2px solid var(--lime)
    }

    .credential-mark:before {
        left: -2px;
        top: -2px;
        border-right: 0;
        border-bottom: 0
    }

    .credential-mark:after {
        right: -2px;
        bottom: -2px;
        border-left: 0;
        border-top: 0
    }

    .credential-mark strong {
        font-size: 64px;
        letter-spacing: -.05em;
        font-weight: 500
    }

    .credential-mark span {
        font-size: 10px;
        letter-spacing: .17em;
        margin-top: 8px
    }

.credential-inner p {
    color: #c6d8da;
    font-size: 14px;
    max-width: 600px
}

.section-nav {
    border-bottom: 1px solid var(--line);
    background: #fff
}

    .section-nav > .container {
        display: flex;
        gap: 50px;
        overflow-x: auto
    }

    .section-nav a {
        font-size: 12px;
        font-weight: 600;
        padding-block: 23px;
        white-space: nowrap
    }

        .section-nav a:hover {
            color: var(--teal)
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 42px
}

.product-card {
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 5px;
    position: relative
}

    .product-card .eyebrow {
        margin: 30px 0 12px
    }

    .product-card h3 {
        font-size: 25px
    }

    .product-card p {
        font-size: 14px
    }

.product-symbol {
    display: grid;
    place-items: center;
    width: 46px;
    height: 53px;
    background: #edf2ec;
    border-radius: 7px 7px 18px 18px;
    font-size: 23px;
    font-weight: 500;
    color: var(--teal)
}

.wide-image {
    border-radius: 5px;
    overflow: hidden
}

    .wide-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center 53%
    }

.service-details {
    margin-top: 34px
}

    .service-details article {
        padding-right: 27px;
        border-right: 1px solid var(--line)
    }

        .service-details article:last-child {
            border-right: 0
        }

    .service-details .card-number {
        margin-bottom: 16px
    }

    .service-details p {
        font-size: 14px
    }

.inline-note {
    padding: 28px 32px;
    border-left: 3px solid var(--teal);
    background: var(--paper);
    margin-top: 40px
}

    .inline-note p {
        font-size: 14px;
        margin-top: 10px;
        max-width: 950px
    }

    .inline-note .text-link {
        margin-top: 9px
    }

.accordion details {
    border-bottom: 1px solid var(--line)
}

    .accordion details:first-child {
        border-top: 1px solid var(--line)
    }

.accordion summary {
    padding: 22px 30px 22px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-weight: 600;
    font-size: 17px
}

    .accordion summary::-webkit-details-marker {
        display: none
    }

    .accordion summary:after {
        content: "+";
        position: absolute;
        right: 3px;
        font-size: 23px;
        font-weight: 400;
        top: 16px
    }

.accordion details[open] summary:after {
    content: "−"
}

.accordion details p {
    font-size: 14px;
    padding: 0 25px 24px 0;
    margin: 0
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.experience-card {
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden
}

    .experience-card > img, .technology-art {
        width: 100%;
        height: 230px;
        object-fit: cover
    }

    .experience-card > div:not(.technology-art) {
        padding: 29px
    }

    .experience-card .eyebrow {
        font-size: 10px;
        margin-bottom: 18px
    }

    .experience-card p {
        font-size: 14px
    }

    .experience-card .small-label {
        display: block;
        margin-top: 23px
    }

.small-label {
    font-size: 10px;
    letter-spacing: .04em;
    color: var(--muted);
    font-weight: 500
}

.technology-art {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background: var(--navy);
    color: var(--lime);
    overflow: hidden
}

    .technology-art > span {
        font-size: 47px;
        font-weight: 600;
        letter-spacing: -.055em;
        position: relative;
        z-index: 1
    }

        .technology-art > span > span {
            font-weight: 300;
            color: #fff;
            margin-left: 5px
        }

    .technology-art small {
        position: relative;
        font-size: 8px;
        letter-spacing: .17em;
        margin-top: 8px;
        color: #c5d8d9
    }

.art-ring {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid #3a626e;
    border-radius: 50%;
    top: -90px;
    right: -70px;
    box-shadow: 0 0 0 35px rgba(58,98,110,.2),0 0 0 70px rgba(58,98,110,.1)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 23px
}

.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column
}

.team-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 29px
}

.initials {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaf0e9;
    color: var(--teal);
    font-size: 15px
}

.team-top .small-label {
    font-size: 8px;
    letter-spacing: .07em
}

.team-card h3 {
    font-size: 22px
}

.team-role {
    font-size: 12px;
    color: var(--teal);
    display: block;
    margin-top: 12px;
    line-height: 1.5;
    font-weight: 600
}

.team-card p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 24px
}

.skill-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto
}

    .skill-tags span {
        font-size: 9px;
        padding: 4px 7px;
        background: var(--paper);
        border-radius: 2px;
        color: #49625d
    }

.reference-list {
    margin-top: 48px;
    border-top: 1px solid var(--line)
}

    .reference-list article {
        display: grid;
        grid-template-columns: 100px 1fr auto;
        gap: 35px;
        align-items: start;
        padding: 28px 0;
        border-bottom: 1px solid var(--line)
    }

        .reference-list article > span:first-child {
            font-size: 17px;
            color: var(--teal)
        }

    .reference-list h3 {
        font-size: 22px
    }

    .reference-list p {
        font-size: 14px;
        margin-top: 10px
    }

.feature-grid {
    margin-top: 40px
}

    .feature-grid h3 {
        font-size: 24px
    }

.process-flow {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--line)
}

    .process-flow article {
        padding: 33px 30px 0 0;
        position: relative
    }

        .process-flow article:before {
            content: "";
            position: absolute;
            top: -5px;
            left: 0;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--teal)
        }

        .process-flow article > span {
            font-size: 12px;
            color: var(--teal)
        }

    .process-flow h3 {
        margin-top: 20px
    }

    .process-flow p {
        font-size: 14px;
        max-width: 220px
    }

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px
}

.resource-card {
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.document-cover {
    padding: 30px;
    background: #e9f0ed;
    min-height: 275px;
    display: flex;
    flex-direction: column;
    position: relative
}

    .document-cover > img {
        width: 150px;
        height: auto;
        margin-bottom: 30px
    }

    .document-cover > strong {
        font-size: 36px;
        letter-spacing: -.045em;
        line-height: 1.1;
        font-weight: 500
    }

    .document-cover > span:last-child {
        font-size: 8px;
        letter-spacing: .16em;
        margin-top: auto;
        padding-top: 25px
    }

.overview-cover {
    color: #fff;
    background: var(--navy)
}

.certificate-cover {
    background: var(--lime);
    justify-content: center
}

    .certificate-cover > strong {
        font-size: 68px
    }

    .certificate-cover > .eyebrow {
        margin-bottom: 30px
    }

    .certificate-cover > span:last-child {
        margin-top: 0
    }

.resource-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

    .resource-body h3 {
        font-size: 24px;
        margin-top: 18px
    }

    .resource-body p {
        font-size: 14px;
        margin-bottom: 26px
    }

    .resource-body .button {
        margin-top: auto;
        font-size: 12px;
        padding-inline: 16px;
        gap: 10px;
        justify-content: space-between
    }

.download-link {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 4px
}

.prose {
    max-width: 850px
}

    .prose h2 {
        font-size: 28px;
        margin-top: 42px
    }

        .prose h2:first-child {
            margin-top: 0
        }

    .prose p {
        font-size: 16px
    }

    .prose a {
        color: var(--teal);
        text-decoration: underline;
        text-underline-offset: 3px
    }
/* Contact details */
.contact-details {
    max-width: 1040px
}

    .contact-details h2 {
        margin-bottom: 36px
    }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--paper)
}

    .contact-item > div {
        min-width: 0
    }

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--teal);
    font-size: 20px
}

.contact-item h3 {
    font-size: 12px;
    letter-spacing: .02em;
    margin-bottom: 15px;
    color: var(--muted)
}

.contact-item a {
    overflow-wrap: anywhere
}

.contact-primary {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -.025em;
    font-weight: 600
}

.contact-email {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500
}

.contact-item p {
    font-size: 14px;
    margin-top: 8px
}

.contact-item .text-link {
    font-size: 12px;
    margin-top: 14px
}

@media(max-width:800px) {
    .contact-cards {
        grid-template-columns: 1fr
    }

    .contact-item {
        padding: 28px
    }
}

@media(max-width:550px) {
    .contact-item {
        padding: 23px 20px;
        gap: 15px
    }

    .contact-primary {
        font-size: 25px
    }

    .contact-email {
        font-size: 18px
    }

    .contact-details h2 {
        margin-bottom: 28px
    }
}
/* Footer */
.site-footer {
    background: var(--deep);
    color: #dce8e8;
    padding: 66px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 55px;
    padding-bottom: 55px
}

.footer-brand img {
    width: 224px;
    height: auto
}

.footer-brand p {
    font-size: 13px !important;
    max-width: 245px;
    margin-top: 22px
}

.footer-badge {
    display: inline-block;
    font-size: 9px;
    letter-spacing: .045em;
    border: 1px solid #53716d;
    border-radius: 3px;
    padding: 7px 10px;
    color: var(--lime);
    margin-top: 18px
}

.footer-top h2 {
    font-size: 11px;
    letter-spacing: .05em;
    color: #fff;
    margin: 6px 0 22px;
    font-weight: 600
}

.footer-top > div > a:not(:first-child) {
    display: block;
    font-size: 12px;
    margin: 11px 0;
    color: #bfd0d4
}

.footer-top p {
    font-size: 12px;
    color: #a9c0c7;
    line-height: 1.9
}

.footer-top > div:not(.footer-brand) > a {
    overflow-wrap: anywhere
}

.footer-top a:hover, .footer-bottom a:hover {
    color: var(--lime)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 10px;
    border-top: 1px solid #294854;
    padding: 22px 0;
    color: #aec4ca
}

    .footer-bottom > div {
        display: flex;
        gap: 30px
    }
/* Group company information */
.stats-grid strong {
    white-space: nowrap
}

    .stats-grid strong > .storage-unit {
        font-size: clamp(18px,1.7vw,25px)
    }

.stats-note {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 18px
}

.group-card {
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--teal);
    scroll-margin-top: 145px
}

    .group-card h3 {
        font-size: 30px
    }

    .group-card .group-name {
        color: var(--teal);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.6;
        margin-top: 12px
    }

    .group-card .check-list {
        margin-top: 20px
    }

        .group-card .check-list li {
            font-size: 13px
        }

    .group-card > .text-link {
        align-self: flex-start;
        margin-top: auto;
        padding-top: 25px;
        gap: 18px
    }

    .group-card > .check-list {
        margin-bottom: 10px
    }

    .group-card > p:last-of-type {
        margin-bottom: 14px
    }
/* Responsive layouts */
@media(min-width:1550px) {
    .home-hero {
        min-height: 665px
    }

    .hero-content h1 {
        font-size: 78px
    }

    .hero-photo {
        width: 77%;
        object-position: center 60%
    }
}

@media(max-width:1200px) {
    .container {
        width: calc(100% - 72px)
    }

    .header-inner {
        gap: 25px
    }

    .brand, .brand img {
        width: 190px
    }

    .primary-nav {
        gap: 19px
    }

        .primary-nav > a {
            font-size: 12px
        }

        .primary-nav > .nav-contact {
            gap: 20px;
            padding: 10px 17px
        }

    .capability-card {
        padding-inline: 20px
    }

    .photo-card {
        padding: 0
    }

    .photo-card-content {
        padding-inline: 20px
    }

    .capability-card h3 {
        font-size: 23px
    }

    .image-split {
        gap: 50px
    }

    .split-intro {
        gap: 60px
    }

    .footer-top {
        gap: 32px
    }

    .team-card {
        padding: 23px
    }

    .hero-caption {
        font-size: 8px
    }

    .hero-content h1 {
        font-size: 64px
    }
}

@media(max-width:1100px) {
    .header-inner {
        min-height: 88px;
        height: auto;
        flex-wrap: wrap;
        padding-block: 14px;
        gap: 12px
    }

    .nav-ready .menu-toggle {
        display: block
    }

    .primary-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px 25px;
        padding: 10px 0
    }

    .nav-ready .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 22px 36px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 15px 25px rgba(9,42,56,.12)
    }

        .nav-ready .primary-nav.is-open {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 4px
        }

    .primary-nav > a {
        font-size: 14px
    }

    .primary-nav > .nav-contact {
        margin: 12px 0 0;
        align-self: flex-start
    }

    .primary-nav > a:not(.button):after {
        display: none
    }

    .primary-nav > a.active {
        color: var(--teal)
    }

    .home-hero {
        min-height: 570px
    }

    .hero-content h1 {
        font-size: 60px
    }

    .hero-photo {
        width: 95%;
        object-position: 60% center
    }

    .hero-shade {
        background: linear-gradient(90deg,rgba(10,43,57,.97) 0%,rgba(10,43,57,.91) 35%,rgba(10,43,57,.43) 72%,rgba(10,43,57,.22)),linear-gradient(0deg,rgba(7,25,36,.5),transparent)
    }

    .capability-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .capability-card {
        min-height: 320px
    }

    .photo-card .card-number {
        margin-bottom: 91px
    }

    .service-icon {
        margin-top: 25px;
        margin-bottom: 25px
    }

    .stats-grid > div {
        padding-left: 30px
    }

    .image-split {
        gap: 38px
    }

    .image-frame img {
        height: 400px
    }

    .section-heading {
        gap: 40px
    }

    .team-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .three-grid, .experience-grid, .resource-grid {
        gap: 17px
    }

    .value-card {
        padding: 25px
    }

    .experience-card > div:not(.technology-art) {
        padding: 23px
    }

    .experience-card h3 {
        font-size: 23px
    }

    .resource-body {
        padding: 21px
    }

    .document-cover {
        padding: 25px
    }

    .footer-top {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px 60px
    }

    .credential-inner {
        gap: 55px
    }

    .section-nav > .container {
        gap: 35px
    }
}

@media(max-width:800px) {
    .section {
        padding-block: 65px
    }

    .container {
        width: calc(100% - 48px)
    }

    .utility-inner {
        justify-content: center
    }

        .utility-inner > span {
            display: none
        }

        .utility-inner > div {
            gap: 10px
        }

        .utility-inner a {
            font-size: 10px
        }

    .brand, .brand img {
        width: 188px
    }

    .header-inner {
        min-height: 82px
    }

    .home-hero {
        min-height: 565px
    }

    .hero-content {
        padding-block: 60px
    }

        .hero-content h1 {
            font-size: 56px
        }

        .hero-content p {
            font-size: 16px;
            max-width: 440px
        }

    .hero-caption {
        display: none
    }

    .hero-location {
        margin-top: 36px;
        font-size: 10px
    }

    .stats-grid {
        grid-template-columns: repeat(4,1fr);
        padding-block: 27px
    }

        .stats-grid strong {
            font-size: 30px
        }

        .stats-grid > div {
            padding-left: 22px
        }

            .stats-grid > div > span {
                font-size: 10px
            }

    .split-intro, .image-split {
        grid-template-columns: 1fr;
        gap: 35px
    }

        .split-intro > div > p {
            max-width: none
        }

    .intro-copy {
        padding: 0
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px
    }

        .section-heading > p {
            max-width: 650px
        }

        .section-heading > .text-link {
            margin-top: 0
        }

    .capability-grid {
        gap: 20px
    }

    .image-frame img {
        height: 410px
    }

    .image-split-copy {
        padding-top: 5px
    }

    .sector-list {
        justify-content: flex-start;
        gap: 22px 34px
    }

        .sector-list > span {
            font-size: 18px
        }

    .coverage-panel {
        max-width: none
    }

    .cta-inner {
        gap: 30px
    }

        .cta-inner > .button {
            min-width: auto
        }

    .page-hero {
        padding: 30px 0 60px
    }

        .page-hero h1 {
            font-size: 52px
        }

    .breadcrumb {
        margin-bottom: 33px
    }

    .page-hero p {
        font-size: 16px;
        max-width: 580px
    }

    .three-grid {
        grid-template-columns: 1fr
    }

    .value-card {
        padding: 30px
    }

        .value-card .card-number {
            margin-bottom: 20px
        }

    .credential-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .credential-mark {
        max-width: 340px;
        padding: 40px 25px
    }

    .credential-inner h2 br {
        display: none
    }

    .product-grid {
        gap: 16px
    }

    .product-card {
        padding: 22px
    }

        .product-card h3 {
            font-size: 22px
        }

        .product-card p {
            font-size: 13px
        }

    .wide-image img {
        height: 340px
    }

    .service-details article {
        padding-right: 0;
        padding-bottom: 25px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

        .service-details article:last-child {
            border-bottom: 0
        }

    .experience-grid {
        grid-template-columns: 1fr
    }

    .experience-card {
        display: grid;
        grid-template-columns: .9fr 1.1fr
    }

        .experience-card > img, .technology-art {
            height: 100%;
            min-height: 250px
        }

        .experience-card > div:not(.technology-art) {
            padding: 28px
        }

    .team-grid {
        gap: 18px
    }

    .reference-list article {
        grid-template-columns: 80px 1fr;
        gap: 20px
    }

    .reference-list .pill {
        grid-column: 2;
        justify-self: start
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px
    }

    .resource-grid {
        grid-template-columns: 1fr
    }

    .resource-card {
        display: grid;
        grid-template-columns: .8fr 1.2fr
    }

    .resource-body {
        padding: 30px
    }

    .document-cover {
        min-height: 310px;
        padding: 28px
    }

    .resource-body .button {
        justify-content: space-between
    }

    .footer-top {
        column-gap: 45px
    }

    .footer-bottom {
        font-size: 9px
    }

    .section-nav > .container {
        gap: 28px
    }

    .section-nav a {
        font-size: 11px
    }
}

@media(max-width:550px) {
    .container {
        width: calc(100% - 36px)
    }

    .section {
        padding-block: 54px
    }

    h2 {
        font-size: 34px
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .13em;
        margin-bottom: 18px
    }

    .lead {
        font-size: 20px
    }

    .utility-inner > div {
        gap: 8px
    }

    .utility-inner {
        min-height: 31px
    }

    .utility-divider {
        margin-inline: 1px
    }

    .utility-inner a {
        font-size: 9px
    }

    .header-inner {
        min-height: 76px;
        padding-block: 13px
    }

    .brand, .brand img {
        width: 169px
    }

    .menu-toggle {
        width: 42px;
        height: 42px
    }

    .nav-ready .primary-nav {
        padding: 18px
    }

    .home-hero {
        min-height: 590px;
        align-items: flex-start
    }

    .hero-photo {
        width: 100%;
        height: 100%;
        object-position: 63% center;
        opacity: .8
    }

    .hero-shade {
        background: linear-gradient(90deg,rgba(10,43,57,.95),rgba(10,43,57,.65)),linear-gradient(0deg,rgba(10,43,57,.28),rgba(10,43,57,.08))
    }

    .hero-content {
        padding: 55px 0 43px
    }

        .hero-content h1 {
            font-size: 46px;
            letter-spacing: -.052em;
            line-height: 1.08
        }

        .hero-content .eyebrow {
            font-size: 9px;
            margin-bottom: 25px
        }

        .hero-content p {
            font-size: 15px;
            max-width: 340px;
            margin-top: 24px
        }

    .button-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
        margin-top: 29px
    }

    .button {
        min-height: 50px;
        font-size: 13px;
        padding: 13px 20px;
        gap: 25px
    }

    .hero-link {
        font-size: 13px;
        gap: 24px
    }

    .hero-location {
        font-size: 9px;
        gap: 7px;
        margin-top: 31px;
        max-width: 320px
    }

        .hero-location > span {
            font-size: 16px
        }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding-block: 5px
    }

        .stats-grid > div {
            padding: 23px 15px !important;
            border-left: 0
        }

            .stats-grid > div:nth-child(odd) {
                padding-left: 0 !important
            }

            .stats-grid > div:nth-child(even) {
                border-left: 1px solid var(--line);
                padding-left: 27px !important
            }

            .stats-grid > div:nth-child(-n+2) {
                border-bottom: 1px solid var(--line)
            }

        .stats-grid strong {
            font-size: 33px
        }

        .stats-grid > div > span {
            font-size: 11px
        }

    .capability-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .capability-card {
        min-height: 270px;
        padding: 25px 25px 65px
    }

        .capability-card h3 {
            font-size: 27px
        }

            .capability-card h3 br {
                display: none
            }

        .capability-card p {
            max-width: 280px;
            font-size: 14px
        }

    .card-number {
        margin-bottom: 18px
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin: 21px 0
    }

    .photo-card {
        min-height: 350px;
        padding: 0
    }

    .photo-card-content {
        padding: 25px 25px 70px
    }

    .photo-card .card-number {
        margin-bottom: 133px
    }

    .photo-card > img {
        object-position: center 50%
    }

    .photo-card h3 br {
        display: block
    }

    .image-frame img {
        height: 305px
    }

    .image-label {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 10px;
        padding: 11px 13px
    }

    .check-list li {
        font-size: 13px
    }

    .sector-band {
        padding-block: 35px
    }

    .sector-list {
        gap: 18px 26px
    }

        .sector-list > span {
            font-size: 16px
        }

    .coverage-panel {
        padding: 23px
    }

    .coverage-heading {
        font-size: 11px
    }

        .coverage-heading > span:last-child {
            font-size: 9px
        }

    .province-grid {
        font-size: 18px;
        gap: 14px 9px
    }

        .province-grid > span:before {
            margin-right: 8px;
            font-size: 13px
        }

    .coverage-footer strong {
        font-size: 12px
    }

    .cta-section {
        padding-block: 45px
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 29px
    }

        .cta-inner h2 {
            font-size: 34px
        }

    .data-note {
        font-size: 10px
    }

    .page-hero {
        padding: 25px 0 50px
    }

        .page-hero h1 {
            font-size: 41px;
            line-height: 1.1
        }

        .page-hero .eyebrow {
            font-size: 9px
        }

        .page-hero p {
            font-size: 15px
        }

        .page-hero:after {
            right: -330px
        }

    .breadcrumb {
        font-size: 10px;
        margin-bottom: 32px;
        gap: 9px
    }

    .footprint-grid {
        grid-template-columns: 1fr
    }

        .footprint-grid article {
            padding: 28px
        }

    .credential-section {
        padding-block: 50px
    }

    .credential-mark {
        width: 100%;
        max-width: none
    }

        .credential-mark strong {
            font-size: 59px
        }

    .product-grid {
        grid-template-columns: 1fr;
        margin-top: 30px
    }

    .product-card {
        padding: 28px
    }

        .product-card h3 {
            font-size: 26px
        }

        .product-card p {
            font-size: 14px
        }

        .product-card .eyebrow {
            margin-top: 25px
        }

    .section-nav > .container {
        gap: 27px
    }

    .section-nav a {
        padding-block: 18px
    }

    .wide-image img {
        height: 230px
    }

    .inline-note {
        padding: 24px
    }

    .experience-card {
        display: block
    }

        .experience-card > img, .technology-art {
            height: 235px;
            min-height: 0
        }

        .experience-card > div:not(.technology-art) {
            padding: 28px
        }

    .team-grid {
        grid-template-columns: 1fr
    }

    .team-card {
        padding: 28px
    }

        .team-card h3 {
            font-size: 24px
        }

        .team-card p {
            font-size: 14px
        }

    .team-top .small-label {
        font-size: 9px
    }

    .team-role {
        font-size: 13px
    }

    .reference-list article {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .reference-list .pill {
        grid-column: auto
    }

    .reference-list h3 {
        font-size: 23px
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .process-flow {
        column-gap: 15px
    }

        .process-flow article {
            padding-right: 0
        }

        .process-flow h3 {
            font-size: 23px
        }

        .process-flow p {
            font-size: 13px
        }

    .resource-card {
        display: block
    }

    .document-cover {
        min-height: 250px
    }

        .document-cover > img {
            width: 148px
        }

        .document-cover > strong {
            font-size: 37px
        }

    .certificate-cover > strong {
        font-size: 65px
    }

    .resource-body {
        padding: 28px
    }

        .resource-body .button {
            width: 100%;
            margin-top: 5px
        }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding-bottom: 35px
    }

    .footer-brand {
        grid-column: 1/-1
    }

        .footer-brand p {
            max-width: 260px
        }

        .footer-brand img {
            width: 200px
        }

    .footer-top > div:last-child {
        grid-column: 1/-1
    }

    .footer-top h2 {
        font-size: 11px;
        margin-bottom: 20px
    }

    .footer-top > div > a:not(:first-child) {
        font-size: 11px
    }

    .footer-top p {
        font-size: 11px
    }

    .site-footer {
        padding-top: 45px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
        padding: 22px 0
    }

        .footer-bottom > div {
            gap: 25px
        }

    .prose h2 {
        font-size: 25px
    }

    .prose p {
        font-size: 15px
    }

    .compact-hero h1 {
        font-size: 39px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *, *:before, *:after {
        animation: none !important;
        transition: none !important
    }

    .button:hover, .capability-card:hover {
        transform: none
    }
}

@media print {
    .utility-bar, .site-header, .site-footer, .cta-section, .section-nav, .button-row, .menu-toggle {
        display: none !important
    }

    .container {
        width: 100%
    }

    .section {
        padding: 25px 0
    }

    .page-hero, .section-dark, .credential-section {
        background: #fff;
        color: #000
    }

        .page-hero p, .section-dark p, .credential-inner p {
            color: #333
        }

    em, .eyebrow.light {
        color: #0b6c75
    }

    a {
        text-decoration: underline
    }

    .home-hero {
        min-height: 420px
    }

    .team-grid, .resource-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .team-card, .resource-card, .value-card {
        break-inside: avoid
    }
}
