:root {
    --navy: #082733;
    --navy-deep: #061c25;
    --blue: #126481;
    --blue-light: #2d839f;
    --cyan: #54b9ce;
    --white: #ffffff;
    --off-white: #f5f7f7;
    --paper: #edf1f2;
    --text: #15272d;
    --muted: #65747a;
    --line: #d5dde0;
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

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

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

.container {
    width: min(92%, var(--max));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(8,39,51,.10);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 42px;
}

.brand {
    margin-right: auto;
    height: 64px;
    display: flex;
    align-items: center;
}

.site-logo {
    width: auto;
    height: 60px;
    max-width: 250px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    position: relative;
    padding: 33px 0 29px;
    font-size: 14px;
    font-weight: 600;
    color: #46565c;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 23px;
    height: 2px;
    background: var(--blue);
    transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}

.main-nav a.active {
    color: var(--navy);
}

.header-contact {
    min-width: 104px;
    padding: 12px 20px;
    text-align: center;
    border: 1px solid var(--navy);
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.header-contact:hover {
    color: white;
    background: var(--navy);
}


/* HERO */

.home-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    background:
        radial-gradient(circle at 78% 46%, rgba(49,144,173,.23), transparent 27%),
        linear-gradient(116deg, #061c25 0%, #082d3b 55%, #0b4052 100%);
}

.survey-grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, transparent 8%, black 70%);
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38%;
    height: 4px;
    background: var(--cyan);
}

.hero-layout {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    padding: 105px 0 115px;
}

.hero-copy {
    max-width: 820px;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,.7);
}

.hero-kicker span {
    width: 35px;
    height: 1px;
    background: var(--cyan);
}

.home-hero h1 {
    margin: 0;
    max-width: 830px;
    font-size: clamp(54px, 6.3vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

.home-hero h1 em {
    color: #86cedd;
    font-style: normal;
    font-weight: 400;
}

.hero-description {
    max-width: 650px;
    margin: 31px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 39px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

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

.btn-primary:hover {
    background: #dff3f6;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.38);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,.08);
}


/* SURVEY SCOPE GRAPHIC */

.hero-graphic {
    position: relative;
    width: 410px;
    height: 410px;
    justify-self: end;
    opacity: .72;
}

.scope {
    position: absolute;
    border: 1px solid rgba(145,220,233,.34);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scope-large {
    width: 395px;
    height: 395px;
}

.scope-medium {
    width: 250px;
    height: 250px;
}

.scope-small {
    width: 90px;
    height: 90px;
}

.scope-horizontal,
.scope-vertical {
    position: absolute;
    background: rgba(145,220,233,.34);
}

.scope-horizontal {
    height: 1px;
    width: 100%;
    top: 50%;
}

.scope-vertical {
    width: 1px;
    height: 100%;
    left: 50%;
}

.scope-point {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(84,185,206,.13);
}

.coordinate {
    position: absolute;
    color: rgba(175,226,236,.75);
    font-size: 10px;
    font-family: monospace;
    letter-spacing: .12em;
}

.coordinate-one {
    top: 5px;
    left: 49%;
}

.coordinate-two {
    right: -5px;
    top: 52%;
}

.coordinate-three {
    left: 8px;
    bottom: 10px;
}


/* TRUST BAR */

.trust-strip {
    position: relative;
    z-index: 4;
    background: white;
    border-bottom: 1px solid var(--line);
}

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

.trust-item {
    min-height: 118px;
    padding: 27px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 1px solid var(--line);
}

.trust-item strong {
    color: var(--navy);
    font-size: 25px;
    line-height: 1.1;
}

.trust-item span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}


/* GENERAL SECTIONS */

.section {
    padding: 120px 0;
}

.section-kicker {
    color: var(--blue);
}

.section-kicker.light {
    color: #7fc8d8;
}

h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 4.4vw, 61px);
    line-height: 1.05;
    letter-spacing: -.045em;
}


/* ABOUT */

.about-layout {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 130px;
}

.about-content {
    padding-top: 39px;
}

.about-content p {
    margin-top: 0;
    color: var(--muted);
    font-size: 16px;
}

.about-content .lead {
    margin-bottom: 21px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.55;
}

.arrow-link {
    display: inline-flex;
    gap: 35px;
    margin-top: 22px;
    padding-bottom: 5px;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
    font-size: 13px;
    font-weight: 800;
}


/* SERVICES */

.home-services {
    background: var(--off-white);
}

.section-top {
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 58px;
}

.section-intro {
    margin: 0 0 5px;
    max-width: 510px;
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #cbd4d7;
    border-left: 1px solid #cbd4d7;
}

.service-box {
    min-height: 360px;
    padding: 34px 36px;
    background: white;
    border-right: 1px solid #cbd4d7;
    border-bottom: 1px solid #cbd4d7;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-box:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(8,39,51,.10);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-index {
    color: #87959a;
    font-size: 11px;
    font-family: monospace;
}

.service-image {
    width: 87px;
    height: 87px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.service-bottom {
    position: relative;
    margin-top: auto;
    padding-right: 80px;
}

.service-bottom h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.025em;
}

.service-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.service-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 25px;
    color: var(--blue);
}


/* CAPABILITY */

.capability {
    padding: 120px 0;
    color: white;
    background: var(--navy);
}

.capability-layout {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    align-items: center;
    gap: 100px;
}

.capability-number {
    color: white;
    font-size: clamp(120px,15vw,220px);
    font-weight: 700;
    line-height: .7;
    letter-spacing: -.08em;
}

.capability-number span {
    display: block;
    margin: 25px 0 0 10px;
    color: #72bfd0;
    font-size: 14px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.capability h2 {
    color: white;
}

.capability-copy > p:last-child {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.65);
}


/* INDUSTRIES */

.industry-heading {
    max-width: 800px;
    margin-bottom: 65px;
}

.industry-list {
    border-top: 1px solid var(--line);
}

.industry-list > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    min-height: 86px;
    border-bottom: 1px solid var(--line);
    transition: padding-left .2s ease, background .2s ease;
}

.industry-list > div:hover {
    padding-left: 14px;
    background: var(--off-white);
}

.industry-list span {
    color: #929da1;
    font-family: monospace;
    font-size: 11px;
}

.industry-list strong {
    color: var(--navy);
    font-size: 22px;
}


/* CTA */

