:root {
    --navy: #001c38;
    --navy-soft: #0a2a47;
    --navy-pale: #173b56;
    --slate: #26303a;
    --steel: #6c8491;
    --steel-light: #aebbc2;
    --copper: #c3823b;
    --copper-light: #dfa862;
    --copper-dark: #88501f;
    --sand: #f0ece5;
    --sand-light: #f8f5ef;
    --paper: #fdfcf9;
    --white: #fff;
    --ink: #202a31;
    --muted: #5c6971;
    --line: #d9d9d4;
    --line-dark: rgba(255, 255, 255, 0.18);
    --danger: #a42a2a;
    --success: #24683f;
    --shadow-sm: 0 10px 35px rgba(0, 28, 56, 0.09);
    --shadow-lg: 0 28px 75px rgba(0, 28, 56, 0.16);
    --shell: 1220px;
    --shell-wide: 1400px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-space: clamp(5rem, 9vw, 8.5rem);
    --header-height: 88px;
    --font-display: Tahoma, Verdana, Arial, sans-serif;
    --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 2rem);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: var(--navy);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--copper-dark);
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--copper-light);
    outline-offset: 4px;
}

::selection {
    background: var(--copper);
    color: var(--navy);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.65em;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.75rem, 6.5vw, 5.8rem);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.7rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
    margin: 0 0 1.4rem;
}

ul,
ol {
    margin-top: 0;
}

address {
    font-style: normal;
}

.shell {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    margin-inline: auto;
}

.shell--wide {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell-wide));
}

