@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/poppins-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/poppins-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Poppins;
    src: url('../fonts/poppins/poppins-800.woff2') format('woff2');
    font-weight: 800;
    font-display: swap
}

:root {
    --lime: #9caf34;
    --lime-dark: #667d18;
    --lime-soft: #eff4df;
    --magenta: #a10d78;
    --graphite: #111512;
    --graphite-2: #1b211d;
    --ink: #20241f;
    --muted: #687067;
    --surface: #f5f7f1;
    --line: #dfe5da;
    --white: #fff;
    --wide: 1380px;
    --content: 1240px;
    --reading: 760px;
    --section: clamp(5rem, 8vw, 8rem);
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 34px;
    --shadow: 0 18px 55px rgba(19, 27, 20, .1);
    --ease: 220ms ease
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body,
button,
input,
textarea,
select {
    font-family: Poppins, sans-serif
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden
}

/* Site-wide readability: enlarge supporting copy without changing heading scale. */
main p,
main li,
main dd {
    font-size: 1rem !important
}

body.lightbox-open {
    overflow: hidden
}

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

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

.image-focus-top {
    object-position: center 15% !important
}

button {
    color: inherit
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 800
}

h2 {
    font-size: clamp(2rem, 3.7vw, 3.7rem);
    font-weight: 700
}

h3 {
    font-size: 1.15rem;
    font-weight: 600
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: -999px;
    z-index: 100;
    padding: .7rem 1rem;
    background: #fff
}

.skip-link:focus {
    left: 12px
}

:focus-visible {
    outline: 3px solid var(--magenta);
    outline-offset: 3px
}

.kicker {
    display: block;
    margin-bottom: .8rem;
    color: var(--magenta);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase
}

.kicker--light {
    color: #c8da5a
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 46px;
    padding: .72rem 1.15rem;
    border: 1px solid var(--lime);
    border-radius: var(--radius-sm);
    background: var(--lime);
    color: #172008;
    font-size: .94rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform var(--ease), background var(--ease)
}

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

.button--small {
    min-height: 40px;
    padding: .52rem .8rem
}

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

.button--outline-light {
    border-color: rgba(255, 255, 255, .65);
    background: transparent;
    color: #fff
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center
}

.text-link {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    color: var(--lime-dark);
    font-weight: 600
}

.text-link i {
    transition: transform var(--ease)
}

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

.contact-strip {
    background: var(--graphite);
    color: #e8eee8;
    font-size: .82rem
}

.contact-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px
}

.contact-strip__inner div {
    display: flex;
    gap: 1.3rem
}

.contact-strip__links a {
    white-space: nowrap
}

.contact-strip i {
    margin-right: .35rem;
    color: #c8da5a
}

.live-datetime {
    min-width: 205px;
    font-variant-numeric: tabular-nums;
    text-align: right
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition: box-shadow var(--ease), border-color var(--ease)
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(17, 21, 18, .08)
}

.nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(var(--wide), calc(100% - 48px));
    min-height: 78px
}

.header-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-right: auto
}

.site-logo {
    flex: 0 0 auto
}

.site-logo img {
    width: 180px;
    max-height: 58px;
    object-fit: contain
}

.header-accreditation {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding-left: .8rem;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: .58rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase
}

.header-accreditation img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.primary-nav {
    display: flex;
    flex: 0 0 auto;
    gap: .85rem;
    align-items: center;
    font-size: .96rem;
    font-weight: 600
}

.primary-nav a {
    position: relative;
    white-space: nowrap
}

.primary-nav a:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform var(--ease)
}

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

.nav-toggle {
    display: none;
    min-height: 44px;
    padding: .5rem .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    font-weight: 600
}

.nav-toggle i {
    margin-left: .45rem
}

.hero-slider {
    position: relative;
    background: var(--graphite)
}

.hero-slider__track {
    position: relative;
    height: clamp(590px, 78vh, 790px)
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .65s ease
}

.hero-slide.is-active {
    visibility: visible;
    opacity: 1
}

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

.hero-slide>img.hero-slide__image--lab {
    object-position: center 18%
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 11, .93) 0%, rgba(10, 14, 11, .72) 43%, rgba(10, 14, 11, .18) 75%)
}

.hero-slide__content {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-54%);
    color: #fff
}

.hero-slide__content h1,
.hero-slide__content h2 {
    max-width: 760px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.7rem, 5.7vw, 5.8rem);
    font-weight: 800;
    line-height: 1
}

.hero-slide__content p {
    max-width: 650px;
    margin-bottom: 2rem;
    color: #d9e0da;
    font-size: clamp(1rem, 1.5vw, 1.2rem)
}

.hero-slide.is-active .hero-slide__content>* {
    animation: hero-in .7s both
}

.hero-slide.is-active .hero-slide__content>:nth-child(2) {
    animation-delay: .08s
}