.home-cta {
    padding: 105px 0;
    background:
        linear-gradient(125deg, #0b4255, #0a2936);
    color: white;
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.home-cta h2 {
    color: white;
}

.cta-circle {
    width: 170px;
    height: 170px;
    flex: 0 0 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    color: var(--navy);
    transition: transform .25s ease;
}

.cta-circle:hover {
    transform: scale(1.05);
}

.cta-circle span {
    font-size: 14px;
    font-weight: 700;
}

.cta-circle strong {
    margin-top: 7px;
    font-size: 20px;
}


/* FOOTER */

.site-footer {
    padding: 80px 0 25px;
    background: var(--navy-deep);
    color: rgba(255,255,255,.57);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr .7fr 1fr 1.1fr;
    gap: 70px;
}

.footer-logo {
    width: auto;
    height: 68px;
    max-width: 230px;
    object-fit: contain;
    margin-bottom: 24px;
    background: white;
    padding: 5px;
}

.footer-company p {
    max-width: 280px;
    font-size: 13px;
}

.footer-column h4 {
    margin: 0 0 22px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.footer-column a {
    display: block;
    margin: 10px 0;
    font-size: 13px;
}

.footer-column a:hover {
    color: white;
}

.footer-address p {
    font-size: 13px;
}

.footer-bottom {
    margin-top: 65px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 11px;
}


/* TABLET */

@media (max-width: 950px) {

    .header-contact {
        display: none;
    }

    .main-nav {
        gap: 19px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        display: none;
    }

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

    .about-layout,
    .section-top,
    .capability-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        padding-top: 0;
    }

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


/* MOBILE */

@media (max-width: 650px) {

    .site-header {
        position: relative;
    }

    .header-inner {
        height: auto;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .brand {
        height: 55px;
    }

    .site-logo {
        height: 52px;
    }

    .main-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .main-nav a {
        padding: 7px 0 11px;
        white-space: nowrap;
    }

    .main-nav a::after {
        bottom: 4px;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-layout {
        padding: 85px 0 90px;
    }

    .home-hero h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .trust-item {
        padding: 22px 17px;
    }

    .section {
        padding: 85px 0;
    }

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

    .service-box {
        min-height: 320px;
    }

    .capability {
        padding: 90px 0;
    }

    .capability-number {
        font-size: 120px;
    }

    .cta-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-circle {
        width: 140px;
        height: 140px;
        flex-basis: 140px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

/* Tighter header */
.header-inner {
    height: 72px;
}

.brand {
    height: 50px;
}

.site-logo {
    height: 46px;
}

.main-nav a {
    padding: 25px 0 21px;
}

.main-nav a::after {
    bottom: 16px;
}

/* Reduce homepage hero/banner height */
.hero {
    min-height: 480px;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Make homepage hero shorter */
.home-hero {
    min-height: 520px;
}

.hero-layout {
    padding-top: 70px;
    padding-bottom: 75px;
}

/* Refine credentials strip */
.trust-strip {
    background: #f8fafb;
    border-top: 1px solid rgba(8,39,51,.08);
    border-bottom: 1px solid rgba(8,39,51,.10);
}

.trust-grid {
    position: relative;
}

.trust-item {
    position: relative;
    min-height: 104px;
    padding: 24px 28px 22px 42px;
    background: transparent;
}

.trust-item::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    transform: translateY(-50%);
}

.trust-item::after {
    content: "";
    position: absolute;
    left: 23px;
    top: calc(50% - 11px);
    width: 1px;
    height: 22px;
    background: rgba(18,100,129,.22);
}

.trust-item strong {
    font-size: 23px;
    letter-spacing: -.025em;
}

.trust-item span {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: .025em;
}

/* Refine company introduction */

.home-about {
    position: relative;
    overflow: hidden;
}

.home-about::after {
    content: "1970";
    position: absolute;
    right: -18px;
    bottom: -45px;
    color: rgba(8,39,51,.035);
    font-size: 220px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.08em;
    pointer-events: none;
}

.about-layout {
    position: relative;
    z-index: 2;
}

.about-heading {
    position: relative;
    padding-left: 32px;
}

.about-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 1px;
    background: var(--line);
}

.about-heading::after {
    content: "";
    position: absolute;
    left: -4px;
    top: 3px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    background: white;
}

.about-content {
    position: relative;
    padding-top: 36px;
}

.about-content .lead {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.about-content .lead::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 2px;
    background: var(--blue);
}

/* Premium service cards */

.services-grid {
    gap: 16px;
    border: 0;
}

.service-box {
    position: relative;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #d5dde0;
    background: #ffffff;
}

.service-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--blue);
    transition: height .3s ease;
}

.service-box:hover::before {
    height: 100%;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(8,39,51,.08);
}

.service-top {
    position: relative;
    min-height: 110px;
}

.service-index {
    position: relative;
    padding-left: 20px;
    font-size: 11px;
    letter-spacing: .1em;
}

.service-index::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background: var(--blue);
}

.service-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 92px;
    height: 92px;
    object-fit: contain;
    opacity: .88;
}

.service-bottom {
    padding-right: 60px;
}

.service-bottom h3 {
    font-size: 27px;
    margin-bottom: 13px;
}

.service-bottom p {
    max-width: 410px;
    line-height: 1.65;
}

.service-arrow {
    width: 42px;
    height: 42px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4dde0;
    border-radius: 50%;
    font-size: 17px;
    transition: .25s ease;
}

.service-box:hover .service-arrow {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

@media (max-width: 650px) {
    .services-grid {
        gap: 12px;
    }

    .service-box {
        min-height: 300px;
    }
}

/* Refine 56 years / experience section */

.capability {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--navy);
    background-size: 55px 55px;
}

.capability::before {
    content: "DATUM 01";
    position: absolute;
    right: 45px;
    top: 32px;
    color: rgba(255,255,255,.22);
    font-family: monospace;
    font-size: 10px;
    letter-spacing: .18em;
}

.capability::after {
    content: "1°17'N  /  103°51'E";
    position: absolute;
    right: 45px;
    bottom: 32px;
    color: rgba(255,255,255,.22);
    font-family: monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.capability-layout {
    position: relative;
}

.capability-number {
    position: relative;
    padding-right: 70px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.capability-number::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid #72bfd0;
    border-radius: 50%;
    background: var(--navy);
    transform: translateY(-50%);
}

.capability-copy {
    max-width: 720px;
}

.capability-copy h2 {
    position: relative;
    padding-bottom: 30px;
}

.capability-copy h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 2px;
    background: #72bfd0;
}

@media (max-width: 950px) {
    .capability-number {
        padding-right: 0;
        padding-bottom: 40px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .capability-number::before {
        right: auto;
        left: 0;
        top: auto;
        bottom: -5px;
    }
}

/* Refine industries / where we work */

.industries {
    position: relative;
    background: #ffffff;
}

.industry-heading {
    max-width: 860px;
}

.industry-list {
    border-top: 1px solid var(--line);
}

.industry-list > div {
    position: relative;
    grid-template-columns: 90px 1fr 60px;
    min-height: 92px;
    padding: 0 10px 0 0;
    overflow: hidden;
}

.industry-list > div::after {
    content: "↗";
    grid-column: 3;
    justify-self: end;
    color: #9ca8ac;
    font-size: 20px;
    transition:
        transform .25s ease,
        color .25s ease;
}

.industry-list > div::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width .35s ease;
}

.industry-list > div:hover {
    padding-left: 18px;
    background: #f7f9fa;
}

.industry-list > div:hover::before {
    width: 100%;
}

.industry-list > div:hover::after {
    color: var(--blue);
    transform: translate(3px, -3px);
}

.industry-list span {
    color: #8b999e;
    font-size: 10px;
    letter-spacing: .12em;
}

.industry-list strong {
    color: var(--navy);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.02em;
}

@media (max-width: 650px) {
    .industry-list > div {
        grid-template-columns: 50px 1fr 35px;
        min-height: 78px;
    }

    .industry-list strong {
        font-size: 19px;
    }
}

/* Refine final CTA */

.home-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 50%, rgba(84,185,206,.16), transparent 22%),
        linear-gradient(120deg, #0a3545, #071f29);
}

.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 52px 52px;
}

.cta-layout {
    position: relative;
    z-index: 2;
}