.section {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.section--large {
    padding-block: var(--section-space);
}

.section--sand {
    background: var(--sand-light);
}

.section--navy {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
}

.section--navy::before {
    position: absolute;
    top: -16rem;
    right: -12rem;
    width: 38rem;
    height: 38rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
    content: "";
    pointer-events: none;
}

.section--navy h2,
.section--navy h3 {
    color: var(--white);
}

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

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    padding: 0.8rem 1rem;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.35rem;
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2.5rem;
    height: 3px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--copper-light);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: clamp(2.8rem, 5vw, 4.6rem);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading__intro {
    max-width: 43rem;
    margin-top: 1.4rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.section--navy .section-heading__intro {
    color: rgba(255, 255, 255, 0.68);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.section-heading-row .section-heading {
    margin-bottom: 0;
}

.section-heading-row--top {
    align-items: flex-start;
}

.section-side-copy {
    width: min(100%, 29rem);
    margin: 2.2rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.lead,
.prose-large {
    font-size: clamp(1.12rem, 1.7vw, 1.35rem);
    line-height: 1.62;
}

.prose {
    font-size: 1.09rem;
    line-height: 1.8;
}

.prose h2 {
    margin-top: 2.4rem;
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.35rem;
    border: 2px solid transparent;
    color: inherit;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.105em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button__icon {
    width: 1.1rem;
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.button:hover .button__icon {
    transform: translateX(3px);
}

.button--copper {
    background: var(--copper-light);
    color: var(--navy);
}

.button--copper:hover {
    background: var(--white);
    color: var(--navy);
}

.button--navy {
    background: var(--navy);
    color: var(--white);
}

.button--navy:hover {
    background: var(--copper);
    color: var(--navy);
}

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

.button--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.button--ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.105em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link:hover {
    color: var(--copper-dark);
}

.text-link__icon {
    width: 1.1rem;
    transition: transform 180ms ease;
}

.text-link:hover .text-link__icon {
    transform: translateX(4px);
}

.text-link--light {
    color: var(--white);
}

.text-link--light:hover {
    color: var(--copper-light);
}

.text-link__icon--back {
    transform: rotate(180deg);
}

.text-link:hover .text-link__icon--back {
    transform: rotate(180deg) translateX(4px);
}

.inline-icon {
    display: inline-block;
    width: 0.9rem;
    margin-left: 0.25rem;
    vertical-align: -0.15em;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    background: var(--navy);
    box-shadow: 0 8px 25px rgba(0, 17, 34, 0.14);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: flex;
    width: clamp(12rem, 19vw, 14rem);
    flex: 0 0 auto;
    align-items: center;
}

.site-logo img {
    width: 100%;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(0.55rem, 1.55vw, 1.35rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: clamp(0.65rem, 0.8vw, 0.73rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    left: 0;
    height: 2px;
    background: var(--copper-light);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav__contact a {
    min-height: 2.9rem;
    padding-inline: 1.1rem;
    background: var(--copper-light);
    color: var(--navy);
}

.primary-nav__contact a::after {
    display: none;
}

.primary-nav__contact a:hover,
.primary-nav__contact a[aria-current="page"] {
    background: var(--white);
    color: var(--navy);
}

.nav-toggle {
    display: none;
    min-width: 4rem;
    min-height: 3rem;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle__label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-toggle__icon {
    display: grid;
    width: 1.55rem;
    gap: 0.3rem;
}

.nav-toggle__icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: max(42rem, calc(100svh - var(--header-height)));
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.home-hero__media {
    position: absolute;
    inset: 0 0 0 37%;
}

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

.home-hero__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 32%, rgba(0, 28, 56, 0.93) 42%, rgba(0, 28, 56, 0.42) 67%, rgba(0, 28, 56, 0.16) 100%), linear-gradient(0deg, rgba(0, 18, 36, 0.42), transparent 45%);
}

.home-hero__geometry {
    position: absolute;
    top: -12rem;
    right: -18rem;
    width: 46rem;
    height: 46rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 5.5rem rgba(255, 255, 255, 0.045), 0 0 0 11rem rgba(255, 255, 255, 0.028);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: max(42rem, calc(100svh - var(--header-height)));
    align-items: center;
    padding-block: 5rem 7rem;
}

.home-hero__copy {
    width: min(100%, 46rem);
}

.home-hero .eyebrow {
    gap: 0.6rem;
}

.home-hero .eyebrow::before {
    display: none;
}

.home-hero .eyebrow span {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: currentColor;
}

.home-hero h1 {
    max-width: 44rem;
    margin-bottom: 1.6rem;
    color: var(--white);
    font-size: clamp(3.25rem, 6.9vw, 6.4rem);
    line-height: 0.98;
}

.home-hero h1 em {
    color: var(--copper-light);
    font-style: normal;
}

.home-hero__lead {
    max-width: 39rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    line-height: 1.65;
}

.home-hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: var(--gutter);
    display: flex;
    height: 5.5rem;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-hero__scroll:hover {
    color: var(--white);
}

.home-hero__scroll-line {
    width: 5rem;
    height: 1px;
    background: var(--copper-light);
}

/* Company ribbon */
.company-ribbon {
    padding-block: 2.4rem 2.8rem;
    border-bottom: 1px solid var(--line);
    background: #eeefec;
}

.company-ribbon__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-ribbon__heading .eyebrow {
    margin-bottom: 0;
}

.company-ribbon__logos {
    display: grid;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: repeat(3, 1fr);
}

.company-ribbon__logos a {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-right: 1px solid #cfd1ce;
    transition: opacity 180ms ease, transform 180ms ease;
}

.company-ribbon__logos a:last-child {
    border-right: 0;
}

.company-ribbon__logos a:hover {
    opacity: 0.76;
    transform: translateY(-2px);
}

.company-ribbon__logos img {
    width: auto;
    max-width: 15rem;
    max-height: 4.2rem;
}

/* Shared feature layouts */
.split-feature {
    display: grid;
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-feature__media {
    position: relative;
}

.split-feature__media::before {
    position: absolute;
    z-index: -1;
    top: -1.6rem;
    right: 2rem;
    bottom: 2rem;
    left: -1.6rem;
    border: 1px solid var(--copper);
    content: "";
}

.split-feature__media img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    right: -1px;
    bottom: -1px;
    padding: 0.85rem 1.2rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.split-feature__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.split-feature__copy .lead {
    color: var(--ink);
}

.check-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 2rem 0 2.4rem;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--navy);
    font-weight: 700;
}

.check-list svg {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.18rem;
    border-radius: 50%;
    background: var(--copper);
    color: var(--navy);
}

/* Capability preview */
.capabilities-preview {
    padding-block: var(--section-space);
}

.capability-rail {
    position: relative;
    z-index: 1;
    display: grid;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: repeat(4, 1fr);
}

.capability-rail__item {
    min-height: 21rem;
    padding: 2.3rem 1.8rem;
    border-right: 1px solid var(--line-dark);
}

.capability-rail__item:first-child {
    padding-left: 0;
}

.capability-rail__item:last-child {
    padding-right: 0;
    border-right: 0;
}

.capability-rail__number {
    display: block;
    margin-bottom: 4.5rem;
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.capability-rail h3 {
    font-size: 1.38rem;
}

.capability-rail p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.94rem;
}

.section-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
}

/* Industries */
.industries-preview__header {
    display: grid;
    align-items: end;
    gap: 3rem;
    grid-template-columns: 1fr 0.65fr;
}

.industries-preview__header .section-heading {
    margin-bottom: 2.8rem;
}

.industries-preview__header > p {
    margin-bottom: 3rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.industry-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
}

.industry-card {
    position: relative;
    display: flex;
    min-height: 8.2rem;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    transition: background-color 180ms ease, color 180ms ease;
}

.industry-card:hover {
    background: var(--navy);
    color: var(--white);
}

.industry-card__icon {
    width: 2.25rem;
    flex: 0 0 auto;
    color: var(--copper-dark);
}

.industry-card:hover .industry-card__icon {
    color: var(--copper-light);
}

.industry-card--large {
    display: block;
    min-height: 13rem;
    padding: 2rem;
}

.industry-card--large .industry-card__icon {
    margin-bottom: 2.8rem;
}

.industry-card--large h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: -0.015em;
}

.industry-card--large > span {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    color: #a6adae;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.industry-card--large:hover h3 {
    color: var(--white);
}

/* Vision */
.vision-panel {
    display: grid;
    min-height: 38rem;
    background: var(--navy-soft);
    grid-template-columns: 1.1fr 0.9fr;
}

.vision-panel__image {
    position: relative;
    min-height: 34rem;
}

.vision-panel__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 65%, rgba(10, 42, 71, 0.85));
    content: "";
}

.vision-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

.vision-panel__content {
    position: relative;
    display: flex;
    max-width: 42rem;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6.5rem);
    color: var(--white);
}

.vision-panel__content blockquote {
    margin: 0 0 2.3rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.vision-panel__mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: rgba(255, 255, 255, 0.06);
    font-family: Georgia, serif;
    font-size: 18rem;
    line-height: 1;
}

/* News cards */
.news-grid {
    display: grid;
    gap: clamp(1.2rem, 2.6vw, 2.2rem);
    grid-template-columns: repeat(3, 1fr);
}

.news-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 28, 56, 0.03);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.news-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.news-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.48 / 1;
    background: var(--steel);
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.035);
}