.hero-slide.is-active .hero-slide__content>:nth-child(3) {
    animation-delay: .16s
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 106px;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .7rem
}

.hero-controls>button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(17, 21, 18, .55);
    color: #fff;
    cursor: pointer
}

.hero-dots {
    display: flex;
    gap: .35rem
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer
}

.hero-dots button.is-active {
    width: 28px;
    border-radius: 6px;
    background: var(--lime)
}

.trust-dock {
    position: absolute;
    right: 0;
    bottom: -42px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.trust-dock div {
    padding: 1.2rem 1.4rem;
    border-right: 1px solid var(--line)
}

.trust-dock div:last-child {
    border: 0
}

.trust-dock strong,
.trust-dock span {
    display: block
}

.trust-dock strong {
    font-size: 1rem;
    font-weight: 800
}

.trust-dock span {
    font-size: .72rem;
    color: var(--muted)
}

.section {
    padding: var(--section) 0
}

.about-intro {
    padding-top: calc(var(--section) + 42px)
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center
}

.editorial-grid p,
.section-heading>p {
    max-width: 65ch;
    color: var(--muted)
}

.about-visual {
    position: relative
}

.about-visual>img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
    box-shadow: var(--shadow)
}

.accreditation-float {
    position: absolute;
    right: -24px;
    bottom: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-width: 245px;
    padding: 1rem 1.2rem;
    background: #fff;
    border-left: 4px solid var(--lime);
    box-shadow: var(--shadow)
}

.accreditation-float>img {
    grid-row: span 2;
    margin-right: .8rem;
    width: 52px;
    height: 52px;
    object-fit: contain
}

.accreditation-float strong,
.accreditation-float span {
    display: block
}

.accreditation-float span {
    font-size: .72rem;
    color: var(--muted)
}

.capability-band {
    padding: var(--section) 0;
    background: var(--graphite-2);
    color: #fff
}

.capability-band__grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 5rem;
    align-items: center
}

.capability-band p {
    color: #cbd3cc
}

.capability-band img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg)
}

.check-list,
.line-list {
    padding: 0;
    list-style: none
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem 1.2rem
}

.check-list li {
    position: relative;
    padding-left: 1.5rem
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8da5a;
    font-weight: 700
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 3rem;
    margin-bottom: 2.8rem
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0
}

.feature-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem
}

.feature-tile {
    position: relative;
    grid-column: span 2;
    height: 340px;
    overflow: hidden;
    border-radius: var(--radius-md)
}

.feature-tile--wide {
    grid-column: span 3;
    height: 290px
}

.feature-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.feature-tile--team {
    background: #ecefe8
}

.feature-tile--team img {
    object-fit: contain
}

.feature-tile:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 12, 10, .9), rgba(9, 12, 10, 0) 70%)
}

.feature-tile>div {
    position: absolute;
    z-index: 1;
    right: 1.4rem;
    bottom: 1.3rem;
    left: 1.4rem;
    color: #fff
}

.feature-tile i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: .7rem;
    border-radius: 50%;
    background: var(--lime);
    color: #172008
}

.feature-tile h3 {
    margin-bottom: .3rem
}

.feature-tile p {
    margin: 0;
    color: #d9ded9;
    font-size: .8rem
}

.feature-tile:hover img {
    transform: scale(1.04)
}

.services-showcase {
    background: var(--surface)
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line)
}

.service-item {
    display: grid;
    grid-template-columns: 40px 54px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.6rem 1rem;
    border-bottom: 1px solid var(--line);
    transition: background var(--ease)
}

.service-item:nth-child(odd) {
    border-right: 1px solid var(--line)
}

.service-item>span {
    color: var(--magenta);
    font-size: .7rem;
    font-weight: 700
}

.service-item>i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--lime-soft);
    color: var(--lime-dark);
    font-size: 1.15rem
}

.service-item h3,
.service-item p {
    margin: 0
}

.service-item p {
    color: var(--muted);
    font-size: .8rem
}

.service-item>b {
    font-size: 1.25rem
}

.service-item:hover {
    background: #fff
}

.experience {
    background: #fff
}

.experience__card {
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: 0 18px 48px rgba(17, 21, 18, .08)
}

.experience__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 3vw, 3rem)
}

.experience__content h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.25rem)
}

.experience-image {
    position: relative
}

.experience-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 var(--radius-lg) 0
}

.experience-image--team {
    display: flex;
    align-items: center;
    min-height: 100%;
    overflow: hidden;
    background: var(--graphite)
}

.experience-image--team:before {
    position: absolute;
    inset: -24px;
    background: url('../images/homepage/experienced-guidance-dependable-reporting.jpeg') center/cover no-repeat;
    content: '';
    filter: blur(18px);
    opacity: .32;
    transform: scale(1.08)
}

.experience-image--team img {
    position: relative;
    z-index: 1;
    height: auto;
    aspect-ratio: 1000/461;
    object-fit: contain;
    border-radius: 0
}