.cta-circle {
    position: relative;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 15px 45px rgba(0,0,0,.14);
}

.cta-circle::before {
    content: "";
    position: absolute;
    width: 192px;
    height: 192px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.cta-circle:hover {
    transform: scale(1.06);
}


/* Refine footer */

.site-footer {
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--cyan) 0 22%,
        transparent 22%
    );
}

.footer-main {
    align-items: start;
}

.footer-company {
    padding-right: 40px;
}

.footer-logo {
    height: 60px;
    background: white;
    border-radius: 2px;
}

.footer-column h4 {
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 1px;
    background: rgba(114,191,208,.7);
}

.footer-bottom {
    color: rgba(255,255,255,.38);
    letter-spacing: .04em;
}

/* Multibeam hero artwork */

.hero-multibeam {
    position: relative;
    width: 100%;
    height: 440px;
    justify-self: end;
    overflow: hidden;
}

.multibeam-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
    mix-blend-mode: screen;
    filter:
        saturate(0.95)
        contrast(1.05)
        brightness(0.82);
    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.55) 15%,
            black 35%,
            black 100%
        );
}

@media (max-width: 950px) {
    .hero-multibeam {
        display: none;
    }
}

/* Force multibeam artwork visible */
.hero-multibeam {
    display: block !important;
    position: relative;
    width: 100%;
    height: 430px;
    overflow: visible;
}

.multibeam-image {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    opacity: 0.75;
    mix-blend-mode: normal;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

/* Final multibeam hero artwork */
.hero-multibeam {
    display: block !important;
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.multibeam-image {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;

    opacity: 0.58;

    mix-blend-mode: screen;

    filter:
        saturate(.85)
        brightness(.82)
        contrast(1.05);

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.25) 12%,
        black 35%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.25) 12%,
        black 35%,
        black 100%
    );
}

@media (max-width: 950px) {
    .hero-multibeam {
        display: none !important;
    }
}

/* Keep hero the same maximum width as page content */
.home-hero {
    width: calc(100% - 48px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .home-hero {
        width: 100%;
    }
}

/* Cohesive service illustrations */

.service-visual {
    position: absolute;
    right: 26px;
    top: 18px;

    width: 125px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: .96;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.service-visual svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.service-box:hover .service-visual {
    transform: translateY(-4px) scale(1.04);
}

/* subtle visual glow */
.service-visual::before {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(84,185,206,.13),
            rgba(84,185,206,0) 70%
        );

    z-index: -1;
}

.service-top {
    position: relative;
    min-height: 118px;
}

/* Balance homepage hero typography */
.home-hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    max-width: 720px;
}

/* Keep hero content comfortably inside the container */
.hero-copy {
    padding-left: 18px;
}

/* Give CTA buttons breathing room from the edge */
.hero-buttons {
    margin-left: 0;
    padding-left: 0;
}

/* Slightly reduce supporting copy for better balance */
.hero-description {
    max-width: 600px;
    font-size: 16px;
}

/* Mobile adjustments */
@media (max-width: 650px) {
    .home-hero h1 {
        font-size: 42px;
    }

    .hero-copy {
        padding-left: 0;
    }
}

/* Hero company identity */
.hero-identity {
    margin-bottom: 24px;
}

.hero-company-name {
    margin-bottom: 9px;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 650;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #ffffff;
}

.hero-identity .hero-kicker {
    margin-bottom: 0;
}

@media (max-width: 650px) {
    .hero-company-name {
        font-size: 16px;
    }
}

/* Refined USPL header branding */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand-crest {
    width: 38px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: var(--navy);
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -0.015em;
}

.brand-copy span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Mobile navigation */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--navy);
    transition: .25s ease;
}

@media (max-width: 760px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0 18px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 4px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }
}

/* CONTACT PAGE */

.contact-hero {
    padding: 90px 0;
    color: white;
    background:
        linear-gradient(
            120deg,
            #071f29,
            #0b4255
        );
}

