:root {
    background: #f4f1ea;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    margin: 0;
    color: #102432;
    background: #f4f1ea;
}

body > main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #f4f1ea;
}

.kaeltech-site {
    --kt-blue: #006eaa;
    --kt-blue-deep: #064768;
    --kt-blue-soft: #a9ccda;
    --kt-gold: #f2b233;
    --kt-ink: #102432;
    --kt-muted: #5c6c76;
    --kt-paper: #f4f1ea;
    --kt-white: #fff;
    --kt-edge: 32px;
    color: var(--kt-ink);
    background: var(--kt-paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kaeltech-site,
.kaeltech-site * {
    box-sizing: border-box;
}

.kaeltech-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 78px;
    padding: 12px var(--kt-edge);
    background: rgba(244, 241, 234, .86);
    border-bottom: 1px solid rgba(16, 36, 50, .08);
    backdrop-filter: blur(18px);
}

.kaeltech-brand {
    display: inline-flex;
    align-items: center;
    width: 176px;
    text-decoration: none;
}

.kaeltech-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.kaeltech-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    min-width: 0;
}

.kaeltech-nav a,
.kaeltech-header-cta,
.kaeltech-text-link,
.kaeltech-map-link {
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
}

.kaeltech-nav a {
    color: var(--kt-blue-deep);
    font-size: .94rem;
}

.kaeltech-nav a:hover,
.kaeltech-nav a:focus-visible,
.kaeltech-text-link:hover,
.kaeltech-text-link:focus-visible,
.kaeltech-map-link:hover,
.kaeltech-map-link:focus-visible {
    color: var(--kt-blue);
    outline: none;
}

.kaeltech-header-cta,
.kaeltech-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 8px;
    color: var(--kt-blue-deep);
    background: var(--kt-white);
    border: 2px solid rgba(255, 255, 255, .86);
    box-shadow: 0 18px 34px rgba(4, 53, 82, .16);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.kaeltech-header-cta {
    min-height: 42px;
    padding: 0 20px;
    background: var(--kt-gold);
    border-color: var(--kt-gold);
}

.kaeltech-button:hover,
.kaeltech-button:focus-visible,
.kaeltech-header-cta:hover,
.kaeltech-header-cta:focus-visible {
    color: var(--kt-white);
    background: var(--kt-blue-deep);
    border-color: var(--kt-blue-deep);
    box-shadow: 0 22px 42px rgba(4, 53, 82, .24);
    transform: translateY(-1px);
    outline: none;
}

.kaeltech-button--dark {
    color: var(--kt-white);
    background: var(--kt-blue-deep);
    border-color: var(--kt-blue-deep);
}

.kaeltech-button--dark:hover,
.kaeltech-button--dark:focus-visible {
    color: var(--kt-blue-deep);
    background: var(--kt-gold);
    border-color: var(--kt-gold);
}

.kaeltech-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 930px;
    overflow: hidden;
    color: var(--kt-white);
    background: #d8d0c3;
}

.kaeltech-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kaeltech-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 22, 32, .18), rgba(4, 22, 32, .1) 45%, rgba(4, 22, 32, .24)),
        radial-gradient(circle at center, rgba(255, 255, 255, .16), transparent 48%);
}

.kaeltech-hero__content {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100% - 48px));
    margin-top: 110px;
    text-align: center;
}