.experience-image span {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: .8rem 1.1rem;
    background: var(--lime);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase
}

.experience-image--team span {
    z-index: 2
}

.line-list li {
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600
}

.quote-band {
    position: relative;
    min-height: 480px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--graphite);
    color: #fff
}

.quote-band>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28
}

.quote-band:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--graphite), transparent)
}

.quote-band__content {
    position: relative;
    z-index: 1;
    padding-block: 5rem
}

.quote-band__content h2 {
    max-width: 760px
}

.quote-band__content p {
    color: #d6ddd6
}

.masonry-gallery {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr;
    grid-auto-rows: 220px;
    gap: 1rem
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    background: #ddd;
    cursor: pointer
}

.gallery-item--tall {
    grid-row: span 2
}

.gallery-item--wide {
    grid-column: span 2
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.quality {
    background: var(--lime-soft)
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #cfd8bd;
    border: 1px solid #cfd8bd
}

.quality-grid article {
    padding: 2rem;
    background: var(--lime-soft)
}

.quality-grid i {
    color: var(--lime-dark);
    font-size: 1.6rem
}

.quality-grid p {
    color: var(--muted)
}

.page-banner {
    padding: 5rem 0;
    background: var(--graphite);
    color: #fff;
    overflow: hidden
}

.page-banner>.container {
    width: min(var(--content), calc(100% - 48px));
    margin-inline: auto
}

.page-banner--image {
    min-height: 300px;
    padding: 3.25rem 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
    isolation: isolate;
    background-image: url('../images/slider/MCTS-Top-Banner.jpg')
}

.page-banner--image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 15, 13, .9) 0%, rgba(10, 15, 13, .72) 48%, rgba(10, 15, 13, .2) 100%)
}

.page-banner__content {
    width: auto
}

.page-banner--image h1 {
    max-width: none;
    font-size: clamp(2.5rem, 3.5vw, 4.1rem);
    margin-bottom: .75rem;
    white-space: nowrap
}

.page-banner--image p {
    margin: 0;
    max-width: 520px
}

.page-banner__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 4rem;
    align-items: center
}

.page-banner h1 {
    max-width: 820px
}

.page-banner p {
    max-width: 650px;
    color: #cfd6d0
}

.page-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 var(--radius-lg) 0
}

.breadcrumbs {
    display: flex;
    gap: .55rem;
    margin-bottom: 2rem;
    color: #afb8af;
    font-size: .73rem
}

.breadcrumbs a:hover {
    color: #fff
}

.statement-card {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface)
}

.statement-card i {
    color: var(--lime);
    font-size: 2rem
}

.statement-card blockquote {
    margin: 1rem 0;
    font-size: 1.15rem
}

.statement-card strong,
.statement-card span {
    display: block
}

.statement-card span {
    color: var(--muted);
    font-size: .78rem
}

.split-panels {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.split-panels article {
    padding: clamp(3rem, 7vw, 7rem);
    background: var(--lime-soft)
}

.split-panels article+article {
    background: var(--graphite);
    color: #fff
}

.split-panels span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.split-panels p {
    max-width: 55ch;
    color: var(--muted)
}

.split-panels article+article p {
    color: #cbd3cc
}

.ceo-message {
    background: #fff
}

.ceo-message__card {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 18px 45px rgba(17, 21, 18, .08)
}

.ceo-message__portrait {
    min-height: 580px;
    margin: 0;
    overflow: hidden;
    background: #e7ebe2
}

.ceo-message__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.ceo-message__content {
    position: relative;
    padding: clamp(2rem, 5vw, 4.5rem)
}

.ceo-message__content:before {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(154, 181, 38, .18);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    content: "\201C"
}

.ceo-message__content h2 {
    position: relative;
    max-width: 16ch;
    margin: .5rem 0 1.5rem;
    font-size: clamp(2rem, 3.5vw, 3.2rem)
}

.ceo-message__content blockquote {
    position: relative;
    margin: 0;
    color: var(--muted)
}

.ceo-message__content blockquote p:first-child {
    color: var(--graphite);
    font-weight: 600
}

.ceo-message__content footer {
    display: flex;
    flex-direction: column;
    margin-top: 1.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line)
}

.ceo-message__content footer strong {
    font-size: 1.1rem
}

.ceo-message__content footer span {
    color: var(--lime-dark);
    font-size: .82rem;
    font-weight: 600
}

.leadership-section {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%)
}

.leadership-section .section-heading {
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--line)
}

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

.profile {
    grid-column: span 4;
    display: grid;
    grid-template-rows: auto minmax(230px, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 21, 18, .05);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease)
}

.profile--featured {
    grid-column: 1/-1;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    grid-template-rows: auto;
    position: relative;
    border-color: var(--line);
    background: #fff;
    box-shadow: 0 14px 36px rgba(17, 21, 18, .08)
}