.contact-hero h1 {
    margin: 0;
    max-width: 800px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.contact-hero > .container > p:last-child {
    margin-top: 22px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
}


.contact-section {
    padding: 100px 0 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.contact-details h2 {
    margin-bottom: 50px;
}

.contact-detail-block {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.contact-detail-block:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-detail-block span {
    display: block;
    margin-bottom: 10px;

    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-detail-block p {
    margin: 0;
    color: var(--muted);
}


.contact-form-wrap {
    padding: 42px;
    background: #f5f7f7;
    border: 1px solid var(--line);
}

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

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;

    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    border: 1px solid #cbd5d8;
    border-radius: 0;

    background: white;
    color: var(--text);

    padding: 14px 15px;

    font: inherit;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-field input,
.form-field select {
    height: 50px;
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(18,100,129,.08);
}

.contact-submit {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    gap: 35px;

    border: 0;

    background: var(--navy);
    color: white;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.contact-submit:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.form-status {
    margin: 15px 0 0;
    min-height: 22px;

    color: var(--blue);
    font-size: 13px;
}


@media (max-width: 850px) {

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}


@media (max-width: 600px) {

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

    .contact-form-wrap {
        padding: 26px 20px;
    }

}

/* SERVICES PAGE */

.services-page-hero {
    padding: 95px 0;
    color: white;
    background:
        linear-gradient(
            118deg,
            #061c25,
            #0b4255
        );
}

.services-page-hero h1 {
    margin: 0;
    max-width: 940px;
    color: white;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.services-page-hero > .container > p:last-child {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
}


.services-intro-layout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 110px;
}

.services-intro-layout > div:last-child {
    padding-top: 38px;
    color: var(--muted);
}

.services-lead {
    color: var(--text);
    font-size: 20px;
    line-height: 1.55;
}


.service-detail {
    padding: 105px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 85px 1fr .9fr;
    gap: 55px;
    align-items: start;
}

.service-detail-number {
    padding-top: 7px;

    color: #94a0a4;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: .12em;
}

.service-detail-heading h2 {
    max-width: 590px;
    font-size: clamp(34px, 3.6vw, 50px);
}

.service-detail-content {
    padding-top: 39px;
}

.service-detail-content > p {
    margin: 0 0 30px;
    color: var(--muted);
    line-height: 1.7;
}

.service-list {
    margin-bottom: 34px;
    border-top: 1px solid var(--line);
}

.service-list span {
    display: block;
    position: relative;

    padding: 12px 0 12px 19px;

    border-bottom: 1px solid var(--line);

    color: var(--navy);
    font-size: 14px;
}

.service-list span::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    border: 1px solid var(--blue);
    border-radius: 50%;

    transform: translateY(-50%);
}


.service-detail-dark {
    color: white;
    background:
        linear-gradient(
            120deg,
            #071f29,
            #0a3545
        );
}

.service-detail-dark h2 {
    color: white;
}

.service-detail-dark .service-detail-number {
    color: rgba(255,255,255,.38);
}

.service-detail-dark .service-detail-content > p {
    color: rgba(255,255,255,.65);
}

.service-detail-dark .service-list {
    border-color: rgba(255,255,255,.15);
}

.service-detail-dark .service-list span {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.15);
}

.arrow-link-light {
    color: white;
    border-color: rgba(255,255,255,.5);
}


.service-detail-soft {
    background: var(--off-white);
}


.footer-brand-copy strong {
    color: white;
    font-size: 20px;
}

.footer-brand-copy span {
    color: rgba(255,255,255,.48);
}


@media (max-width: 900px) {

    .services-intro-layout,
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-content,
    .services-intro-layout > div:last-child {
        padding-top: 0;
    }

    .service-detail-number {
        padding-top: 0;
    }

}

/* ABOUT PAGE */

.about-page-hero {
    padding: 95px 0;
    color: white;
    background:
        linear-gradient(
            118deg,
            #061c25,
            #0b4255
        );
}

.about-page-hero h1 {
    margin: 0;
    max-width: 900px;
    color: white;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.about-page-hero > .container > p:last-child {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
}


.about-story-layout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 110px;
}

.about-story-copy {
    padding-top: 37px;
}

.about-story-copy p {
    color: var(--muted);
}

.about-story-lead {
    color: var(--text) !important;
    font-size: 20px;
    line-height: 1.55;
}


.about-timeline {
    padding: 0 0 110px;
}

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

.timeline-item {
    min-height: 220px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.timeline-item span {
    display: block;
    margin-bottom: 45px;

    color: var(--blue);
    font-family: monospace;
    font-size: 12px;
    letter-spacing: .12em;
}

.timeline-item strong {
    display: block;
    margin-bottom: 12px;

    color: var(--navy);
    font-size: 22px;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


.about-capability {
    background: var(--off-white);
}

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

.about-capability-card {
    padding: 34px;
    min-height: 240px;

    background: white;
    border: 1px solid var(--line);
}

.about-capability-card > span {
    display: block;
    margin-bottom: 50px;

    color: var(--blue);
    font-family: monospace;
    font-size: 11px;
}

.about-capability-card h3 {
    margin: 0 0 13px;

    color: var(--navy);
    font-size: 24px;
}

.about-capability-card p {
    margin: 0;
    color: var(--muted);
}


.about-values {
    padding: 110px 0;
    color: white;
    background: var(--navy);
}

.about-values-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 110px;
}

.about-values h2 {
    color: white;
}

.about-values-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.about-values-list > div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;

    padding: 26px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.about-values-list span {
    color: #72bfd0;
    font-family: monospace;
    font-size: 11px;
}

.about-values-list strong {
    display: block;
    margin-bottom: 7px;

    color: white;
    font-size: 19px;
}

.about-values-list p {
    margin: 0;
    color: rgba(255,255,255,.62);
}


@media (max-width: 900px) {

    .about-story-layout,
    .about-values-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-story-copy {
        padding-top: 0;
    }

    .timeline-grid,
    .about-capability-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   FINAL HEADER + HERO LAYOUT
   ========================================================= */

/* Overall page width */
:root {
    --hero-max: 1440px;
}


/* ---------- HEADER ---------- */

.site-header {
    position: relative;
    top: auto;

    background: #061d27;
    border-bottom: 1px solid rgba(255,255,255,.12);

    backdrop-filter: none;
}

.header-inner {
    width: min(94%, var(--hero-max));
    max-width: var(--hero-max);

    height: 98px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 38px;

    padding: 0;
}


/* Logo / company identity */

.brand {
    display: flex;
    align-items: center;

    gap: 14px;
    height: auto;

    margin-right: auto;
}

.brand-crest {
    width: 48px;
    height: 60px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    color: #ffffff;

    font-size: 17px;
    font-weight: 750;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand-copy span {
    margin-top: 5px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.main-nav a {
    position: relative;

    padding: 38px 0 34px;

    color: rgba(255,255,255,.88);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 27px;

    height: 2px;

    background: #58bfd0;

    transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}


/* Enquire */

.header-contact {
    min-width: 126px;

    padding: 15px 22px;

    border: 1px solid #62c7d8;

    color: #ffffff;
    background: transparent;

    text-align: center;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.header-contact:hover {
    background: #62c7d8;
    color: #061d27;
}


/* ---------- HERO OUTER ---------- */

.home-hero {
    position: relative;

    width: 100%;
    max-width: none;

    min-height: 0;

    margin: 0;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(34,125,150,.16),
            transparent 31%
        ),
        linear-gradient(
            115deg,
            #061b25 0%,
            #082936 54%,
            #0a3545 100%
        );
}


/* Technical grid */

.survey-grid {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.14) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.14) 1px,
            transparent 1px
        );

    background-size: 62px 62px;

    mask-image:
        linear-gradient(
            to right,
            transparent 3%,
            black 60%,
            black 100%
        );
}


/* Main content constrained like rest of website */

.hero-layout {
    position: relative;
    z-index: 2;

    width: min(94%, var(--hero-max));
    max-width: var(--hero-max);

    margin: 0 auto;

    padding: 82px 0 88px;

    display: grid;

    grid-template-columns:
        minmax(520px, .95fr)
        minmax(560px, 1.05fr);

    align-items: center;

    gap: 42px;
}


/* ---------- HERO TEXT ---------- */

.hero-copy {
    max-width: 650px;

    padding-left: 0;
}


/* Company name above headline */

.hero-identity {
    margin-bottom: 30px;
}

.hero-company-name {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.2;

    font-weight: 750;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 13px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 10px;

    font-weight: 750;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.hero-kicker span {
    width: 35px;
    height: 2px;

    background: #62c7d8;
}


/* Main headline */

.home-hero h1 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(48px, 4.65vw, 70px);

    line-height: .99;

    letter-spacing: -.045em;

    font-weight: 700;
}

.home-hero h1 em {
    display: inline-block;

    margin-top: 8px;

    color: #75cad9;

    font-style: normal;
    font-weight: 400;
}


/* Supporting description */

.hero-description {
    max-width: 590px;

    margin: 32px 0 0;

    color: rgba(255,255,255,.72);

    font-size: 16px;
    line-height: 1.75;
}


/* Buttons */

.hero-buttons {
    margin-top: 34px;

    padding: 0;

    display: flex;

    gap: 16px;
}

.hero-buttons .btn {
    min-height: 54px;

    padding: 0 28px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .015em;
}

.hero-buttons .btn-primary {
    background: #ffffff;
    color: #082733;
}

.hero-buttons .btn-primary:hover {
    background: #def4f7;
}

.hero-buttons .btn-outline {
    border: 1px solid rgba(255,255,255,.48);

    background: transparent;
    color: #ffffff;
}


/* ---------- MULTIBEAM VISUAL ---------- */

.hero-multibeam {
    position: relative;

    display: block !important;

    width: 100%;
    height: 455px;

    margin: 0;

    overflow: visible;
}

.multibeam-image {
    display: block !important;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center right;

    opacity: .66;

    mix-blend-mode: screen;

    filter:
        saturate(1.05)
        brightness(.84)
        contrast(1.04);

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.35) 9%,
            black 26%,
            black 100%
        );

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.35) 9%,
            black 26%,
            black 100%
        );
}


/* Short cyan bottom datum line */

.home-hero::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35%;
    height: 3px;

    background: #62c7d8;
}


/* ---------- TABLET ---------- */