.kaeltech-kicker {
    margin: 0 0 18px;
    color: var(--kt-gold);
    font-size: .96rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kaeltech-hero h1,
.kaeltech-site h2,
.kaeltech-site h3,
.kaeltech-site p {
    margin-top: 0;
}

.kaeltech-hero h1 {
    margin-bottom: 0;
    color: var(--kt-white);
    font-size: 5rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 18px 54px rgba(0, 0, 0, .24);
}

.kaeltech-section-inner {
    width: min(1060px, calc(100% - 64px));
    margin: 0 auto;
}

.kaeltech-intro {
    min-height: 760px;
    display: flex;
    align-items: center;
    color: var(--kt-white);
    background:
        linear-gradient(45deg, rgba(0, 110, 170, 1) 48%, rgba(169, 204, 218, .92) 100%);
}

.kaeltech-intro__grid,
.kaeltech-career__grid {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
}

.kaeltech-intro h2,
.kaeltech-career h2,
.kaeltech-company h2,
.kaeltech-section-head h2,
.kaeltech-image-copy h2 {
    margin-bottom: 28px;
    font-size: 3.25rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kaeltech-intro h2 {
    color: var(--kt-gold);
}

.kaeltech-intro__copy,
.kaeltech-career__copy,
.kaeltech-company__intro,
.kaeltech-section-head {
    font-size: 1.05rem;
    line-height: 1.72;
}

.kaeltech-intro__copy p,
.kaeltech-career__copy p,
.kaeltech-company__intro p,
.kaeltech-section-head p,
.kaeltech-image-copy__content p {
    margin-bottom: 22px;
}

.kaeltech-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.kaeltech-text-link {
    color: var(--kt-white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.kaeltech-image-copy {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 840px;
    background: var(--kt-paper);
}

.kaeltech-image-copy__media {
    min-height: 640px;
}

.kaeltech-image-copy__media img,
.kaeltech-career__media img,
.kaeltech-location-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kaeltech-image-copy__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 72px;
    background: var(--kt-paper);
}

.kaeltech-image-copy h2,
.kaeltech-company h2,
.kaeltech-section-head h2 {
    color: var(--kt-blue-deep);
}

.kaeltech-image-copy__content p {
    max-width: 520px;
    color: var(--kt-muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.kaeltech-service {
    padding: 116px 0 126px;
    background: #fff;
}

.kaeltech-section-head {
    max-width: 820px;
    margin-bottom: 56px;
}

.kaeltech-section-head p {
    color: var(--kt-muted);
}

.kaeltech-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kaeltech-service-card {
    min-height: 300px;
    padding: 34px;
    border-radius: 8px;
    color: var(--kt-white);
    background: var(--kt-blue-deep);
    border-top: 6px solid var(--kt-gold);
}

.kaeltech-service-card:nth-child(2) {
    background: var(--kt-blue);
}

.kaeltech-service-card:nth-child(3) {
    color: var(--kt-ink);
    background: #e7edf0;
}

.kaeltech-service-card h3,
.kaeltech-location-card h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kaeltech-service-card p {
    margin-bottom: 0;
    line-height: 1.66;
}

.kaeltech-career {
    background: var(--kt-blue-deep);
    color: var(--kt-white);
}

.kaeltech-career__media {
    height: 500px;
}

.kaeltech-career__grid {
    padding: 98px 0 110px;
}

.kaeltech-career h2 {
    color: var(--kt-gold);
}

.kaeltech-career__copy a:not(.kaeltech-button) {
    color: var(--kt-white);
    font-weight: 800;
    text-underline-offset: 4px;
}

.kaeltech-company {
    padding: 116px 0 118px;
    background: var(--kt-paper);
}

.kaeltech-company__intro {
    max-width: 880px;
    margin-bottom: 74px;
}

.kaeltech-company__intro p {
    color: var(--kt-muted);
}

.kaeltech-locations-title {
    margin-bottom: 34px;
}

.kaeltech-location-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kaeltech-location-card {
    overflow: hidden;
    border-radius: 8px;
    background: var(--kt-white);
    box-shadow: 0 24px 56px rgba(16, 36, 50, .12);
}

.kaeltech-location-card img {
    height: 152px;
}

.kaeltech-location-card__body {
    padding: 24px;
}

.kaeltech-location-card p {
    color: var(--kt-muted);
    line-height: 1.58;
}

.kaeltech-location-card a {
    color: var(--kt-blue-deep);
}

.kaeltech-map-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--kt-blue);
    font-size: .9rem;
}

.kaeltech-footer {
    color: var(--kt-white);
    background: #0b1f2b;
}

.kaeltech-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1060px, calc(100% - 64px));
    min-height: 104px;
    margin: 0 auto;
}

.kaeltech-footer p {
    margin: 0;
}

.kaeltech-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.kaeltech-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.kaeltech-footer a:hover,
.kaeltech-footer a:focus-visible {
    color: var(--kt-gold);
    outline: none;
}

@media (max-width: 1120px) {
    .kaeltech-site {
        --kt-edge: 22px;
    }

    .kaeltech-header {
        grid-template-columns: 150px 1fr;
    }

    .kaeltech-header-cta {
        display: none;
    }

    .kaeltech-nav {
        justify-content: flex-end;
        gap: 18px;
    }

    .kaeltech-nav a {
        font-size: .86rem;
    }

    .kaeltech-location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .kaeltech-header {
        position: sticky;
        grid-template-columns: 140px 1fr;
        min-height: auto;
    }

    .kaeltech-nav {
        overflow-x: auto;
        justify-content: flex-start;
        grid-column: 1 / -1;
        padding-bottom: 4px;
    }

    .kaeltech-hero {
        min-height: 780px;
    }

    .kaeltech-hero__content {
        margin-top: 30px;
    }

    .kaeltech-hero h1 {
        font-size: 3.4rem;
    }

    .kaeltech-intro h2,
    .kaeltech-career h2,
    .kaeltech-company h2,
    .kaeltech-section-head h2,
    .kaeltech-image-copy h2 {
        font-size: 2.55rem;
    }

    .kaeltech-intro__grid,
    .kaeltech-career__grid,
    .kaeltech-image-copy {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .kaeltech-intro {
        min-height: auto;
        padding: 92px 0 108px;
    }

    .kaeltech-image-copy__content {
        padding: 74px 32px 88px;
    }

    .kaeltech-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .kaeltech-section-inner,
    .kaeltech-footer__inner {
        width: calc(100% - 36px);
    }

    .kaeltech-header {
        padding: 12px 18px;
    }

    .kaeltech-brand {
        width: 132px;
    }

    .kaeltech-nav {
        flex-wrap: wrap;
        gap: 10px 14px;
        overflow-x: visible;
    }

    .kaeltech-nav a {
        font-size: .76rem;
        white-space: nowrap;
    }

    .kaeltech-hero {
        min-height: 680px;
    }

    .kaeltech-hero h1 {
        font-size: 2.35rem;
    }

    .kaeltech-intro h2,
    .kaeltech-career h2,
    .kaeltech-company h2,
    .kaeltech-section-head h2,
    .kaeltech-image-copy h2 {
        font-size: 2.05rem;
    }

    .kaeltech-actions,
    .kaeltech-footer__inner,
    .kaeltech-footer nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .kaeltech-button {
        width: 100%;
    }

    .kaeltech-career__media {
        height: 360px;
    }

    .kaeltech-location-grid {
        grid-template-columns: 1fr;
    }
}