.profile--featured:nth-child(2) {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px)
}

.profile--featured:nth-child(2) .profile__media {
    grid-column: 2;
    grid-row: 1
}

.profile--featured:nth-child(2)>div {
    grid-column: 1;
    grid-row: 1
}

.profile:hover {
    transform: translateY(-5px);
    border-color: #b7c6a5;
    box-shadow: var(--shadow)
}

.profile__media {
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    background: #eef1e9
}

.profile__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform .5s ease
}

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

.profile>div {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.45rem 1.55rem
}

.profile--featured .profile__media {
    margin: .75rem;
    border-radius: 14px
}

.profile--featured>div {
    justify-content: center;
    padding: 2.4rem 3rem;
    background: #fff
}

.profile--featured:nth-child(2)>div {
    background: #fff
}

.profile span {
    color: var(--magenta);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase
}

.profile h3 {
    margin: .25rem 0;
    min-height: 1.65rem;
    font-size: 1.35rem
}

.profile--featured h3 {
    min-height: 1.65rem;
    color: var(--graphite);
    font-size: 1.6rem
}

.profile--featured:nth-child(2) h3 {
    font-size: 1.6rem
}

.profile--featured span {
    color: var(--magenta)
}

.profile--featured strong {
    color: var(--lime-dark)
}

.profile--featured p {
    color: var(--muted)
}

.profile strong {
    color: var(--lime-dark);
    font-size: .82rem
}

.profile p {
    margin: .7rem 0 0;
    color: var(--muted)
}

.home-team {
    background: var(--surface)
}

.home-team__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem
}

.home-team__card {
    grid-column: span 2;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 21, 18, .05)
}

.home-team__card--featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: minmax(180px, .9fr) minmax(0, 1.1fr)
}

.home-team__card figure {
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    background: #eef1e9
}

.home-team__card--featured figure {
    aspect-ratio: auto;
    min-height: 310px
}

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

.home-team__card>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.35rem
}

.home-team__card span {
    color: var(--magenta);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase
}

.home-team__card h3 {
    margin: .35rem 0 .2rem;
    font-size: 1.2rem
}

.home-team__card strong {
    color: var(--lime-dark);
    font-size: .78rem
}

.home-team__card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .88rem
}

.home-team__action {
    display: flex;
    justify-content: center;
    margin-top: 2rem
}

.home-recognition {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: #fff
}

.home-recognition__inner {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: center
}

.home-recognition__intro h2 {
    margin: .4rem 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem)
}

.home-recognition__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem
}

.home-recognition__logos figure {
    display: grid;
    place-items: center;
    min-width: 0;
    margin: 0;
    padding: 1rem .6rem .75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface)
}

.home-recognition__logos img {
    width: 86px;
    height: 86px;
    object-fit: contain
}

.home-recognition__logos figcaption {
    margin-top: .55rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase
}

.home-brands {
    background: var(--surface)
}

.home-brands__heading {
    margin-bottom: 2.5rem;
    text-align: center
}

.home-brands__heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.5vw, 3.4rem)
}

.home-brands__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem
}

.home-brands__item {
    display: grid;
    place-items: center;
    min-width: 0;
    margin: 0;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 21, 18, .04);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease)
}

.home-brands__item:hover {
    border-color: #b7c6a5;
    box-shadow: 0 14px 30px rgba(17, 21, 18, .09);
    transform: translateY(-3px)
}

.home-brands__item img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.inline-cta {
    padding: 4rem 0;
    background: var(--graphite);
    color: #fff
}

.inline-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.inline-cta .button {
    flex: 0 0 auto
}

.inline-cta h2 {
    margin: 0
}

.capability-index {
    position: sticky;
    top: 78px;
    z-index: 5;
    display: flex;
    gap: .4rem;
    margin-bottom: 2.5rem;
    padding: .6rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 25px rgba(17, 21, 18, .05)
}

.capability-index a {
    padding: .55rem .75rem;
    border-radius: 7px;
    font-size: .76rem;
    font-weight: 600
}

.capability-index a:hover {
    background: var(--lime-soft)
}

.service-stories {
    border-top: 1px solid var(--line)
}

.service-story {
    display: grid;
    grid-template-columns: 60px 74px 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
    scroll-margin-top: 155px;
    border-bottom: 1px solid var(--line)
}

.service-story__number {
    color: var(--magenta);
    font-size: .75rem;
    font-weight: 700
}

.service-story__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--lime-soft);
    color: var(--lime-dark);
    font-size: 1.4rem
}

.service-story h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.4rem)
}

.service-story p {
    max-width: 75ch;
    color: var(--muted)
}

.calibration-dashboard {
    background: var(--surface)
}

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

.measure-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff
}

.measure-card--featured {
    grid-row: span 2;
    background: var(--graphite);
    color: #fff
}