@media (max-width: 1050px) {

    .main-nav {
        gap: 23px;
    }

    .hero-layout {
        grid-template-columns: 1fr .8fr;

        gap: 20px;

        padding-top: 68px;
        padding-bottom: 72px;
    }

    .hero-multibeam {
        height: 390px;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 760px) {

    .site-header {
        background: #061d27;
    }

    .header-inner {
        height: auto;

        padding: 13px 0;

        flex-wrap: wrap;
    }

    .brand-crest {
        width: 38px;
        height: 48px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .header-contact {
        display: none;
    }


    /* hamburger */

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu-toggle span {
        background: #ffffff;
    }

    .main-nav {
        display: none;

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 0;

        border-bottom:
            1px solid rgba(255,255,255,.12);
    }

    .main-nav a::after {
        display: none;
    }


    /* Hero */

    .hero-layout {
        width: min(90%, var(--hero-max));

        grid-template-columns: 1fr;

        padding: 65px 0 70px;
    }

    .hero-company-name {
        font-size: 14px;
    }

    .home-hero h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-multibeam {
        display: none !important;
    }

}


/* Final hero headline size adjustment */
.home-hero h1 {
    font-size: clamp(40px, 3.4vw, 56px) !important;
    line-height: 1.04;
    max-width: 620px;
}

@media (max-width: 760px) {
    .home-hero h1 {
        font-size: 38px !important;
    }
}

/* Stronger company identity in hero */

.hero-company-name {
    position: relative;

    display: inline-block;

    margin-bottom: 18px;
    padding-bottom: 13px;

    color: #ffffff;

    font-size: clamp(24px, 2.2vw, 34px) !important;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: .035em;
    text-transform: uppercase;
}

/* Cyan company accent */
.hero-company-name::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 72px;
    height: 3px;

    background: #62c7d8;
}

/* Keep establishment line secondary */
.hero-kicker {
    color: rgba(255,255,255,.58);
    font-size: 10px;
}

/* More separation before slogan */
.hero-identity {
    margin-bottom: 34px;
}

@media (max-width: 760px) {

    .hero-company-name {
        font-size: 22px !important;
    }

}

/* =========================================================
   HOME ABOUT - restrained typography
   ========================================================= */

.home-about .about-heading h2 {
    font-size: clamp(32px, 3vw, 42px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    font-weight: 650 !important;
    max-width: 560px;
}

.home-about .section-kicker {
    font-size: 10px !important;
    letter-spacing: 0.18em;
}

/* Mobile */
@media (max-width: 760px) {
    .home-about .about-heading h2 {
        font-size: 30px !important;
        line-height: 1.15 !important;
    }
}

/* Force smaller homepage about heading */
section.home-about .about-heading h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    max-width: 500px !important;
}

/* =========================================================
   CONSISTENT SECTION HEADING SCALE
   Keep hero/page titles separate
   ========================================================= */

/* Homepage major section headings */
.home-about h2,
.home-services h2,
.capability h2,
.industries h2,
.home-cta h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
    font-weight: 650 !important;
}

/* Inner-page section headings */
.about-page h2,
.services-page h2,
.projects-page h2,
.contact-page h2,
.gallery-page h2,
.section h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
    font-weight: 650 !important;
}

/* Don't allow generic .section rule to enlarge homepage heading */
section.home-about .about-heading h2,
section.home-services h2 {
    font-size: 34px !important;
}

/* Mobile */
@media (max-width: 760px) {
    .home-about h2,
    .home-services h2,
    .capability h2,
    .industries h2,
    .home-cta h2,
    .about-page h2,
    .services-page h2,
    .projects-page h2,
    .contact-page h2,
    .gallery-page h2,
    .section h2 {
        font-size: 28px !important;
        line-height: 1.18 !important;
    }
}

/* =========================================================
   CONSISTENT SECTION HEADING SCALE
   Keep hero/page titles separate
   ========================================================= */

/* Homepage major section headings */
.home-about h2,
.home-services h2,
.capability h2,
.industries h2,
.home-cta h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
    font-weight: 650 !important;
}

/* Inner-page section headings */
.about-page h2,
.services-page h2,
.projects-page h2,
.contact-page h2,
.gallery-page h2,
.section h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
    font-weight: 650 !important;
}

/* Don't allow generic .section rule to enlarge homepage heading */
section.home-about .about-heading h2,
section.home-services h2 {
    font-size: 34px !important;
}

/* Mobile */
@media (max-width: 760px) {
    .home-about h2,
    .home-services h2,
    .capability h2,
    .industries h2,
    .home-cta h2,
    .about-page h2,
    .services-page h2,
    .projects-page h2,
    .contact-page h2,
    .gallery-page h2,
    .section h2 {
        font-size: 28px !important;
        line-height: 1.18 !important;
    }
}

/* Functional mobile menu animation */

