:root {
    --navy: #06162d;
    --navy-2: #0b203b;
    --ink: #111827;
    --muted: #64748b;
    --line: #dbe2ea;
    --red: #ed1c24;
    --red-dark: #c81017;
    --white: #fff;
    --soft: #f5f7fa;
    --container: 1180px;
    --shadow: 0 18px 50px rgba(4, 20, 39, .12);
    --radius: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Segoe UI, Arial, sans-serif;
    background: #fff;
    line-height: 1.65;
    font-size: 16px
}

body.nav-open {
    overflow: hidden
}

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

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

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

.site-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity .45s ease, visibility .45s ease;
    animation: loaderFallback 1.8s ease .45s forwards
}

.site-loader span {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, .25);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .8s linear infinite
}

.site-loader.done {
    opacity: 0;
    visibility: hidden
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 22, 45, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: .3s
}

.site-header.scrolled {
    background: rgba(6, 22, 45, .98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18)
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: flex-end;
    gap: 3px
}

.brand-mark span {
    display: block;
    width: 8px;
    background: var(--red);
    border-radius: 2px 2px 0 0
}

.brand-mark span:nth-child(1) {
    height: 20px
}

.brand-mark span:nth-child(2) {
    height: 28px
}

.brand-mark span:nth-child(3) {
    height: 34px
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: .9;
    letter-spacing: .08em
}

.brand-copy strong {
    font: 800 17px/1 Inter, Segoe UI, Arial, sans-serif
}

.brand-copy small {
    font: 700 10px/1 Inter, Segoe UI, Arial, sans-serif;
    letter-spacing: .42em;
    margin-left: 1px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #d8e0eb;
    font-size: 14px;
    font-weight: 700
}

.main-nav a {
    position: relative;
    padding: 30px 0;
    transition: .25s
}

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

.main-nav a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    transform: scaleX(1)
}

.main-nav .nav-cta {
    background: var(--red);
    padding: 11px 16px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(237, 28, 36, .22)
}

.main-nav .nav-cta:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px)
}

.main-nav .nav-cta span {
    margin-left: 8px
}

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

.menu-toggle span {
    height: 2px;
    background: #fff;
    display: block;
    margin: 6px 0;
    transition: .3s
}

.hero {
    min-height: 760px;
    background: linear-gradient(90deg, rgba(3, 17, 36, .97) 0%, rgba(3, 17, 36, .9) 40%, rgba(3, 17, 36, .28) 75%), url('../assets/about.jpg') center/cover;
    display: flex;
    align-items: center;
    padding-top: 82px;
    position: relative;
    overflow: hidden
}

.hero:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018)
}

.hero-content {
    max-width: 660px;
    color: #fff;
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em
}

.eyebrow:before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--red)
}

h1,
h2,
h3 {
    font-family: Inter, Segoe UI, Arial, sans-serif;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.03;
    margin: 20px 0 22px;
    font-weight: 800
}

h1 .accent,
h2 .accent {
    color: var(--red)
}

.hero p {
    font-size: 18px;
    max-width: 610px;
    color: #d7e0ea;
    margin: 0 0 34px
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 7px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .3s
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 26px rgba(237, 28, 36, .2)
}

.btn-primary:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .3);
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    transform: translateY(-3px)
}

.btn .arrow {
    font-size: 20px;
    line-height: 1
}

.page-hero {
    padding: 170px 0 85px;
    background: linear-gradient(120deg, var(--navy), #0d2c4e);
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    right: -140px;
    top: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(255, 255, 255, .02)
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin: 18px 0 10px
}

.page-hero p {
    max-width: 650px;
    color: #c7d3df;
    margin: 0;
    font-size: 17px
}

.section {
    padding: 100px 0
}

.section-sm {
    padding: 70px 0
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    margin: 12px 0 0
}

.section-head p {
    max-width: 560px;
    color: var(--muted);
    margin: 0
}

.text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--red);
    font-weight: 800;
    margin-top: 20px
}

.text-link span {
    transition: .25s
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 70px;
    align-items: center
}

.about-media {
    position: relative
}

.about-media img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 2px
}

.about-media .badge {
    position: absolute;
    left: -28px;
    bottom: 28px;
    background: var(--red);
    color: #fff;
    padding: 24px 28px;
    min-width: 180px;
    box-shadow: var(--shadow)
}

.badge strong {
    display: block;
    font: 800 34px/1 Inter, Segoe UI, Arial, sans-serif
}

.badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.about-copy h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    margin: 14px 0 20px
}

.about-copy p {
    color: var(--muted);
    margin: 0 0 15px
}

.check-list {
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
    display: grid;
    gap: 13px
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 700
}

.check-list li:before {
    content: "✓";
    flex: 0 0 23px;
    height: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(237, 28, 36, .1);
    color: var(--red);
    font-size: 12px;
    margin-top: 2px
}