.measure-card>i {
    font-size: 1.4rem;
    color: var(--lime-dark)
}

.measure-card>span {
    display: block;
    margin-top: 1.5rem;
    color: var(--magenta);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase
}

.measure-card h2 {
    margin: .3rem 0;
    font-size: 2rem
}

.measure-card small {
    font-size: .85rem
}

.measure-card p {
    color: var(--muted)
}

.measure-card--featured p {
    color: #cbd3cc
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line)
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line)
}

th {
    background: var(--graphite);
    color: #fff;
    font-size: .75rem;
    text-transform: uppercase
}

td {
    font-size: .86rem
}

.instrument-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.3rem
}

.instrument-list span {
    padding: .55rem .8rem;
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: .75rem
}

.scope-panel {
    padding: 4rem 0;
    background: var(--graphite);
    color: #fff
}

.scope-panel .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center
}

.scope-panel>.container>i {
    font-size: 2rem;
    color: #c8da5a
}

.scope-panel h2,
.scope-panel p {
    margin-bottom: .4rem
}

.scope-panel p {
    color: #cbd3cc
}

.testing-timeline {
    padding: var(--section) 0
}

.testing-story {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0
}

.testing-story:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line)
}

.testing-story--reverse .testing-story__media {
    grid-column: 2
}

.testing-story--reverse>div:last-child {
    grid-column: 1;
    grid-row: 1
}

.testing-story__media img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: var(--radius-md)
}

.testing-story:nth-child(2) .testing-story__media img,
#surveying .testing-story__media img {
    object-position: center 15%
}

.testing-story p {
    color: var(--muted)
}

.credential-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.credential {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md)
}

.credential__type {
    color: var(--magenta);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase
}

.credential dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.credential dt {
    color: var(--muted);
    font-size: .68rem;
    text-transform: uppercase
}

.credential dd {
    margin: 0;
    font-weight: 600
}

.accreditation-marks {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line)
}

.accreditation-marks__intro h2 {
    margin: .4rem 0 .7rem;
    font-size: clamp(1.7rem, 2.7vw, 2.5rem)
}

.accreditation-marks__intro p {
    color: var(--muted)
}

.accreditation-marks__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem
}

.accreditation-marks__logos figure {
    display: grid;
    place-items: center;
    min-width: 0;
    margin: 0;
    padding: 1rem .65rem .75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff
}

.accreditation-marks__logos img {
    width: 86px;
    height: 86px;
    object-fit: contain
}

.accreditation-marks__logos figcaption {
    margin-top: .55rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase
}

.certificate-stage {
    padding: var(--section) 0;
    background: var(--graphite);
    color: #fff
}

.section-heading--light>p {
    color: #cbd3cc
}

.certificate-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.certificate-collection {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #3a433c
}

.certificate-collection__heading {
    max-width: 760px;
    margin-bottom: 1.75rem
}

.certificate-collection__heading h2 {
    margin: .4rem 0 .7rem;
    color: #fff
}

.certificate-collection__heading p {
    color: #cbd3cc
}

.certificate-gallery--training {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem
}

.certificate-gallery--training .certificate-frame {
    display: grid;
    grid-template-rows: 360px auto;
    padding: .75rem
}

.certificate-gallery--training .certificate-frame img {
    height: 360px
}

.certificate-gallery--training .certificate-frame span {
    align-items: center;
    gap: 1rem;
    line-height: 1.45;
    text-align: left
}

.certificate-frame {
    padding: 1rem;
    border: 1px solid #3a433c;
    border-radius: var(--radius-md);
    background: #1a201c;
    color: #fff;
    cursor: pointer
}

.certificate-frame img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    background: #fff
}

.certificate-frame span {
    display: flex;
    justify-content: space-between;
    padding: .9rem .4rem .2rem;
    font-weight: 600
}

.scope-disclaimer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.2rem;
    background: var(--surface);
    border-left: 4px solid var(--lime)
}

.scope-disclaimer i {
    margin-top: .35rem;
    color: var(--lime-dark)
}

.contact-section {
    background: var(--surface)
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 2rem
}

.contact-details,
.quote-form {
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md)
}

.contact-details>a {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600
}

.contact-details>a>i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--lime-soft);
    color: var(--lime-dark)
}

.contact-details small {
    display: block;
    color: var(--muted);
    font-weight: 400
}

.contact-details .address {
    display: flex;
    gap: .8rem
}

.office-addresses {
    margin: 1.2rem 0;
    padding: .25rem 1rem;
    border-left: 3px solid var(--lime);
    background: var(--surface)
}

.office-addresses .address {
    align-items: flex-start;
    margin: .8rem 0
}

.office-addresses .address i {
    margin-top: .35rem;
    color: var(--lime-dark)
}

.contact-actions {
    display: flex;
    gap: .7rem;
    margin: 1.4rem 0
}