.news-card__category {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.55rem 0.85rem;
    background: var(--copper-light);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.6rem 1.6rem 1.8rem;
}

.news-card time {
    margin-bottom: 0.8rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.28;
}

.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--copper-dark);
}

.news-card__body > p {
    color: var(--muted);
    font-size: 0.94rem;
}

.news-card .text-link {
    margin-top: auto;
}

/* Page hero */
.page-hero {
    position: relative;
    display: grid;
    min-height: clamp(31rem, 56vw, 39rem);
    overflow: hidden;
    align-items: end;
    background: var(--navy);
    color: var(--white);
}

.page-hero__media,
.page-hero__overlay {
    position: absolute;
    inset: 0;
}

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

.page-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 28, 56, 0.97) 0%, rgba(0, 28, 56, 0.88) 38%, rgba(0, 28, 56, 0.36) 75%, rgba(0, 28, 56, 0.18) 100%), linear-gradient(0deg, rgba(0, 15, 30, 0.65), transparent 50%);
}

.page-hero__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 62%;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
    transform: skewX(-12deg);
}

.page-hero__line::before,
.page-hero__line::after {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    content: "";
}

.page-hero__line::before {
    left: 5rem;
}

.page-hero__line::after {
    left: 10rem;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    padding-block: 6rem 5.5rem;
}

.page-hero__copy {
    width: min(100%, 53rem);
}

.page-hero h1 {
    margin-bottom: 1.4rem;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero__intro {
    max-width: 44rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

/* Story / About */
.story-grid {
    display: grid;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.story-grid--bordered {
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--line);
}

.story-grid__body p:last-child {
    margin-bottom: 0;
}

.shareholder-layout {
    display: grid;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: 0.85fr 1.15fr;
}

.shareholder-layout > div > p:last-child {
    max-width: 30rem;
    color: var(--muted);
}

.shareholder-list {
    padding: 0;
    border-top: 1px solid #c9cac5;
    margin: 0;
    list-style: none;
}

.shareholder-list li {
    border-bottom: 1px solid #c9cac5;
}

.shareholder-list a {
    display: flex;
    min-height: 4.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: padding 180ms ease, color 180ms ease;
}

.shareholder-list a:hover {
    padding-left: 0.6rem;
    color: var(--copper-dark);
}

.shareholder-list svg {
    width: 1.1rem;
    flex: 0 0 auto;
}

.values-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.value-card {
    min-height: 20rem;
    padding: clamp(1.8rem, 3.5vw, 3rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color 180ms ease;
}

.value-card:hover {
    background: var(--sand-light);
}

.value-card__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 3.5rem;
    border: 1px solid var(--copper);
    border-radius: 50%;
    color: var(--copper-dark);
    place-items: center;
}

.value-card__icon svg {
    width: 1.7rem;
}

.value-card h3 {
    font-size: 1.35rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.stewardship-panel {
    display: grid;
    background: var(--navy-soft);
    grid-template-columns: 1.05fr 0.95fr;
}

.stewardship-panel__image {
    min-height: 42rem;
}

.stewardship-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stewardship-panel__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 7.5rem);
    color: rgba(255, 255, 255, 0.77);
}

.stewardship-panel__copy h2 {
    color: var(--white);
}

.stewardship-panel__copy ul {
    display: grid;
    gap: 0.9rem;
    padding: 0;
    margin: 1.3rem 0 0;
    list-style: none;
}

.stewardship-panel__copy li {
    position: relative;
    padding-left: 1.6rem;
}

.stewardship-panel__copy li::before {
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--copper-light);
    content: "";
}

