:root {
    --navy: #062f3c;
    --deep: #074b5d;
    --teal: #08738c;
    --cyan: #08b8dc;
    --cyan-dark: #0096ba;
    --mint: #e2f6fa;
    --mist: #f3f8fa;
    --white: #ffffff;
    --ink: #14272f;
    --muted: #61727a;
    --line: #d7e3e7;
    --dark: #11191d;
    --shadow: 0 20px 50px rgba(6, 47, 60, .10);
    --radius: 6px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
}

body {
    min-width: 320px;
    background: var(--mist);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(70px, 9vw, 116px);
}

.section--white {
    background: var(--white);
}

.section--compact {
    padding-block: clamp(52px, 7vw, 82px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--cyan);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-heading--center {
    text-align: center;
    margin-inline: auto;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center .eyebrow::before {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -.035em;
    color: var(--ink);
}

.section-copy {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.03rem;
}

.section-heading--center .section-copy {
    margin-inline: auto;
}

.accent {
    color: var(--cyan);
}

.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 1000;
    height: 82px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(7, 75, 93, .12);
    backdrop-filter: blur(14px);
}

.site-nav {
    width: min(calc(100% - 40px), 1320px);
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: max-content;
}

.brand__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 40px);
    list-style: none;
}

.nav-links a {
    position: relative;
    display: block;
    padding-block: 29px 27px;
    color: #26383f;
    font-size: .93rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 18px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle,
.menu-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--deep);
    border-radius: 4px;
    display: none;
    place-items: center;
}

.menu-toggle svg,
.menu-close svg {
    width: 22px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .055em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--cyan);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(8, 184, 220, .2);
}

.btn--primary:hover {
    background: var(--cyan-dark);
}

.btn--dark {
    background: var(--deep);
    color: var(--white);
}

.btn--outline {
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
    background: rgba(255, 255, 255, .06);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.hero {
    position: relative;
    min-height: clamp(610px, 76vh, 760px);
    display: grid;
    align-items: center;
    color: var(--white);
    background: var(--navy) url('../logos/hero.webp') center / cover no-repeat;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 34, 44, .94) 0%, rgba(4, 45, 58, .78) 43%, rgba(4, 45, 58, .24) 76%, rgba(4, 45, 58, .12) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    height: 5px;
    background: var(--cyan);
}

.hero__content {
    max-width: 760px;
    padding-block: 70px;
}

.hero .eyebrow {
    color: #93ecfb;
}

.hero__title {
    max-width: 760px;
    font-size: clamp(2.65rem, 6vw, 5.55rem);
    line-height: .96;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero__copy {
    max-width: 650px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 50px;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
}

.hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero__proof svg {
    width: 17px;
    color: #7ce3f5;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #a5dbe5;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    background: var(--mint);
    color: var(--teal);
    border-radius: 4px;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.service-card p {
    color: var(--muted);
    font-size: .92rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.trust-strip {
    padding-block: 42px;
    background: var(--white);
    border-block: 1px solid var(--line);
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
    gap: 40px;
}

.trust-strip h2 {
    font-size: 1rem;
    color: var(--deep);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.client-logo {
    display: grid;
    place-items: center;
    padding: 10px 20px;
    transition: .2s;
}

/* .client-logo:hover { filter: none; opacity: 1; } */
.client-logo img {
    max-height: 100px;
    max-width: 100px;
    object-fit: contain;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.project-card[hidden] {
    display: none;
}

.project-card__media {
    position: relative;
    overflow: hidden;
    background: #dce9ec;
}

.project-card__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .45s ease;
}

.project-card:hover img {
    transform: scale(1.045);
}

.project-tag {
    position: absolute;
    inset: 16px auto auto 16px;
    padding: 7px 10px;
    background: rgba(6, 47, 60, .88);
    color: #fff;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-card__body {
    padding: 23px;
}

.project-card h3 {
    font-size: 1.17rem;
    margin-bottom: 8px;
}

.project-card p {
    color: var(--muted);
    font-size: .9rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -16px 0 32px;
}

.filter-btn {
    min-height: 40px;
    padding: 8px 15px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--deep);
    border-color: var(--deep);
    color: var(--white);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--muted);
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 530px;
    background: var(--deep);
    color: var(--white);
}

.split-feature__image {
    min-height: 700px;
    background: url('../logos/nevec-protege.webp') top / cover no-repeat;
}

.split-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(50px, 7vw, 96px);
}

.split-feature .section-title {
    color: var(--white);
}

.split-feature .section-copy {
    color: rgba(255, 255, 255, .74);
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .9);
}