.map {
    width: 100%;
    height: 580px;
    border: 0;
    border-radius: var(--radius-sm)
}

.quote-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.field label {
    display: block;
    margin-bottom: .35rem;
    font-size: .75rem;
    font-weight: 600
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .8rem;
    border: 1px solid #bcc6ba;
    border-radius: var(--radius-sm);
    background: #fff;
    font: inherit
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--lime-dark);
    outline: 3px solid rgba(156, 175, 52, .18)
}

.field--full {
    grid-column: 1/-1
}

.consent {
    display: flex;
    gap: .6rem;
    font-size: .78rem
}

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

.form-status {
    padding: .8rem;
    background: var(--lime-soft);
    border-left: 4px solid var(--lime)
}

.form-status--error {
    background: #fff0f0;
    border-left-color: #b42318
}

.field-error {
    margin: .35rem 0 0;
    color: #9f1d17;
    font-size: .75rem;
    line-height: 1.45
}

.field [aria-invalid="true"] {
    border-color: #b42318
}

.turnstile-wrap {
    min-height: 65px
}

.quote-form button[disabled] {
    cursor: wait;
    opacity: .7;
    transform: none
}

[aria-invalid="true"] {
    border-color: #b42318 !important
}

.site-footer {
    padding-top: 5rem;
    background: #0d110e;
    color: #e5ebe6
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid #323a33
}

.footer-cta h2 {
    margin: 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr 1.2fr;
    gap: 3rem;
    padding: 4rem 0
}

.footer-grid h2 {
    font-size: 1rem;
    letter-spacing: 0
}

.footer-grid a {
    display: block;
    margin: .45rem 0;
    color: #c7d0c8;
    font-size: .9rem
}

.footer-grid p {
    color: #aeb8af;
    font-size: .9rem
}

.footer-brand img {
    width: 210px;
    margin-bottom: 1.2rem
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.footer-badges span {
    padding: .35rem .5rem;
    border: 1px solid #3c473e;
    color: #c8da5a;
    font-size: .62rem;
    font-weight: 600
}

.footer-contact i {
    width: 22px;
    color: #c8da5a
}

.footer-contact p {
    display: flex;
    gap: .5rem
}

.footer-contact p strong {
    display: block;
    margin-bottom: .15rem;
    color: #e5ebe6;
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 0;
    border-top: 1px solid #323a33
}

.footer-legal p {
    margin: 0;
    color: #889289;
    font-size: .76rem
}

.footer-credit {
    display: block;
    margin-top: .2rem
}

.footer-credit a {
    color: #c8da5a;
    font-weight: 600;
    transition: color var(--ease)
}

.footer-credit a:hover {
    color: #e1ee8f
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.gallery-page {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%)
}

.gallery-page .section-heading {
    display: block;
    text-align: center
}

.gallery-page .section-heading h2 {
    max-width: 18ch;
    margin-inline: auto
}

.gallery-masonry {
    column-count: 4;
    column-gap: 1rem
}

.gallery-masonry__item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    overflow: hidden;
    break-inside: avoid;
    border: 0;
    border-radius: 16px;
    background: #e8ece5;
    box-shadow: 0 9px 24px rgba(17, 21, 18, .08);
    cursor: zoom-in
}

.gallery-masonry__item img {
    width: 100%;
    height: auto;
    transition: transform .45s ease, filter .45s ease
}

.gallery-masonry__item>span {
    position: absolute;
    right: .7rem;
    bottom: .7rem;
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 30px;
    padding: 0 .55rem;
    border-radius: 999px;
    background: rgba(17, 21, 18, .78);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity var(--ease)
}

.gallery-masonry__item:hover img,
.gallery-masonry__item:focus-visible img {
    filter: brightness(.82);
    transform: scale(1.025)
}

.gallery-masonry__item:hover>span,
.gallery-masonry__item:focus-visible>span {
    opacity: 1
}

.gallery-page__empty {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    text-align: center
}

.lightbox[hidden] {
    display: none
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 4rem;
    background: rgba(5, 8, 6, .94)
}

.lightbox img {
    max-width: 95vw;
    max-height: 88vh;
    object-fit: contain
}

.lightbox--gallery {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem
}

.lightbox__stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: calc(100vh - 8rem);
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.lightbox__stage::-webkit-scrollbar {
    display: none
}

.lightbox__stage img {
    transition: transform .25s ease;
    cursor: zoom-in
}

.lightbox.is-zoomed .lightbox__stage {
    place-items: start center;
    overflow: auto
}

.lightbox.is-zoomed .lightbox__stage img {
    max-width: none;
    max-height: none;
    width: min(1600px, 150vw);
    cursor: zoom-out
}

.lightbox__nav,
.lightbox__zoom {
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(17, 21, 18, .65);
    color: #fff;
    cursor: pointer
}

.lightbox__nav {
    z-index: 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1rem
}