.governance-layout {
    display: grid;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: 1.15fr 0.85fr;
}

.governance-layout__copy > p:not(.eyebrow) {
    max-width: 44rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.principle-list {
    padding: 0;
    border-top: 1px solid var(--line);
    margin: 3rem 0 0;
    list-style: none;
}

.principle-list li {
    display: grid;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 2.3rem 1fr;
}

.principle-list span {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.principle-list p {
    margin: 0;
}

.board-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    background: var(--sand-light);
    box-shadow: var(--shadow-sm);
}

.board-card h3 {
    font-size: 1.75rem;
}

.board-card ul {
    padding: 0;
    border-top: 1px solid var(--line);
    margin: 2rem 0 0;
    list-style: none;
}

.board-card li {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.board-card strong {
    color: var(--navy);
}

.board-card span {
    color: var(--muted);
    font-size: 0.79rem;
    text-transform: uppercase;
}

.leadership-section__header {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
    grid-template-columns: 1fr 0.65fr;
}

.leadership-section__header > p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.people-grid {
    position: relative;
    z-index: 1;
    display: grid;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
    grid-template-columns: repeat(3, 1fr);
}

.people-grid article {
    min-height: 13rem;
    padding: 1.8rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.people-grid article > span {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 2.8rem;
    border-radius: 50%;
    background: var(--copper-light);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    place-items: center;
}

.people-grid h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.people-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.87rem;
}

/* What we do */
.capability-list {
    border-top: 1px solid #cfd0cb;
}

.capability-item {
    position: relative;
    display: grid;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(2rem, 4vw, 3.4rem) 0;
    border-bottom: 1px solid #cfd0cb;
    grid-template-columns: 4rem minmax(0, 1fr) 18%;
}

.capability-item__number {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.capability-item h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.capability-item p {
    max-width: 50rem;
    margin: 0;
    color: var(--muted);
}

.capability-item__line {
    width: 100%;
    height: 1px;
    background: var(--copper);
    transition: transform 200ms ease;
    transform-origin: left;
}

.capability-item:hover .capability-item__line {
    transform: scaleX(0.68);
}

.delivery-feature {
    display: grid;
    min-height: 43rem;
    background: var(--navy-soft);
    grid-template-columns: 1.06fr 0.94fr;
}

.delivery-feature__media {
    min-height: 38rem;
}

.delivery-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 7rem);
    color: rgba(255, 255, 255, 0.75);
}

.delivery-feature__content h2 {
    color: var(--white);
}

.delivery-feature__steps {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 1rem 0 2.5rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.delivery-feature__steps svg {
    width: 1rem;
    color: var(--copper-light);
}

.delivery-feature__content .button {
    align-self: flex-start;
}

/* Company profiles */
.company-profile {
    display: grid;
    min-height: 42rem;
    background: var(--white);
    grid-template-columns: 1.08fr 0.92fr;
}

.company-profile--reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.company-profile--reverse .company-profile__media {
    order: 2;
}

.company-profile--reverse .company-profile__content {
    order: 1;
}

.company-profile__media {
    position: relative;
    min-height: 38rem;
    overflow: hidden;
}

.company-profile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.company-profile:hover .company-profile__media img {
    transform: scale(1.025);
}

.company-profile__index {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 5rem;
    height: 5rem;
    background: var(--copper-light);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    place-items: center;
}

.company-profile--reverse .company-profile__index {
    right: auto;
    left: 0;
}

.company-profile__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 7.5rem);
}

.company-profile__logo {
    width: auto;
    max-width: min(100%, 22rem);
    max-height: 6.6rem;
    margin-bottom: 2.2rem;
    object-fit: contain;
    object-position: left center;
}

.company-profile__summary {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0.8rem 0 2.2rem;
    list-style: none;
}

.tag-list li {
    padding: 0.48rem 0.72rem;
    border: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.73rem;
    font-weight: 700;
}

.company-profile__content .button {
    align-self: flex-start;
}

.centered-copy {
    max-width: 49rem;
    text-align: center;
}

.centered-copy .eyebrow {
    justify-content: center;
}

.centered-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Partnerships */
.partnership-intro {
    display: grid;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: 0.9fr 1.1fr;
}