.check-list svg {
    width: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    color: #69d8eb;
}

.faq-wrap {
    max-width: 840px;
    margin-inline: auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-weight: 750;
}

.faq-question svg {
    width: 20px;
    transition: transform .2s;
}

.faq-item.open .faq-question {
    color: var(--teal);
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq-answer>div {
    overflow: hidden;
    color: var(--muted);
}

.faq-answer p {
    padding: 0 48px 24px 0;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding-block: 54px;
    background: var(--deep);
    color: var(--white);
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 400px;
    aspect-ratio: 1;
    right: -130px;
    top: -190px;
    border: 70px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
}

.cta-band h2 {
    max-width: 700px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.cta-band p {
    margin-top: 10px;
    color: rgba(255, 255, 255, .72);
}

.page-hero {
    padding-block: clamp(65px, 9vw, 110px);
    background: var(--mist);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    align-items: center;
    gap: clamp(45px, 8vw, 100px);
}

.page-hero__title {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.page-hero__copy {
    margin-top: 24px;
    max-width: 580px;
    color: var(--muted);
    font-size: 1.08rem;
}

.page-hero__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(6, 47, 60, .25));
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.page-hero__stats {
    display: flex;
    gap: 30px;
    margin-top: 32px;
}

.mini-stat strong {
    display: block;
    color: var(--teal);
    font-size: 1.35rem;
}

.mini-stat span {
    color: var(--muted);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 22px;
}

.story-card {
    padding: clamp(30px, 5vw, 56px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.story-card h2,
.value-card h3 {
    margin-bottom: 16px;
    font-size: 1.45rem;
}

.story-card p {
    color: var(--muted);
}

.story-card p+p {
    margin-top: 15px;
}

.mission-stack {
    display: grid;
    gap: 22px;
}

.value-card {
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
}

.value-card--dark {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.value-card p {
    color: var(--muted);
    font-size: .95rem;
}

.value-card--dark p {
    color: rgba(255, 255, 255, .8);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card h3 {
    margin: 18px 0 10px;
    font-size: 1.16rem;
}

.feature-card p {
    color: var(--muted);
    font-size: .92rem;
}

.services-page-hero {
    padding-block: clamp(54px, 7vw, 85px) 40px;
    background: var(--mist);
}

.services-page-hero h1 {
    max-width: 850px;
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.services-page-hero p {
    max-width: 700px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}

.services-mosaic {
    column-count: 3;
    column-gap: 20px;
}

.service-tile {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-block;
    width: 100%;
}

.service-tile--wide {
    column-span: all;
}

.service-tile__image {
    height: auto;
    overflow: hidden;
    background: #dbe8eb;
}

.service-tile--wide .service-tile__image {
    height: auto;
}

.service-tile__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .4s;
}

.service-tile:hover img {
    transform: scale(1.04);
}

.service-tile__body {
    padding: 24px;
}

.service-tile__tag {
    display: block;
    padding: 6px 10px;
    margin-bottom: 13px;
    background: var(--mint);
    color: var(--teal);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-tile h2 {
    font-size: 1.3rem;
}

.service-tile p {
    margin-top: 10px;
    color: var(--muted);
    font-size: .9rem;
}

.contact-hero {
    min-height: 420px;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
    background: url('../logos/nevec-presicion.webp') center 42% / cover no-repeat;
    isolation: isolate;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(5, 38, 49, .8);
}

.contact-hero h1 {
    max-width: 850px;
    margin-inline: auto;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-hero p {
    max-width: 700px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    overflow: hidden;
    margin-top: -70px;
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrap {
    padding: clamp(32px, 6vw, 62px);
}

.contact-form-wrap h2,
.contact-info h2 {
    margin-bottom: 30px;
    font-size: 1.7rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--deep);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #bfcdd2;
    border-radius: 2px;
    background: #fff;
    padding: 13px 15px;
    color: var(--ink);
    outline: none;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--cyan-dark);
    box-shadow: 0 0 0 3px rgba(8, 184, 220, .12);
}

.contact-form .btn {
    justify-self: start;
    margin-top: 6px;
}

.contact-info {
    position: relative;
    padding: clamp(32px, 5vw, 62px);
    background: var(--teal);
    color: var(--white);
}

.contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .1;
    background: url('../logos/hero.webp') center / cover;
}

.contact-info>* {
    position: relative;
}

.info-list {
    display: grid;
    gap: 24px;
}

.info-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.info-row .icon-box {
    margin: 0;
    background: rgba(255, 255, 255, .12);
    color: #91e7f5;
}

.info-row h3 {
    margin-bottom: 4px;
    font-size: .92rem;
}

.info-row p,
.info-row a {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    text-decoration: none;
}

.site-footer {
    padding-block: 60px 24px;
    background: var(--mist);
    color: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .9fr;
    gap: 60px;
}

.footer-brand .brand__name {
    display: none;
}

.footer-brand .brand__sub {
    display: none;
}

.footer-copy {
    max-width: 390px;
    margin-top: 20px;
    color: var(--muted);
    font-size: .88rem;
}

.footer-title {
    margin-bottom: 18px;
    color: var(--deep);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-links a {
    color: var(--muted);
    font-size: .88rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-contact {
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-size: .88rem;
}

.footer-contact a {
    text-decoration: none;
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: .75rem;
}

.footer-bottom a {
    text-decoration: none;
}

.form-success {
    padding: clamp(30px, 5vw, 40px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-success h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    color: var(--ink);
}

.form-success p {
    color: var(--muted);
    font-size: .95rem;
    max-width: 460px;
    line-height: 1.6;
}

.form-success .icon-box {
    margin-bottom: 20px;
}

@media (max-width: 1050px) {
    .site-header {
        backdrop-filter: none;
    }

    .site-nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 80px 30px;
        background: var(--navy);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        min-width: 220px;
        padding: 14px;
        color: white;
        font-size: 1.15rem;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-close {
        position: absolute;
        inset: 20px 20px auto auto;
        display: grid;
        background: transparent;
        border-color: rgba(255, 255, 255, .2);
        color: white;
    }

    .menu-toggle {
        display: grid;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-mosaic {
        column-count: 2;
    }

    .service-tile {
        break-inside: avoid;
    }

    .service-tile--wide {
        column-span: all;
    }

    .service-tile--wide .service-tile__image {
        height: auto;
    }
}

@media (max-width: 760px) {

    .container,
    .site-nav {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        height: 72px;
    }

    .brand__logo {
        height: 38px;
    }

    .desktop-cta {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 72px);
        background-position: 58% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(4, 34, 44, .95), rgba(4, 45, 58, .62));
    }

    .hero__content {
        padding-block: 72px;
    }

    .hero__proof {
        display: grid;
    }

    .service-grid,
    .projects-grid,
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 245px;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-feature {
        grid-template-columns: 1fr;
    }

    .split-feature__image {
        min-height: 320px;
    }

    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero__grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .page-hero__image {
        order: -1;
    }

    .page-hero__stats {
        flex-wrap: wrap;
    }

    .services-mosaic {
        column-count: 1;
    }

    .service-tile__image,
    .service-tile--wide .service-tile__image {
        height: auto;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap,
    .contact-info {
        padding: 32px 24px;
    }

    .contact-form .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}