.lightbox__counter {
    position: fixed;
    bottom: 1.3rem;
    left: 50%;
    padding: .4rem .8rem;
    border-radius: 999px;
    background: rgba(17, 21, 18, .75);
    color: #fff;
    font-size: .75rem;
    transform: translateX(-50%)
}

.lightbox__zoom {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    padding: .55rem .9rem;
    border-radius: 999px;
    font-weight: 600
}

.lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.team-page {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%)
}

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

.team-card {
    display: grid;
    grid-template-columns: minmax(190px, 36%) minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 21, 18, .07);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease)
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #b7c6a5;
    box-shadow: var(--shadow)
}

.team-card__photo {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: #e9ede4
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease
}

.team-card:hover .team-card__photo img {
    transform: scale(1.025)
}

.team-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.65rem
}

.team-card__role {
    display: inline-flex;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--lime-soft);
    color: var(--lime-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.team-card h2 {
    margin: .7rem 0 1.1rem;
    font-size: clamp(1.55rem, 2.2vw, 2rem)
}

.team-facts {
    display: grid;
    width: 100%;
    margin: 0;
    gap: .65rem
}

.team-facts div {
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--line)
}

.team-facts dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.team-facts dt i {
    width: 1rem;
    color: var(--magenta)
}

.team-facts dd {
    margin: .1rem 0 0;
    font-size: .98rem;
    font-weight: 600;
    line-height: 1.45
}

.team-training {
    width: 100%;
    margin-top: 1rem;
    padding: .85rem 1rem;
    border-left: 3px solid var(--lime);
    background: var(--surface)
}

.team-training strong {
    font-size: .88rem
}

.team-training ul {
    margin: .35rem 0 0;
    padding-left: 1rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65
}

.team-card__body>p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.75
}