.stakeholder-band {
    padding-block: 3.5rem;
    background: var(--navy);
}

.stakeholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.stakeholder-list span {
    display: flex;
    min-height: 5.5rem;
    flex: 1 1 12rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.partner-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
}

.partner-card {
    display: grid;
    min-height: 14rem;
    gap: 1.5rem;
    padding: clamp(1.7rem, 3.5vw, 2.6rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    grid-template-columns: 2.2rem 1fr;
    transition: background-color 180ms ease;
}

.partner-card:hover {
    background: var(--sand-light);
}

.partner-card__number {
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.partner-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
}

.partner-card__location {
    margin-bottom: 1rem !important;
    color: var(--copper-dark) !important;
    font-size: 0.7rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.ktunaxa-ready {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 7vw, 6.5rem);
    background: var(--steel);
    color: rgba(255, 255, 255, 0.88);
}

.ktunaxa-ready::after {
    position: absolute;
    top: -12rem;
    right: -7rem;
    width: 30rem;
    height: 30rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.05), 0 0 0 8rem rgba(255, 255, 255, 0.035);
    content: "";
}

.ktunaxa-ready__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.ktunaxa-ready h2 {
    color: var(--white);
}

.ktunaxa-ready p:last-child {
    max-width: 43rem;
    margin-bottom: 0;
}

.ktunaxa-ready .button {
    flex: 0 0 auto;
}

/* Careers */
.career-values {
    background: var(--navy);
}

.career-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.career-values article {
    min-height: 18rem;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-right: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.65);
}

.career-values article:first-child {
    border-left: 1px solid var(--line-dark);
}

.career-values article > svg {
    width: 2.5rem;
    margin-bottom: 3rem;
    color: var(--copper-light);
}

.career-values h2 {
    color: var(--white);
    font-size: 1.5rem;
}

.career-values p {
    margin-bottom: 0;
}

.job-list {
    display: grid;
    gap: 1rem;
}