.menu-toggle span {
    transition:
        transform .25s ease,
        opacity .25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Contact form feedback */

.contact-submit:disabled {
    opacity: .55;
    cursor: wait;
    transform: none;
}

.form-status.success {
    color: #1b7565;
}

.form-status.error {
    color: #a53d3d;
}

/* Contact form spam trap */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================================
   FINAL VERTICAL SPACING CLEANUP
   ========================================================= */

/* Remove unnecessary space below hero */
.home-hero {
    margin-bottom: 0 !important;
}

/* Keep statistics strip tight against hero */
.trust-strip {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Reduce excessive white gap before introduction */
.home-about.section {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
    margin-top: 0 !important;
}

/* Remove accidental spacing around sections */
.home-about {
    margin-top: 0 !important;
}

/* Keep about content aligned near top */
.about-layout {
    align-items: start !important;
}

/* Remove unnecessary internal top spacing */
.about-content {
    padding-top: 0 !important;
}

/* Mobile */
@media (max-width: 760px) {
    .home-about.section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}

/* FINAL homepage spacing correction */

/* Statistics directly into company intro */
.trust-strip + .home-about {
    padding-top: 28px !important;
    margin-top: 0 !important;
}

/* Keep the intro itself compact */
.home-about.section {
    padding-top: 28px !important;
    padding-bottom: 55px !important;
}

/* Remove excess spacing inside intro */
.home-about .section-kicker {
    margin-bottom: 16px !important;
}

.home-about .about-content {
    padding-top: 0 !important;
}

/* Keep heading aligned close to top */
.home-about .about-heading {
    padding-top: 0 !important;
}

/* Mobile */
@media (max-width: 760px) {
    .home-about.section {
        padding-top: 22px !important;
        padding-bottom: 40px !important;
    }
}

/* =========================================================
   USPL HOMEPAGE - FINAL COMPACT LAYOUT
   ========================================================= */

/* ---------- HEADER ---------- */

.site-header {
    min-height: 76px !important;
}

.site-header .container {
    min-height: 76px !important;
}


/* ---------- HERO ---------- */

/* Remove excessive empty space above/below hero contents */
.home-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

/* Main hero inner area */
.home-hero .hero-inner {
    min-height: 540px !important;
    height: auto !important;
    padding-top: 70px !important;
    padding-bottom: 55px !important;
}

/* Keep copy vertically compact */
.home-hero .hero-copy {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero artwork fills available hero area */
.home-hero .hero-multibeam {
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
}

/* Remove extra blank area around image */
.home-hero .multibeam-image {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center right !important;
}


/* ---------- TRUST / STATS ---------- */

.trust-strip {
    margin: 0 !important;
    padding: 0 !important;
}

.trust-item {
    min-height: 90px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}


/* ---------- ABOUT / INTRODUCTION ---------- */

/*
   This is the large white gap we were trying to remove.
   Keep only a modest amount of breathing room.
*/

.trust-strip + .home-about.section {
    margin: 0 !important;
    padding-top: 48px !important;
}

.home-about.section {
    margin: 0 !important;
    padding-top: 48px !important;
    padding-bottom: 60px !important;
}

.home-about .about-layout {
    align-items: start !important;
}

.home-about .about-heading,
.home-about .about-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.home-about .section-kicker {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
}

.home-about .about-heading h2 {
    margin-top: 0 !important;
    font-size: 34px !important;
    line-height: 1.15 !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 760px) {

    .site-header,
    .site-header .container {
        min-height: 68px !important;
    }

    .home-hero .hero-inner {
        min-height: 0 !important;
        padding-top: 45px !important;
        padding-bottom: 40px !important;
    }

    .trust-item {
        min-height: 80px !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }

    .trust-strip + .home-about.section,
    .home-about.section {
        padding-top: 32px !important;
        padding-bottom: 45px !important;
    }

}

/* =========================================================
   ACTUAL HOMEPAGE SPACING FIX
   ========================================================= */

/* Header */
.header-inner {
    height: 76px !important;
    min-height: 76px !important;
}

/* Hero */
.hero-layout {
    padding-top: 48px !important;
    padding-bottom: 42px !important;
    min-height: 0 !important;
}

/* Reduce empty dark area around right-side image */
.hero-multibeam {
    height: 390px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Stats bar */
.trust-item {
    min-height: 82px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* Pull About section much closer to stats */
.trust-strip + .home-about.section {
    padding-top: 30px !important;
}

.home-about.section {
    padding-top: 30px !important;
    padding-bottom: 48px !important;
}

/* Remove internal top offset */
.home-about .about-content {
    padding-top: 0 !important;
}

.home-about .about-heading {
    padding-top: 0 !important;
}

/* Mobile */
@media (max-width: 760px) {

    .header-inner {
        height: auto !important;
        min-height: 64px !important;
    }

    .hero-layout {
        padding-top: 38px !important;
        padding-bottom: 34px !important;
    }

    .home-about.section {
        padding-top: 24px !important;
        padding-bottom: 38px !important;
    }
}

/* =========================================================
   USPL FINAL TYPOGRAPHY SYSTEM
   ========================================================= */

html {
    font-size: 16px;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif !important;
    color: var(--navy);
}

/* ---------- NAVIGATION ---------- */

.main-nav a,
.header-cta {
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: .03em !important;
}

/* Company name in header */
.brand-name {
    font-size: 16px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
}

.brand-sub {
    font-size: 10px !important;
    line-height: 1.1 !important;
    letter-spacing: .12em !important;
}


/* ---------- SMALL SECTION LABELS ---------- */

.hero-kicker,
.section-kicker,
.eyebrow {
    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase;
}


/* ---------- HERO ---------- */

.hero-copy h1 {
    font-size: clamp(42px, 4.1vw, 58px) !important;
    line-height: 1.03 !important;
    font-weight: 700 !important;
    letter-spacing: -.035em !important;
}

.hero-copy .hero-subtitle,
.hero-copy > p:not(.hero-kicker) {
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}


/* ---------- SECTION HEADINGS ---------- */

/*
   All major content headings now use the same scale.
   Hero h1 remains larger.
*/

.section h2,
.home-about h2,
.home-services h2,
.capability h2,
.industries h2,
.home-cta h2 {
    font-size: clamp(30px, 2.6vw, 36px) !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
}


/* ---------- SMALLER CONTENT HEADINGS ---------- */

h3,
.service-card h3,
.project-card h3,
.capability-card h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -.015em !important;
}

h4 {
    font-size: 17px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}


/* ---------- BODY COPY ---------- */

p,
li {
    font-size: 15px;
    line-height: 1.65;
}

.about-content p,
.section-intro,
.service-card p,
.project-card p,
.capability-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.about-content .lead {
    font-size: 17px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
}


/* ---------- STATISTICS ---------- */

.trust-item strong {
    font-size: 22px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
}

.trust-item span {
    font-size: 10px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}


/* ---------- BUTTONS ---------- */

.btn,
.button,
.hero-actions a,
.arrow-link,
button[type="submit"] {
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}


/* ---------- FORMS ---------- */

label {
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

input,
select,
textarea {
    font-size: 15px !important;
    line-height: 1.4 !important;
}


/* ---------- FOOTER ---------- */

footer,
footer p,
footer a,
.site-footer {
    font-size: 12px;
    line-height: 1.55;
}


/* ---------- MOBILE TYPOGRAPHY ---------- */

@media (max-width: 760px) {

    .hero-copy h1 {
        font-size: 38px !important;
        line-height: 1.05 !important;
    }

    .section h2,
    .home-about h2,
    .home-services h2,
    .capability h2,
    .industries h2,
    .home-cta h2 {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    h3,
    .service-card h3,
    .project-card h3,
    .capability-card h3 {
        font-size: 20px !important;
    }

    p,
    li {
        font-size: 14px;
    }

    .about-content .lead {
        font-size: 16px !important;
    }

    .trust-item strong {
        font-size: 20px !important;
    }
}


/* =========================================================
   GLOBAL TYPOGRAPHY - MATCH HOMEPAGE ACROSS ALL PAGES
   ========================================================= */

/* Base text */
body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* Small labels / kickers */
.section-kicker,
.hero-kicker,
.eyebrow {
    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase;
}

/* Main page hero titles on inner pages */
.services-page-hero h1,
.about-page-hero h1,
.contact-hero h1,
.page-hero h1 {
    font-size: clamp(40px, 3.8vw, 54px) !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    letter-spacing: -.035em !important;
}

/* Major section headings - same scale as homepage */
.section h2,
.services-intro h2,
.service-detail h2,
.about-story h2,
.about-capability h2,
.about-values h2,
.contact-section h2,
.projects-section h2,
.home-about h2,
.home-services h2,
.capability h2,
.industries h2,
.home-cta h2 {
    font-size: clamp(30px, 2.6vw, 36px) !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
}

/* Card / subsection headings */
h3,
.service-detail h3,
.about-capability-card h3,
.project-card h3,
.service-box h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -.015em !important;
}

/* Normal body copy */
p,
li,
.service-detail-content,
.about-story-copy,
.contact-detail-block {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

/* Lead text */
.services-lead,
.about-story-lead,
.about-content .lead,
.section-intro {
    font-size: 17px !important;
    line-height: 1.55 !important;
}

/* Navigation */
.main-nav a,
.header-contact {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .03em !important;
}

/* Buttons / links */
.btn,
.arrow-link,
.contact-submit,
.cta-circle,
.header-contact {
    font-size: 12px !important;
    font-weight: 700 !important;
}

/* Footer */
.site-footer,
.site-footer p,
.site-footer a {
    font-size: 12px !important;
    line-height: 1.55 !important;
}

/* Mobile */
@media (max-width: 760px) {

    .services-page-hero h1,
    .about-page-hero h1,
    .contact-hero h1,
    .page-hero h1 {
        font-size: 36px !important;
    }

    .section h2,
    .services-intro h2,
    .service-detail h2,
    .about-story h2,
    .about-capability h2,
    .about-values h2,
    .contact-section h2,
    .projects-section h2,
    .home-about h2,
    .home-services h2,
    .capability h2,
    .industries h2,
    .home-cta h2 {
        font-size: 28px !important;
    }

    h3,
    .service-detail h3,
    .about-capability-card h3,
    .project-card h3,
    .service-box h3 {
        font-size: 20px !important;
    }

    p,
    li {
        font-size: 14px !important;
    }
}

/* =========================================================
   FINAL INNER PAGE TYPOGRAPHY
   Match homepage proportions
   ========================================================= */


/* ---------- PAGE HERO TITLES ---------- */

.services-page-hero h1,
.about-page-hero h1,
.contact-hero h1 {
    font-size: 38px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    max-width: 760px !important;
}


/* ---------- SERVICES PAGE ---------- */

.services-intro h2,
.service-detail-heading h2,
.service-detail h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.service-detail-content > p,
.services-intro-layout p {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.services-lead {
    font-size: 17px !important;
    line-height: 1.55 !important;
}

.service-list span {
    font-size: 14px !important;
}


/* ---------- ABOUT PAGE ---------- */

.about-story h2,
.about-story-layout h2,
.about-capability h2,
.about-values h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.about-story-lead {
    font-size: 17px !important;
    line-height: 1.55 !important;
}

.about-story-copy p,
.about-capability-card p,
.about-values-list p {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.about-capability-card h3 {
    font-size: 22px !important;
}


/* ---------- CONTACT PAGE ---------- */

.contact-details h2,
.contact-section h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.contact-detail-block p {
    font-size: 15px !important;
}


/* ---------- CTA HEADINGS ON ALL PAGES ---------- */

.home-cta h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 760px) {

    .services-page-hero h1,
    .about-page-hero h1,
    .contact-hero h1 {
        font-size: 32px !important;
    }

    .services-intro h2,
    .service-detail-heading h2,
    .service-detail h2,
    .about-story h2,
    .about-story-layout h2,
    .about-capability h2,
    .about-values h2,
    .contact-details h2,
    .contact-section h2,
    .home-cta h2 {
        font-size: 28px !important;
    }
}


/* =========================================================
   HOME ABOUT - FINAL TOP GAP
   ========================================================= */

section.trust-strip + section.home-about.section {
    padding-top: 15px !important;
    margin-top: 0 !important;
}

section.home-about.section .about-layout {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

section.home-about.section .about-heading,
section.home-about.section .about-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* HOME ABOUT - adjusted top spacing */
section.trust-strip + section.home-about.section {
    padding-top: 25px !important;
}

/* HOME ABOUT - final top spacing */
section.trust-strip + section.home-about.section {
    padding-top: 35px !important;
}

/* HOME ABOUT - final top spacing */
section.trust-strip + section.home-about.section {
    padding-top: 55px !important;
}

/* =========================================================
   GLOBAL BODY TEXT JUSTIFICATION
   ========================================================= */

/* Main paragraph content */
.about-content p,
.about-story-copy p,
.services-intro p,
.service-detail-content p,
.contact-detail-block p,
.project-card p,
.service-card p,
.capability-card p,
.section-intro,
.services-lead,
.about-story-lead {
    text-align: justify !important;
    text-justify: inter-word;
}

/* Prevent ugly justification on small screens */
@media (max-width: 760px) {
    .about-content p,
    .about-story-copy p,
    .services-intro p,
    .service-detail-content p,
    .contact-detail-block p,
    .project-card p,
    .service-card p,
    .capability-card p,
    .section-intro,
    .services-lead,
    .about-story-lead {
        text-align: left !important;
    }
}

/* =========================================================
   HOME HERO - REFINED HEADLINE SIZE
   ========================================================= */

.home-hero .hero-copy h1 {
    font-size: clamp(36px, 3.4vw, 48px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    font-weight: 700 !important;
}

/* Keep both headline lines visually balanced */
.home-hero .hero-copy h1 span {
    font-size: inherit !important;
    line-height: inherit !important;
}

/* Mobile */
@media (max-width: 760px) {
    .home-hero .hero-copy h1 {
        font-size: 32px !important;
        line-height: 1.08 !important;
    }
}

/* =========================================================
   SELECTED EXPERIENCE
   ========================================================= */

.selected-experience {
    background: #f5f7f7;
}

.selected-experience .section-top {
    margin-bottom: 42px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #ccd6d9;
    border-left: 1px solid #ccd6d9;
}

.experience-card {
    position: relative;

    min-height: 265px;
    padding: 30px 34px;

    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;

    background: #ffffff;

    border-right: 1px solid #ccd6d9;
    border-bottom: 1px solid #ccd6d9;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.experience-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(7, 37, 48, .07);

    z-index: 2;
}

.experience-number {
    padding-top: 4px;

    color: #7d9299;

    font-family: monospace;
    font-size: 11px;
    letter-spacing: .12em;
}

.experience-copy > span {
    display: block;

    margin-bottom: 15px;

    color: var(--blue);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: .15em;
    text-transform: uppercase;
}

.experience-copy h3 {
    margin: 0 0 16px;

    color: var(--navy);

    font-size: 22px !important;
    line-height: 1.2 !important;
}

.experience-copy p {
    max-width: 470px;

    margin: 0 0 24px;

    color: var(--muted);

    font-size: 14px !important;
    line-height: 1.65 !important;

    text-align: justify;
}

.experience-copy strong {
    display: block;

    padding-top: 15px;

    border-top: 1px solid #e0e6e8;

    color: #526a73;

    font-size: 10px;
    line-height: 1.5;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.experience-footer {
    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.experience-footer p {
    margin: 0;

    color: var(--muted);

    font-size: 13px !important;
}


@media (max-width: 850px) {

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

    .experience-footer {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .experience-card {
        min-height: 0;

        grid-template-columns: 35px 1fr;

        padding: 25px 20px;

        gap: 12px;
    }

}

/* =========================================================
   PROJECT ARCHIVE
   ========================================================= */
.projects-page-hero{padding:72px 0;background:linear-gradient(118deg,#061c25,#0b4255);color:#fff}.projects-page-hero h1{max-width:900px;margin:0;color:#fff;font-size:38px!important;line-height:1.12!important;letter-spacing:-.025em!important}.projects-page-hero> .container>p:last-child{max-width:760px;margin:22px 0 0;color:rgba(255,255,255,.68);font-size:15px!important;line-height:1.65}.project-archive{background:#f6f8f8}.project-archive-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:28px}.project-archive-head h2{font-size:34px!important}.project-count{margin:0;color:var(--muted);font-size:13px!important}.project-count strong{color:var(--navy);font-size:20px}.project-controls{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:12px;margin-bottom:30px}.project-controls label{display:flex;flex-direction:column;gap:7px}.project-controls label>span{font-size:10px!important;letter-spacing:.12em;text-transform:uppercase;color:#667a82}.project-controls input,.project-controls select{width:100%;min-height:46px;padding:0 13px;border:1px solid #cbd5d8;background:#fff;color:var(--navy);font-size:13px!important}.project-year-group{margin:0 0 34px}.project-year-group>h3{margin:0;padding:12px 0;border-bottom:2px solid var(--navy);font-size:18px!important;color:var(--navy)}.project-row{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(390px,.65fr);gap:35px;padding:22px 0;border-bottom:1px solid #d5dde0}.project-row-main h4{margin:7px 0 0;font-size:16px!important;line-height:1.45!important;color:var(--navy);font-weight:650!important}.project-category{font-size:9px!important;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);font-weight:700}.project-meta{display:grid;grid-template-columns:.8fr 1.2fr .8fr;gap:18px}.project-meta span{font-size:11px!important;line-height:1.45;color:#50656e}.project-meta b{display:block;margin-bottom:4px;font-size:9px!important;letter-spacing:.1em;text-transform:uppercase;color:#8a989e}.project-empty{padding:60px 0;text-align:center;color:var(--muted)}@media(max-width:900px){.project-controls{grid-template-columns:1fr 1fr}.project-row{grid-template-columns:1fr}.project-meta{grid-template-columns:repeat(3,1fr)}}@media(max-width:600px){.projects-page-hero{padding:48px 0}.projects-page-hero h1{font-size:32px!important}.project-archive-head{align-items:flex-start;flex-direction:column}.project-controls{grid-template-columns:1fr}.project-meta{grid-template-columns:1fr}.project-row{gap:16px}}

/* =========================================================
   ROTATING SELECTED EXPERIENCE
   ========================================================= */

#rotating-experience {
    transition:
        opacity .28s ease,
        transform .28s ease;
}

#rotating-experience.is-changing {
    opacity: .18;
    transform: translateY(3px);
}

#rotating-experience .experience-card {
    overflow: hidden;
}

#rotating-experience .experience-copy h3 {
    min-height: 52px;
}

#rotating-experience .experience-copy p {
    min-height: 46px;
}

@media (prefers-reduced-motion: reduce) {

    #rotating-experience {
        transition: none;
    }

}

/* =========================================================
   SELECTED EXPERIENCE - HOMEPAGE FEATURE POSITION
   ========================================================= */

.home-hero + .selected-experience {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
}

.home-hero + .selected-experience .section-top {
    margin-bottom: 28px !important;
}

.home-hero + .selected-experience .experience-card {
    min-height: 220px !important;
    padding: 24px 28px !important;
}

.home-hero + .selected-experience .experience-copy h3 {
    margin-bottom: 12px !important;
    font-size: 20px !important;
}

.home-hero + .selected-experience .experience-copy p {
    margin-bottom: 16px !important;
}

.home-hero + .selected-experience .experience-footer {
    margin-top: 20px !important;
}

/* =========================================================
   CAPABILITY TICKER
   ========================================================= */

.capability-ticker {
    position: relative;
    overflow: hidden;

    padding: 13px 0;

    background: #071f29;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ticker-track {
    display: flex;
    width: max-content;

    animation: usplTicker 38s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-group span {
    display: flex;
    align-items: center;

    color: rgba(255,255,255,.72);

    font-size: 10px !important;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-group span::after {
    content: "•";

    margin: 0 28px;

    color: #62c7d8;
    font-size: 12px;
}

@keyframes usplTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause slightly when user hovers */
.capability-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }

    .ticker-group[aria-hidden="true"] {
        display: none;
    }
}

/* Mobile */
@media (max-width: 760px) {

    .capability-ticker {
        padding: 11px 0;
    }

    .ticker-group span {
        font-size: 9px !important;
    }

    .ticker-group span::after {
        margin: 0 20px;
    }
}


/* PROFESSIONAL CAPABILITY BAND */

.capability-band {
    background: #0a2b38;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.capability-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.capability-band-grid > div {
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,.10);
}

.capability-band-grid > div:first-child {
    border-left: 1px solid rgba(255,255,255,.10);
}

.capability-band strong {
    display: block;
    margin-bottom: 6px;

    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.capability-band span {
    display: block;

    color: rgba(255,255,255,.55);
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .02em;
}

@media (max-width: 900px) {
    .capability-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .capability-band-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOMEPAGE PREVIOUS PROJECT FEATURE
   ========================================================= */

.home-project-feature {
    grid-column: 1 / -1;

    margin-top: 34px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: rgba(248,250,251,.72);
}

.home-project-label {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 18px;

    border-bottom: 1px solid var(--line);
}

.home-project-label span {
    color: var(--blue);

    font-size: 9px !important;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .17em;
    text-transform: uppercase;
}

.home-project-label small {
    color: #829299;

    font-size: 10px;
    font-family: monospace;
    letter-spacing: .08em;
}

.home-project-content {
    min-height: 108px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 20px 18px;
}

.home-project-content h3 {
    max-width: 900px;

    margin: 0 0 7px;

    color: var(--navy);

    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    letter-spacing: -.012em !important;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.home-project-content p {
    margin: 0;

    color: var(--muted);

    font-size: 12px !important;
    line-height: 1.5 !important;

    text-align: left !important;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.home-project-feature.is-changing h3,
.home-project-feature.is-changing p {
    opacity: 0;
    transform: translateY(4px);
}


/* arrows */

.home-project-controls {
    display: flex;
    flex-shrink: 0;
    gap: 7px;
}

.home-project-controls button {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #bfcdd1;

    background: white;
    color: var(--navy);

    font-size: 15px !important;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

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


/* subtle timer line */

.home-project-progress {
    height: 2px;
    overflow: hidden;

    background: #e3e9eb;
}

.home-project-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--blue);
}


/* mobile */

@media (max-width: 700px) {

    .home-project-feature {
        margin-top: 26px;
    }

    .home-project-content {
        min-height: 130px;

        align-items: flex-end;
        flex-direction: column;

        gap: 18px;
    }

    .home-project-content > div:first-child {
        width: 100%;
    }

    .home-project-content h3 {
        font-size: 17px !important;
    }

}

/* =========================================================
   PREVIOUS PROJECT - BELOW STATISTICS
   ========================================================= */

.project-highlight-strip {
    padding: 22px 0 0 !important;
    margin: 0 !important;
    background: #fff;
}

.project-highlight-strip .home-project-feature {
    margin: 0 !important;
}

/* Keep project display compact */
.project-highlight-strip .home-project-label {
    padding: 8px 14px !important;
}

.project-highlight-strip .home-project-content {
    min-height: 76px !important;
    padding: 13px 14px !important;
}

/* About section follows shortly afterwards */
.project-highlight-strip + .home-about.section {
    padding-top: 35px !important;
}

@media (max-width: 760px) {
    .project-highlight-strip {
        padding-top: 16px !important;
    }

    .project-highlight-strip + .home-about.section {
        padding-top: 28px !important;
    }
}

/* =========================================================
   PREVIOUS PROJECT - SMOOTH INTERACTION
   ========================================================= */

.home-project-feature {
    cursor: pointer;
}

.home-project-content h3,
.home-project-content p,
.home-project-label small {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity .18s ease,
        transform .18s ease;
}

.home-project-feature.is-changing
.home-project-content h3,

.home-project-feature.is-changing
.home-project-content p,

.home-project-feature.is-changing
.home-project-label small {
    opacity: 0;
    transform: translateY(2px);
}

.home-project-feature:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

/* Subtle indication that project is clickable */
@media (hover: hover) {

    .home-project-feature:hover
    .home-project-content h3 {
        color: var(--blue);
    }
}

/* Smooth timer instead of stepped updates */
.home-project-progress span {
    width: 0;
    transition-timing-function: linear;
}

@media (prefers-reduced-motion: reduce) {

    .home-project-content h3,
    .home-project-content p,
    .home-project-label small,
    .home-project-progress span {
        transition: none !important;
    }
}