.services-section {
    background: var(--soft)
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.service-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: .3s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.service-card:hover:before {
    transform: scaleY(1)
}

.service-no {
    font: 800 13px Inter, Segoe UI, Arial, sans-serif;
    color: #9aa6b4
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 22px 0 18px;
    border: 1px solid #e4e9ef;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    color: var(--red)
}

.service-icon span {
    display: block;
    width: 6px;
    background: var(--red);
    border-radius: 1px 1px 0 0
}

.service-icon span:nth-child(1) {
    height: 14px
}

.service-icon span:nth-child(2) {
    height: 22px
}

.service-icon span:nth-child(3) {
    height: 30px
}

.service-card h3 {
    font-size: 20px;
    margin: 0 0 9px
}

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

.service-card .card-link {
    margin-top: auto;
    padding-top: 22px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800
}

.values {
    background: var(--navy);
    color: #fff
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .1)
}

.value {
    padding: 30px;
    background: var(--navy);
    min-height: 190px
}

.value span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800
}

.value h3 {
    font-size: 20px;
    margin: 16px 0 8px
}

.value p {
    color: #aebdce;
    font-size: 13px;
    margin: 0
}

.stats {
    background: var(--red);
    color: #fff;
    position: relative;
    overflow: hidden
}

.stats:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .1;
    background: repeating-linear-gradient(135deg, transparent 0 22px, #fff 23px 24px, transparent 25px 46px)
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px
}

.stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0
}

.stat-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .55);
    display: grid;
    place-items: center;
    font-size: 24px
}

.stat strong {
    display: block;
    font: 800 clamp(30px, 4vw, 46px)/1 Inter, Segoe UI, Arial, sans-serif
}

.stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .92
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: .3s
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.project-body {
    padding: 23px
}

.project-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #8b97a5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.project-body h3 {
    font-size: 19px;
    line-height: 1.3;
    margin: 11px 0
}

.project-body p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.project-body .text-link {
    font-size: 13px
}

.dark-section {
    background: var(--navy);
    color: #fff
}

.dark-section .section-head p {
    color: #aebdce
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.news-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0a1d34;
    overflow: hidden;
    transition: .3s
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .25)
}

.news-card img {
    height: 210px;
    width: 100%;
    object-fit: cover
}

.news-body {
    padding: 24px
}

.news-date {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font: 800 12px Inter, Segoe UI, Arial, sans-serif;
    padding: 8px 10px;
    text-transform: uppercase
}

.news-body h3 {
    font-size: 19px;
    line-height: 1.35;
    margin: 16px 0 9px
}

.news-body p {
    color: #aebdce;
    font-size: 13px;
    margin: 0
}

.contact-section {
    background: #07192f;
    color: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: start
}

.contact-copy h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 14px 0 20px
}

.contact-copy p {
    color: #b7c4d2
}

.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 30px
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.contact-item .mini-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    color: var(--red);
    flex: none
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: #8fa0b2;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    color: #fff
}

.form-card {
    background: #0e243e;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 28px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

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

.field label {
    font-size: 12px;
    color: #b6c2cf;
    font-weight: 700
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #122a45;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 5px;
    padding: 14px 15px;
    font: inherit;
    outline: 0;
    transition: .25s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(237, 28, 36, .12)
}

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

.form-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: rgba(39, 174, 96, .13);
    border: 1px solid rgba(39, 174, 96, .35);
    color: #baf3ce;
    font-size: 13px
}

.page-content {
    padding: 95px 0
}

.two-col {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: start
}

.content-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 20px;
    line-height: 1.08
}

.content-copy h3 {
    font-size: 23px;
    margin: 32px 0 10px
}

.content-copy p {
    color: var(--muted)
}

.side-card {
    background: var(--soft);
    padding: 30px;
    border-left: 4px solid var(--red)
}

.side-card h3 {
    margin: 0 0 15px;
    font-size: 20px
}

.side-card p {
    color: var(--muted);
    font-size: 14px
}

.side-card a {
    display: block;
    font-weight: 800;
    margin-top: 12px
}

.image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.service-detail {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center
}

.service-detail img {
    height: 520px;
    width: 100%;
    object-fit: cover
}

.service-detail h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin: 10px 0 20px
}

.service-detail p {
    color: var(--muted)
}

.detail-list {
    padding-left: 20px;
    color: var(--muted)
}

.detail-list li {
    padding: 6px 0
}

.project-detail-hero {
    padding: 150px 0 70px;
    background: var(--navy);
    color: #fff
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: end
}

.project-detail-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.project-detail-grid h1 {
    font-size: clamp(38px, 5vw, 64px);
    margin: 12px 0
}

.project-detail-grid p {
    color: #b9c6d5
}

.project-meta-box {
    background: #102945;
    padding: 28px
}