.job-card {
    display: grid;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 1px solid var(--line);
    background: var(--white);
    grid-template-columns: 3.3rem minmax(15rem, 1fr) minmax(14rem, 0.75fr) auto;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.job-card:hover {
    border-color: var(--steel-light);
    box-shadow: var(--shadow-sm);
}

.job-card__icon {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: var(--sand);
    color: var(--copper-dark);
    place-items: center;
}

.job-card__icon svg {
    width: 1.45rem;
}

.job-card__company {
    margin-bottom: 0.45rem;
    color: var(--copper-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.job-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.4rem;
}

.job-card h3 a {
    color: inherit;
    text-decoration: none;
}

.job-card__main > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.job-card__meta {
    margin: 0;
}

.job-card__meta div {
    display: grid;
    margin-bottom: 0.5rem;
    grid-template-columns: 6rem 1fr;
}

.job-card__meta dt {
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.job-card__meta dd {
    margin: 0;
    color: var(--navy);
    font-size: 0.83rem;
    font-weight: 650;
}

.empty-state {
    padding: 4rem;
    border: 1px solid var(--line);
    background: var(--sand-light);
    text-align: center;
}

.careers-contact__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.careers-contact__inner > div {
    max-width: 44rem;
}

.careers-contact__inner > div p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.job-detail__header {
    padding-block: clamp(5rem, 9vw, 8rem);
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
}

.job-detail__header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.job-detail__header-inner > div {
    max-width: 49rem;
}

.job-detail__header h1 {
    color: var(--white);
}

.job-detail__header p:last-child {
    margin-bottom: 0;
    font-size: 1.18rem;
}

.job-detail__header .button {
    flex: 0 0 auto;
}

.job-detail__layout {
    display: grid;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: 1fr 21rem;
}

.job-facts {
    padding: 2rem;
    background: var(--sand-light);
    box-shadow: var(--shadow-sm);
}

.job-facts h2 {
    font-size: 1.35rem;
}

.job-facts dl {
    margin: 0;
}

.job-facts dl div {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.job-facts dt {
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-facts dd {
    margin: 0;
    color: var(--navy);
    font-weight: 650;
}

/* News index and article */
.featured-news__card {
    display: grid;
    min-height: 33rem;
    background: var(--sand-light);
    grid-template-columns: 1.15fr 0.85fr;
}

.featured-news__image {
    min-height: 31rem;
    overflow: hidden;
}

.featured-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.featured-news__card:hover .featured-news__image img {
    transform: scale(1.025);
}

.featured-news__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 5rem);
}

.featured-news__content h2 {
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

.featured-news__content h2 a {
    color: inherit;
    text-decoration: none;
}

.featured-news__content > p {
    color: var(--muted);
}

.featured-news__content .button {
    align-self: flex-start;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-meta span {
    color: var(--copper-dark);
}

.news-meta time::before {
    margin-right: 0.9rem;
    color: var(--steel-light);
    content: "•";
}

.breadcrumbs {
    padding-block: 1.4rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs li {
    color: var(--muted);
    font-size: 0.74rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 0.5rem;
    content: "/";
}

.breadcrumbs a {
    color: var(--navy);
}

.article {
    padding-bottom: var(--section-space);
}

.article__header {
    max-width: 61rem;
    padding-block: clamp(4rem, 7vw, 7rem) clamp(3rem, 5vw, 5rem);
    text-align: center;
}

.article__header .news-meta {
    justify-content: center;
}

.article__header h1 {
    font-size: clamp(2.65rem, 5.7vw, 5rem);
}

.article__dek {
    max-width: 49rem;
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.article__hero img {
    width: 100%;
    max-height: 48rem;
    object-fit: cover;
}

.article__body {
    max-width: 49rem;
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.article__prose > p:first-child::first-letter {
    float: left;
    padding: 0.1em 0.12em 0 0;
    color: var(--copper-dark);
    font-family: var(--font-display);
    font-size: 4.7rem;
    font-weight: 700;
    line-height: 0.78;
}

.article-resource {
    padding: 2rem;
    border-left: 4px solid var(--copper);
    margin-top: 3rem;
    background: var(--sand-light);
}

.article-resource .eyebrow {
    margin-bottom: 1rem;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    margin: 2.5rem 0;
    overflow: hidden;
    background: var(--navy);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article__footer {
    max-width: 49rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

/* Contact */
.contact-layout {
    display: grid;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: 0.78fr 1.22fr;
}

.contact-details > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-details__items {
    display: grid;
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.contact-details__items > div {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 2.5rem 1fr;
}

.contact-details__items > div > span {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--sand);
    color: var(--copper-dark);
    place-items: center;
}

.contact-details__items > div > span svg {
    width: 1.1rem;
}

.contact-details__items h3 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details__items a,
.contact-details__items address {
    color: var(--muted);
    font-size: 0.92rem;
}

.map-card {
    display: flex;
    min-height: 7rem;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem;
    margin-top: 2rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    transition: background-color 180ms ease;
}

.map-card:hover {
    background: var(--copper);
    color: var(--navy);
}

.map-card__pin {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    place-items: center;
}

.map-card__pin svg {
    width: 1.5rem;
}

.map-card strong,
.map-card small {
    display: block;
}

.map-card small {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.68);
}

.map-card:hover small {
    color: var(--navy);
}

.contact-form-card {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--sand-light);
    box-shadow: var(--shadow-lg);
}

.contact-form-card__heading {
    margin-bottom: 2rem;
}

.contact-form-card__heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-form-card__heading > p:last-child {
    color: var(--muted);
    font-size: 0.83rem;
}

.contact-form-card__heading > p:last-child span[aria-hidden="true"] {
    color: var(--danger);
}

.form-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
}

.form-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.form-field label > span[aria-hidden="true"] {
    color: var(--danger);
}

.form-field .optional {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #b8bfbe;
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 3.4rem;
    padding: 0.75rem 0.9rem;
}

.form-field textarea {
    min-height: 11rem;
    padding: 0.9rem;
    resize: vertical;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
    background-position: calc(100% - 1.15rem) 50%, calc(100% - 0.85rem) 50%;
    background-repeat: no-repeat;
    background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(195, 130, 59, 0.3);
    outline: none;
}

.form-field--error input,
.form-field--error select,
.form-field--error textarea {
    border: 2px solid var(--danger);
}

.field-error {
    margin: 0.4rem 0 0;
    color: var(--danger);
    font-size: 0.8rem;
    font-weight: 650;
}

.field-help {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.form-field--honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.error-summary,
.form-notice {
    padding: 1.25rem 1.4rem;
    margin-bottom: 2rem;
}

.error-summary,
.form-notice--error {
    border-left: 4px solid var(--danger);
    background: #fff0f0;
}

.form-notice--success {
    display: flex;
    gap: 1rem;
    border-left: 4px solid var(--success);
    background: #edf8f1;
}

.form-notice--success > svg {
    width: 1.6rem;
    flex: 0 0 auto;
    color: var(--success);
}

.error-summary h2,
.form-notice h2 {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.error-summary p,
.form-notice p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.error-summary ul {
    margin-bottom: 0;
}

.error-summary a {
    color: var(--danger);
}

/* Universal CTA and footer */
.contact-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 7vw, 6.5rem);
    background: var(--steel);
    color: var(--white);
}

.contact-cta__texture {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: repeating-linear-gradient(115deg, transparent 0, transparent 4rem, rgba(255, 255, 255, 0.13) 4rem, rgba(255, 255, 255, 0.13) calc(4rem + 1px));
}

.contact-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact-cta h2 {
    margin-bottom: 0;
    color: var(--white);
}

.contact-cta .eyebrow {
    margin-bottom: 0.8rem;
}

.contact-cta .button {
    flex: 0 0 auto;
}

.site-footer {
    background: var(--slate);
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__main {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-block: clamp(4rem, 7vw, 6rem);
    grid-template-columns: minmax(17rem, 1.3fr) repeat(3, 0.7fr);
}

.site-footer__brand img {
    width: 15rem;
    margin-bottom: 1.5rem;
}

.site-footer__brand > p {
    max-width: 22rem;
    font-size: 0.91rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 650;
    text-decoration: none;
}

.social-link svg {
    width: 1.2rem;
}

.site-footer__column h2 {
    margin-bottom: 1.3rem;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-footer__column ul {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__column a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.83rem;
    text-decoration: none;
}

.site-footer__column a:hover {
    color: var(--copper-light);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__contact address {
    margin-bottom: 0.8rem;
    font-size: 0.83rem;
}

.site-footer__direction {
    margin-top: 0.7rem;
}

.site-footer__base {
    padding-block: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: var(--navy);
}

.site-footer__base-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer__base p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.68rem;
    letter-spacing: 0.035em;
}

/* Errors */
.error-page {
    position: relative;
    min-height: 38rem;
    overflow: hidden;
    padding-block: 8rem;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
}

.error-page__inner {
    position: relative;
    z-index: 1;
    max-width: 46rem;
    margin-left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
}

.error-page__code {
    margin-bottom: 0.5rem;
    color: var(--copper-light);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.error-page h1 {
    color: var(--white);
}

.error-page__shape {
    position: absolute;
    top: -15rem;
    right: -7rem;
    width: 46rem;
    height: 46rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.03), 0 0 0 10rem rgba(255, 255, 255, 0.02);
}

/* Responsive navigation */
@media (max-width: 1100px) {
    :root {
        --header-height: 78px;
    }

    .site-logo {
        width: 12.5rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        overflow-y: auto;
        padding: 2rem var(--gutter) 4rem;
        background: var(--navy);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.75rem);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav[data-open="true"] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav ul {
        display: block;
        max-width: 45rem;
        margin-inline: auto;
    }

    .primary-nav li {
        border-bottom: 1px solid var(--line-dark);
    }

    .primary-nav a {
        display: flex;
        min-height: 4.5rem;
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .primary-nav a::after {
        right: auto;
        bottom: 0;
        width: 4rem;
    }

    .primary-nav__contact {
        padding-top: 1.5rem;
        border: 0 !important;
    }

    .primary-nav__contact a {
        min-height: 3.6rem;
        justify-content: center;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
        transform: translateY(0.48rem) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
        transform: translateY(-0.48rem) rotate(-45deg);
    }

    .capability-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-rail__item {
        border-bottom: 1px solid var(--line-dark);
    }

    .capability-rail__item:first-child {
        padding-left: 1.8rem;
    }

    .capability-rail__item:last-child {
        padding-right: 1.8rem;
    }

    .capability-rail__item:nth-child(2) {
        border-right: 0;
    }

    .job-card {
        grid-template-columns: 3.3rem 1fr auto;
    }

    .job-card__meta {
        grid-column: 2 / 3;
    }

    .job-card .button {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .site-footer__main {
        grid-template-columns: 1.2fr repeat(3, 0.8fr);
    }
}

@media (max-width: 900px) {
    .home-hero__media {
        inset: 0;
    }

    .home-hero__wash {
        background: linear-gradient(90deg, rgba(0, 28, 56, 0.97), rgba(0, 28, 56, 0.72)), linear-gradient(0deg, rgba(0, 15, 30, 0.7), transparent 65%);
    }

    .split-feature,
    .story-grid,
    .shareholder-layout,
    .governance-layout,
    .partnership-intro,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .industries-preview__header,
    .leadership-section__header {
        grid-template-columns: 1fr;
    }

    .industries-preview__header > p {
        margin: -1rem 0 2.5rem;
    }

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

    .vision-panel,
    .stewardship-panel,
    .delivery-feature,
    .company-profile,
    .company-profile--reverse,
    .featured-news__card {
        grid-template-columns: 1fr;
    }

    .vision-panel__image,
    .stewardship-panel__image,
    .delivery-feature__media,
    .company-profile__media,
    .featured-news__image {
        min-height: 28rem;
    }

    .vision-panel__image::after {
        background: linear-gradient(0deg, rgba(10, 42, 71, 0.7), transparent 45%);
    }

    .values-grid,
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-profile--reverse .company-profile__media,
    .company-profile--reverse .company-profile__content {
        order: initial;
    }

    .company-profile--reverse .company-profile__index {
        right: 0;
        left: auto;
    }

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

    .career-values__grid {
        grid-template-columns: 1fr;
    }

    .career-values article {
        min-height: 0;
        border-right: 1px solid var(--line-dark);
        border-bottom: 1px solid var(--line-dark);
        border-left: 1px solid var(--line-dark);
    }

    .career-values article > svg {
        margin-bottom: 1.5rem;
    }

    .job-card {
        grid-template-columns: 3.3rem 1fr;
    }

    .job-card__meta {
        grid-column: 2;
    }

    .job-card .button {
        grid-row: auto;
        grid-column: 2;
        justify-self: start;
    }

    .job-detail__layout {
        grid-template-columns: 1fr;
    }

    .job-facts {
        grid-row: 1;
    }

    .site-footer__main {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    :root {
        --gutter: 1.1rem;
    }

    body {
        font-size: 0.97rem;
    }

    .section-heading-row,
    .contact-cta__inner,
    .ktunaxa-ready__inner,
    .careers-contact__inner,
    .job-detail__header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero {
        min-height: 42rem;
    }

    .home-hero__inner {
        min-height: 42rem;
        padding-block: 4rem 6rem;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .home-hero__scroll {
        display: none;
    }

    .company-ribbon__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-ribbon__logos {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .company-ribbon__logos a {
        border-right: 0;
        border-bottom: 1px solid #cfd1ce;
    }

    .company-ribbon__logos a:last-child {
        border-bottom: 0;
    }

    .capability-rail,
    .industry-grid,
    .values-grid,
    .people-grid,
    .partner-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .capability-rail__item {
        min-height: 0;
        padding: 2rem 0 !important;
        border-right: 0;
    }

    .capability-rail__number {
        margin-bottom: 2rem;
    }

    .industry-card {
        min-height: 6.5rem;
    }

    .vision-panel__image,
    .stewardship-panel__image,
    .delivery-feature__media,
    .company-profile__media,
    .featured-news__image {
        min-height: 22rem;
    }

    .vision-panel__content,
    .stewardship-panel__copy,
    .delivery-feature__content,
    .company-profile__content,
    .featured-news__content {
        padding: 3.5rem var(--gutter);
    }

    .page-hero {
        min-height: 32rem;
    }

    .page-hero__inner {
        padding-block: 5rem 3.5rem;
    }

    .page-hero__overlay {
        background: linear-gradient(90deg, rgba(0, 28, 56, 0.94), rgba(0, 28, 56, 0.68)), linear-gradient(0deg, rgba(0, 15, 30, 0.7), transparent 60%);
    }

    .page-hero__line {
        display: none;
    }

    .value-card {
        min-height: 0;
    }

    .value-card__icon {
        margin-bottom: 2rem;
    }

    .capability-item {
        gap: 1rem;
        grid-template-columns: 2.4rem 1fr;
    }

    .capability-item__line {
        display: none;
    }

    .partner-card {
        min-height: 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        display: block;
    }

    .job-card__icon,
    .job-card__main,
    .job-card__meta {
        margin-bottom: 1.5rem;
    }

    .job-card__meta div {
        grid-template-columns: 7rem 1fr;
    }

    .article__hero {
        width: 100%;
    }

    .article__hero img {
        min-height: 20rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__base-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.4rem;
    }
}

@media (max-width: 430px) {
    .button-row .button,
    .contact-form .button {
        width: 100%;
    }

    .home-hero .eyebrow {
        font-size: 0.61rem;
        letter-spacing: 0.11em;
    }

    .delivery-feature__steps {
        align-items: flex-start;
        flex-direction: column;
    }

    .delivery-feature__steps svg {
        transform: rotate(90deg);
    }

    .contact-form-card {
        padding-inline: 1.2rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .nav-toggle,
    .contact-cta,
    .site-footer,
    .button,
    .home-hero__scroll {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    a {
        color: #000;
    }

    .page-hero,
    .home-hero,
    .job-detail__header {
        min-height: 0;
        padding: 2rem 0;
        background: #fff;
        color: #000;
    }

    .page-hero__media,
    .page-hero__overlay,
    .page-hero__line,
    .home-hero__media,
    .home-hero__wash,
    .home-hero__geometry {
        display: none;
    }

    .page-hero h1,
    .home-hero h1,
    .job-detail__header h1 {
        color: #000;
    }

    .section,
    .section--large {
        padding-block: 2rem;
    }
}