/* Keep the full navigation for wide screens and prevent laptop-width overlap. */
@media(max-width:1390px) and (min-width:1081px) {
    .primary-nav {
        position: absolute;
        top: 78px;
        right: 0;
        display: none;
        width: min(360px, calc(100vw - 48px));
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .primary-nav.is-open {
        display: flex
    }

    .primary-nav a {
        padding: .45rem
    }

    .primary-nav a:after {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .nav-quote {
        display: none
    }
}

@media(max-width:1080px) {
    .contact-strip__links a:nth-child(4) {
        display: none
    }

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

    .team-card {
        grid-template-columns: minmax(220px, 32%) minmax(0, 1fr)
    }

    .home-brands__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .gallery-masonry {
        column-count: 3
    }

    .primary-nav {
        position: absolute;
        top: 78px;
        right: 24px;
        display: none;
        width: min(360px, calc(100vw - 48px));
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .primary-nav.is-open {
        display: flex
    }

    .primary-nav a {
        padding: .45rem
    }

    .primary-nav a:after {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .nav-quote {
        display: none
    }

    .feature-mosaic {
        grid-template-columns: 1fr 1fr
    }

    .feature-tile,
    .feature-tile--wide {
        grid-column: auto
    }

    .profile-list {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .profile,
    .profile--featured {
        grid-column: auto
    }

    .profile--featured {
        grid-column: 1/-1
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr
    }

    .footer-contact {
        grid-column: 1/-1
    }

    .credential dl {
        grid-template-columns: 1fr
    }

    .accreditation-marks {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .home-team__card,
    .home-team__card--featured {
        grid-column: span 3
    }

    .home-team__card--featured {
        grid-template-columns: 1fr
    }

    .home-team__card--featured figure {
        aspect-ratio: 1;
        min-height: 0
    }

    .home-recognition__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem
    }
}

@media(max-width:760px) {
    .team-card {
        grid-template-columns: 1fr
    }

    .team-card__photo {
        min-height: 0;
        aspect-ratio: 4/5
    }

    .team-card__body {
        padding: 1.35rem
    }

    .container {
        width: min(100% - 32px, var(--content))
    }

    .gallery-masonry {
        column-count: 2;
        column-gap: .75rem
    }

    .gallery-masonry__item {
        margin-bottom: .75rem;
        border-radius: 12px
    }

    .lightbox--gallery {
        grid-template-columns: 1fr;
        padding: 1rem
    }

    .lightbox__stage {
        height: calc(100vh - 5rem)
    }

    .lightbox__nav {
        position: absolute;
        top: 50%;
        width: 46px;
        height: 46px;
        transform: translateY(-50%)
    }

    .lightbox__nav--previous {
        left: .75rem
    }

    .lightbox__nav--next {
        right: .75rem
    }

    .accreditation-marks__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

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

    .home-team__card,
    .home-team__card--featured {
        grid-column: auto
    }

    .home-recognition__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .home-brands__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem
    }

    .contact-strip__inner {
        justify-content: center
    }

    .contact-strip__inner>span,
    .contact-strip__links a:nth-child(n+2) {
        display: none
    }

    .site-logo img {
        width: 158px
    }

    .header-accreditation span {
        display: none
    }

    .header-accreditation img {
        width: 40px;
        height: 40px
    }

    .hero-slider__track {
        height: 630px
    }

    .hero-slide__overlay {
        background: linear-gradient(0deg, rgba(10, 14, 11, .95), rgba(10, 14, 11, .32))
    }

    .hero-slide__content {
        top: auto;
        bottom: 100px;
        transform: none
    }

    .hero-slide__content h1,
    .hero-slide__content h2 {
        font-size: clamp(2.25rem, 11vw, 3.5rem)
    }

    .hero-controls {
        display: none
    }

    .trust-dock {
        position: relative;
        bottom: auto;
        grid-template-columns: 1fr 1fr
    }

    .trust-dock div {
        padding: .9rem
    }

    .about-intro {
        padding-top: var(--section)
    }

    .editorial-grid,
    .capability-band__grid,
    .page-banner__grid,
    .contact-layout,
    .testing-story {
        grid-template-columns: 1fr;
        gap: 2.2rem
    }

    .ceo-message__card {
        grid-template-columns: 1fr
    }

    .ceo-message__portrait {
        min-height: 0;
        aspect-ratio: 1
    }

    .ceo-message__content:before {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 5rem
    }

    .about-visual>img,
    .capability-band img {
        height: 400px
    }

    .accreditation-float {
        right: 10px
    }

    .check-list,
    .service-list,
    .quality-grid,
    .credential-grid,
    .certificate-gallery,
    .split-panels,
    .measure-grid {
        grid-template-columns: 1fr
    }

    .feature-mosaic {
        grid-template-columns: 1fr
    }

    .feature-tile,
    .feature-tile--wide {
        height: 310px
    }

    .service-item:nth-child(odd) {
        border-right: 0
    }

    .section-heading {
        display: block
    }

    .section-heading>p {
        margin-top: 1rem
    }

    .masonry-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-auto-rows: 210px
    }

    .gallery-item--tall {
        grid-row: span 2
    }

    .gallery-item--wide {
        grid-column: auto
    }

    .page-banner {
        padding: 3.5rem 0
    }

    .page-banner--image h1 {
        white-space: normal
    }

    .page-banner img {
        height: 280px
    }

    .profile-list {
        grid-template-columns: 1fr
    }

    .profile {
        grid-template-rows: auto auto
    }

    .profile--featured {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto
    }

    .profile--featured:nth-child(2) {
        grid-template-columns: 1fr
    }

    .profile--featured:nth-child(2) .profile__media,
    .profile--featured:nth-child(2)>div {
        grid-column: 1
    }

    .profile--featured:nth-child(2) .profile__media {
        grid-row: 1
    }

    .profile--featured:nth-child(2)>div {
        grid-row: 2
    }

    .profile--featured>div {
        padding: 1.45rem
    }

    .profile h3 {
        min-height: 1.44rem;
        font-size: 1.2rem
    }

    .inline-cta .container,
    .footer-cta,
    .footer-legal {
        display: block
    }

    .inline-cta .button,
    .footer-cta .button {
        margin-top: 1.2rem
    }

    .capability-index {
        position: static;
        overflow-x: auto
    }

    .service-story {
        grid-template-columns: 35px 50px 1fr;
        gap: .7rem
    }

    .service-story__icon {
        width: 48px;
        height: 48px
    }

    .testing-story:before {
        display: none
    }

    .testing-story--reverse .testing-story__media,
    .testing-story--reverse>div:last-child {
        grid-column: auto;
        grid-row: auto
    }

    .testing-story__media img {
        height: 300px
    }

    .scope-panel .container {
        grid-template-columns: auto 1fr
    }

    .scope-panel .button {
        grid-column: 1/-1
    }

    .certificate-frame img {
        height: 420px
    }

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

    .field--full {
        grid-column: auto
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: 1/-1
    }

    .lightbox {
        padding: 1rem
    }
}

@media(max-width:420px) {
    .nav-shell {
        gap: .55rem
    }

    .header-brand {
        gap: .45rem
    }

    .site-logo img {
        width: 128px
    }

    .header-accreditation {
        padding-left: .45rem
    }

    .header-accreditation img {
        width: 34px;
        height: 34px
    }

    .gallery-masonry {
        column-count: 1
    }

    .hero-slider__track {
        height: 600px
    }

    .button-row {
        align-items: stretch
    }

    .button-row .button {
        width: 100%
    }

    .masonry-gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 220px
    }

    .gallery-item--tall {
        grid-row: auto
    }

    .profile,
    .profile--featured {
        grid-template-rows: auto auto
    }

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

    .service-story {
        grid-template-columns: 35px 1fr
    }

    .service-story__icon {
        grid-column: 2
    }

    .service-story>div:last-child {
        grid-column: 1/-1
    }

    .contact-actions {
        flex-direction: column
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