.project-meta-box div {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.project-meta-box div:last-child {
    border-bottom: 0
}

.project-meta-box strong {
    display: block;
    color: #8fa0b2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.project-meta-box span {
    display: block;
    margin-top: 4px
}

.projects-list {
    display: grid;
    gap: 30px
}

.project-row {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px
}

.project-row img {
    width: 330px;
    height: 230px;
    object-fit: cover
}

.project-row h2 {
    font-size: 27px;
    margin: 8px 0
}

.project-row p {
    color: var(--muted);
    margin: 0 0 10px
}

.news-list {
    display: grid;
    gap: 28px
}

.news-large {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px
}

.news-large img {
    width: 360px;
    height: 240px;
    object-fit: cover
}

.news-large h2 {
    font-size: 30px;
    margin: 12px 0
}

.news-large p {
    color: var(--muted)
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.job-card {
    border: 1px solid var(--line);
    padding: 28px;
    transition: .3s
}

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

.job-card h3 {
    margin: 0 0 8px;
    font-size: 22px
}

.job-card p {
    color: var(--muted);
    font-size: 14px
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0
}

.job-tag {
    font-size: 11px;
    padding: 6px 9px;
    background: var(--soft);
    color: #526174
}

.site-footer {
    background: #051326;
    color: #c4d0dc
}

.footer-top {
    padding: 72px 0 50px;
    background: linear-gradient(135deg, #06162d, #0a1d34)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr 1.1fr;
    gap: 45px
}

.footer-brand {
    margin-bottom: 18px
}

.footer-grid p {
    font-size: 15px;
    line-height: 1.75;
    color: #aebdca;
    margin: 0;
    max-width: 380px
}

.footer-grid h3 {
    color: #fff;
    font-size: 18px;
    margin: 3px 0 20px
}

.footer-grid>a,
.footer-grid div>a {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    margin: 11px 0;
    color: #b7c4d1;
    transition: .2s
}

.footer-grid div>a:hover {
    color: #fff
}

.footer-address {
    margin-top: 14px !important
}

.footer-button {
    display: inline-flex !important;
    background: var(--red);
    color: #fff !important;
    padding: 12px 14px;
    border-radius: 5px;
    gap: 8px;
    width: max-content;
    margin-top: 18px !important
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 17px 0
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: #8798aa
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(237, 28, 36, .28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 900
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

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

.delay-1 {
    transition-delay: .08s
}

.delay-2 {
    transition-delay: .16s
}

.delay-3 {
    transition-delay: .24s
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes loaderFallback {

    0%,
    70% {
        opacity: 1;
        visibility: visible
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }
}

@media(max-width:1000px) {
    .main-nav {
        gap: 17px
    }

    .main-nav a {
        font-size: 12px
    }

    .about-grid,
    .two-col,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

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

    .values-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

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

    .project-detail-grid {
        grid-template-columns: 1fr
    }

    .project-row {
        grid-template-columns: 250px 1fr
    }

    .project-row img {
        width: 250px
    }

    .news-large {
        grid-template-columns: 280px 1fr
    }

    .news-large img {
        width: 280px
    }
}

@media(max-width:760px) {
    body {
        font-size: 15px
    }

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

    .nav-wrap {
        height: 72px
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: auto;
        min-height: 0;
        background: var(--navy);
        padding: 14px 16px 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 0 10px;
        transform: translateY(-115%);
        transition: transform .35s ease;
        overflow: visible;
        box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
        border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .main-nav.open {
        transform: translateY(0)
    }

    .main-nav a {
        padding: 13px 7px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 48px
    }

    .main-nav a:not(.nav-cta):after {
        bottom: 0
    }

    .main-nav .nav-cta {
        grid-column: 1/-1;
        margin-top: 133px;
        text-align: center;
        border: 0;
        justify-content: center;
        min-height: 48px
    }

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

    .menu-toggle.open span:nth-child(2) {
        opacity: 0
    }

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

    .hero {
        min-height: 680px;
        padding-top: 72px;
        background-position: 65% center
    }

    .hero-content {
        padding: 50px 0
    }

    .hero p {
        font-size: 16px
    }

    .page-hero {
        padding: 135px 0 65px
    }

    .section {
        padding: 72px 0
    }

    .section-sm {
        padding: 55px 0
    }

    .section-head {
        display: block;
        margin-bottom: 35px
    }

    .section-head .btn {
        margin-top: 18px
    }

    .service-grid,
    .projects-grid,
    .news-grid,
    .career-grid,
    .values-grid,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .about-media img {
        height: 400px
    }

    .about-media .badge {
        left: 15px;
        bottom: 15px
    }

    .stat {
        padding: 12px 0
    }

    .contact-grid {
        gap: 35px
    }

    .form-grid {
        gap: 14px
    }

    .field.full {
        grid-column: auto
    }

    .page-content {
        padding: 65px 0
    }

    .image-card img,
    .service-detail img {
        height: 360px
    }

    .project-detail-hero {
        padding: 125px 0 55px
    }

    .project-detail-grid img {
        height: 350px
    }

    .project-row,
    .news-large {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .project-row img,
    .news-large img {
        width: 100%;
        height: 250px
    }

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

    .footer-grid p {
        font-size: 15px
    }

    .footer-grid h3 {
        font-size: 18px
    }

    .footer-grid>a,
    .footer-grid div>a {
        font-size: 15px
    }

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

    .btn {
        width: 100%
    }

    .button-row {
        width: 100%
    }

    .hero .button-row {
        max-width: 320px
    }
}

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

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