@font-face {
    font-family: "KETC Sans";
    src: url("../fonts/ubuntu/Ubuntu-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}


@font-face {
    font-family: "KETC Sans";
    src: url("../fonts/ubuntu/Ubuntu-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "KETC Sans";
    src: url("../fonts/ubuntu/Ubuntu-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --ink: #071722;
    --ink-soft: #0e2938;
    --ink-muted: #44545e;
    --paper: #f5f4ee;
    --paper-bright: #fbfbf8;
    --white: #ffffff;
    --line: #d8d9d2;
    --line-dark: rgba(255, 255, 255, 0.14);
    --accent: #c9d62c;
    --accent-gold: #f2c900;
    --accent-dark: #8d9c1e;
    --danger: #a6382e;
    --shadow: 0 22px 70px rgba(7, 23, 34, 0.12);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 30px;
    --shell: min(1180px, calc(100vw - 48px));
    --section: clamp(76px, 9vw, 136px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: "KETC Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    color: var(--ink);
    background: var(--accent);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

p:last-child {
    margin-bottom: 0;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--accent);
    border-radius: 6px;
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.icon {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.topbar {
    position: relative;
    z-index: 60;
    color: rgba(255, 255, 255, 0.72);
    background: #041017;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar p {
    margin: 0;
}

.topbar__eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 214, 44, 0.12);
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.topbar__links a:hover,
.topbar__links a:focus-visible {
    color: var(--white);
}

.topbar .icon {
    color: var(--accent);
    width: 14px;
    height: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: rgba(7, 23, 34, 0.96);
    border-bottom: 1px solid var(--line-dark);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 23, 34, 0.985);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand__mark {
    width: 47px;
    height: 47px;
    object-fit: contain;
}

.brand__wordmark {
    display: grid;
    line-height: 0.82;
    letter-spacing: -0.055em;
}

.brand__wordmark strong {
    font-size: 21px;
    letter-spacing: 0.02em;
}

.brand__wordmark span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav li a {
    position: relative;
    display: block;
    padding: 27px 0 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.primary-nav li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.primary-nav li a:hover,
.primary-nav li a:focus-visible,
.primary-nav li a.is-active {
    color: var(--white);
}

.primary-nav li a:hover::after,
.primary-nav li a:focus-visible::after,
.primary-nav li a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
}

.nav-toggle .icon {
    width: 23px;
    height: 23px;
}

.nav-toggle__close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__menu {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
}

.button {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--white);
    background: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    color: var(--ink);
    background: var(--accent);
}

.button--small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 13px;
}

.button--accent {
    color: var(--ink);
    background: var(--accent);
}

.button--accent:hover,
.button--accent:focus-visible {
    color: var(--ink);
    background: var(--accent-gold);
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
    background: var(--accent);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border-color: rgba(7, 23, 34, 0.24);
}

.button--outline:hover,
.button--outline:focus-visible {
    border-color: var(--ink);
}

.button--ghost-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
    color: var(--ink);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.text-link .icon {
    transition: transform 0.2s ease;
}

.text-link:hover .icon,
.text-link:focus-visible .icon {
    transform: translateX(4px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.eyebrow--light {
    color: var(--accent);
}

.section-heading {
    max-width: 780px;
    margin-bottom: clamp(38px, 5vw, 66px);
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 70px;
    align-items: end;
}

.section-heading h2,
.split-copy h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 5.3vw, 72px);
    font-weight: 500;
}

.section-heading > p,
.section-heading__copy {
    color: var(--ink-muted);
    font-size: 17px;
}

.section-heading__copy p {
    margin-bottom: 24px;
}

.home-hero {
    position: relative;
    min-height: min(820px, calc(100svh - 116px));
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
}

.home-hero__media,
.page-hero__media,
.detail-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 15, 23, 0.96) 0%, rgba(3, 15, 23, 0.78) 42%, rgba(3, 15, 23, 0.18) 75%),
        linear-gradient(0deg, rgba(3, 15, 23, 0.68), transparent 55%);
}

.home-hero::after,
.page-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.home-hero__inner {
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 80px;
    align-items: center;
    padding-block: 86px;
}

.home-hero__content {
    max-width: 840px;
}

.home-hero__kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-hero__kicker::before {
    content: "01";
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
    letter-spacing: 0;
}

.home-hero h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(54px, 7.1vw, 104px);
    font-weight: 500;
    letter-spacing: -0.06em;
}

.home-hero h1 span {
    color: var(--accent);
}

.home-hero__lead {
    max-width: 650px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__facts {
    align-self: end;
    padding-bottom: 12px;
}

.hero-fact {
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-fact strong {
    display: block;
    margin-bottom: 3px;
    color: var(--accent);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.hero-fact span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.trust-strip {
    color: var(--white);
    background: var(--ink-soft);
    border-bottom: 1px solid var(--line-dark);
}

.trust-strip__inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    align-items: stretch;
}

.trust-strip__label,
.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 26px;
    border-right: 1px solid var(--line-dark);
}

.trust-strip__label {
    padding-left: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.trust-item {
    font-size: 13px;
    font-weight: 500;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item .icon {
    color: var(--accent);
}

.section {
    padding-block: var(--section);
}

.section--tight {
    padding-block: clamp(60px, 7vw, 96px);
}

.section--light {
    background: var(--paper-bright);
}

.section--dark {
    color: var(--white);
    background: var(--ink);
}

.section--dark .section-heading > p,
.section--dark .section-heading__copy,
.section--dark .muted {
    color: rgba(255, 255, 255, 0.64);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 650px;
}

.about-visual__main {
    position: absolute;
    inset: 0 15% 10% 0;
    width: 85%;
    height: 90%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-visual__detail {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44%;
    height: 41%;
    object-fit: cover;
    border: 8px solid var(--paper);
    border-radius: var(--radius);
}

.about-visual__badge {
    position: absolute;
    top: 42px;
    right: 2%;
    width: 150px;
    height: 150px;
    padding: 20px;
    display: grid;
    place-content: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
    text-align: center;
    transform: rotate(5deg);
}

.about-visual__badge strong {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.about-visual__badge span {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.split-copy > p {
    color: var(--ink-muted);
    font-size: 17px;
}

.value-list {
    margin: 35px 0 38px;
    border-top: 1px solid var(--line);
}

.value-list__item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid var(--line);
}

.value-list__number {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
}

.value-list__item h3 {
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.value-list__item p {
    color: var(--ink-muted);
    font-size: 14px;
}

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

.service-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(7, 23, 34, 0.08);
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -66px;
    width: 180px;
    height: 180px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.1;
}

.service-card:hover {
    color: var(--white);
    background: var(--ink-soft);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.service-card__top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 58px;
}

.service-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
}

.service-card__icon .icon {
    width: 27px;
    height: 27px;
}

.service-card__index {
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-card:hover .service-card__index,
.service-card:hover p {
    color: rgba(255, 255, 255, 0.66);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 500;
}

.service-card p {
    margin-bottom: 28px;
    color: var(--ink-muted);
    font-size: 14px;
    transition: color 0.25s ease;
}

.service-card .text-link {
    margin-top: auto;
}

.service-card:hover .text-link {
    color: var(--accent);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    grid-column: span 4;
    min-height: 460px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-soft);
    border-radius: var(--radius);
    isolation: isolate;
}

.project-card--wide {
    grid-column: span 8;
}

.project-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(3, 15, 23, 0.94) 0%, rgba(3, 15, 23, 0.28) 58%, rgba(3, 15, 23, 0.06));
}

.project-card:hover .project-card__image {
    transform: scale(1.045);
}

.project-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: 34px;
}

.project-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-card__meta span:first-child {
    color: var(--accent);
}

.project-card h3 {
    max-width: 560px;
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
}

.project-card__arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-80px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__arrow,
.project-card:focus-visible .project-card__arrow {
    transform: translateY(0);
}

.stats-band {
    background: var(--accent);
}

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

.stat {
    min-height: 210px;
    padding: 46px 34px;
    border-right: 1px solid rgba(7, 23, 34, 0.18);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    margin-bottom: 12px;
    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
}

.stat span {
    display: block;
    max-width: 160px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line-dark);
}

.process-step {
    position: relative;
    padding: 38px 30px 0 0;
    border-right: 1px solid var(--line-dark);
}

.process-step:not(:first-child) {
    padding-left: 30px;
}

.process-step:last-child {
    border-right: 0;
}

.process-step__number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 42px;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 13px;
    font-size: 23px;
    font-weight: 500;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.client-wall {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.client-logo {
    min-height: 155px;
    padding: 24px;
    display: grid;
    place-items: center;
    background: var(--paper-bright);
}

.client-logo img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.page-hero,
.detail-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(3, 15, 23, 0.94), rgba(3, 15, 23, 0.48) 62%, rgba(3, 15, 23, 0.24));
}

.page-hero__inner,
.detail-hero__inner {
    padding-block: 88px 76px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: var(--accent);
}

.breadcrumbs span::before {
    content: "/";
    margin-right: 8px;
    color: var(--accent);
}

.page-hero h1,
.detail-hero h1 {
    max-width: 920px;
    margin-bottom: 20px;
    font-size: clamp(50px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -0.06em;
}

.page-hero__lead,
.detail-hero__lead {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(17px, 1.7vw, 21px);
}

.detail-hero {
    min-height: 640px;
}

.detail-hero__tag {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 13px;
    color: var(--ink);
    background: var(--accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 32px;
    margin-top: 32px;
}

.detail-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.detail-hero__meta .icon {
    color: var(--accent);
}

.services-showcase {
    display: grid;
    gap: 24px;
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    min-height: 430px;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.service-feature:nth-child(even) .service-feature__media {
    order: 2;
}

.service-feature__media {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.service-feature__content {
    padding: clamp(38px, 6vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-feature__number {
    margin-bottom: 45px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-feature h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 53px);
    font-weight: 500;
}

.service-feature p {
    margin-bottom: 28px;
    color: var(--ink-muted);
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 50px;
    margin: 34px 0 40px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.capability-list li {
    min-height: 58px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 500;
}

.capability-list .icon {
    color: var(--accent-dark);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}

.prose h2 {
    margin: 0 0 26px;
    font-size: clamp(36px, 4.7vw, 62px);
    font-weight: 500;
}

.prose h3 {
    margin: 44px 0 18px;
    font-size: 27px;
}

.prose p,
.prose li {
    color: var(--ink-muted);
    font-size: 17px;
}

.prose img {
    margin: 36px 0;
    border-radius: var(--radius);
}

.detail-aside {
    position: sticky;
    top: 116px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.detail-aside h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

.aside-fact {
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.aside-fact span {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aside-fact strong {
    font-size: 14px;
    font-weight: 500;
}

.detail-aside .button {
    width: 100%;
    margin-top: 22px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
}

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

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

.faq-list {
    max-width: 900px;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 25px 50px 25px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before,
.faq-item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

.faq-item summary::after {
    transform: rotate(90deg);
}

.faq-item[open] summary::after {
    transform: rotate(0deg);
}

.faq-item__answer {
    max-width: 760px;
    padding: 0 50px 25px 0;
    color: var(--ink-muted);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 44px;
}

.filter-chip {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-muted);
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
    color: var(--ink);
    background: var(--accent);
    border-color: var(--accent);
}

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

.projects-listing .project-card {
    grid-column: auto;
    min-height: 430px;
}

.empty-state {
    padding: 70px 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.empty-state h2 {
    margin-bottom: 12px;
    font-size: 34px;
}

.empty-state p {
    color: var(--ink-muted);
}

.project-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -1px;
    color: var(--white);
    background: var(--ink-soft);
}

.project-fact {
    min-height: 148px;
    padding: 32px;
    border-right: 1px solid var(--line-dark);
}

.project-fact:last-child {
    border-right: 0;
}

.project-fact .icon {
    margin-bottom: 21px;
    color: var(--accent);
}

.project-fact span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-fact strong {
    font-size: 14px;
    font-weight: 500;
}

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

.scope-item {
    min-height: 140px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
}

.scope-item .icon {
    color: var(--accent);
}

.scope-item span {
    font-size: 14px;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    grid-column: span 4;
    overflow: hidden;
    min-height: 330px;
    margin: 0;
    background: var(--ink-soft);
    border-radius: var(--radius);
}

.gallery-item:first-child,
.gallery-item:nth-child(5n) {
    grid-column: span 8;
}

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

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

.trading-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.trade-card {
    min-height: 270px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.trade-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 40px;
    display: grid;
    place-items: center;
    background: var(--accent);
    border-radius: 50%;
}

.trade-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

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

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}

.form-intro {
    position: sticky;
    top: 116px;
}

.form-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 67px);
    font-weight: 500;
}

.form-intro > p {
    color: var(--ink-muted);
    font-size: 17px;
}

.contact-mini-list {
    margin-top: 38px;
    border-top: 1px solid var(--line);
}

.contact-mini-list a,
.contact-mini-list p {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.contact-mini-list .icon {
    margin-top: 3px;
    color: var(--accent-dark);
}

.inquiry-form {
    padding: clamp(28px, 5vw, 54px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 70px rgba(7, 23, 34, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 18px;
}

.field {
    display: grid;
    gap: 8px;
}

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

.field label,
.field__label {
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(201, 214, 44, 0.16);
}

.field input[type="file"] {
    padding: 13px;
}

.field-help {
    color: var(--ink-muted);
    font-size: 12px;
}

.form-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.form-note {
    color: var(--ink-muted);
    font-size: 12px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    min-height: 270px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-card .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 42px;
    color: var(--accent-dark);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 23px;
}

.contact-card p,
.contact-card a {
    color: var(--ink-muted);
    font-size: 14px;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: var(--ink);
}

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

.department-item {
    display: grid;
    grid-template-columns: 0.7fr 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.department-item span {
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.department-item strong {
    font-size: 18px;
}

.department-item a {
    font-size: 14px;
    font-weight: 700;
}

.footer-cta {
    color: var(--white);
    background: var(--ink-soft);
    border-bottom: 1px solid var(--line-dark);
}

.footer-cta__inner {
    min-height: 300px;
    padding-block: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-cta h2 {
    max-width: 800px;
    margin-bottom: 0;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 500;
}

.site-footer {
    color: rgba(255, 255, 255, 0.64);
    background: #041017;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
    gap: clamp(34px, 6vw, 86px);
    padding-block: 78px 68px;
}

.brand--footer {
    color: var(--white);
    margin-bottom: 27px;
}

.footer-brand p {
    max-width: 320px;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 30px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: var(--ink);
    background: var(--accent);
    border-color: var(--accent);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.footer-column a,
.footer-column p {
    font-size: 13px;
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--accent);
}

.footer-column .icon {
    width: 14px;
    height: 14px;
}

.footer-contact p {
    line-height: 1.8;
}

.site-footer__bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.site-footer__bottom p {
    margin: 0;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    min-height: 50px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(7, 23, 34, 0.25);
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

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

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

@media (max-width: 1080px) {
    :root {
        --shell: min(100% - 40px, 1180px);
    }

    .primary-nav {
        gap: 20px;
    }

    .primary-nav ul {
        gap: 20px;
    }

    .home-hero__inner {
        gap: 40px;
    }

    .service-grid,
    .projects-listing,
    .trading-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-card,
    .project-card--wide {
        grid-column: span 6;
    }

    .project-card:last-child:nth-child(odd) {
        grid-column: span 12;
    }

    .site-footer__grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .topbar__eyebrow {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        height: calc(100svh - 70px);
        padding: 34px max(24px, calc((100vw - var(--shell)) / 2));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 28px;
        color: var(--white);
        background: var(--ink);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        overflow-y: auto;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .primary-nav ul {
        display: block;
    }

    .primary-nav li a {
        padding: 15px 0;
        color: var(--white);
        border-bottom: 1px solid var(--line-dark);
        font-size: 22px;
    }

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

    .nav-cta {
        width: 100%;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
        align-items: end;
        padding-block: 84px 42px;
    }

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

    .hero-fact {
        padding-bottom: 0;
    }

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

    .trust-strip__label {
        grid-column: 1 / -1;
        padding: 18px 0 10px;
        border-bottom: 1px solid var(--line-dark);
    }

    .trust-item {
        padding-left: 0;
        border-right: 0;
    }

    .about-grid,
    .detail-layout,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 570px;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid,
    .process-grid,
    .project-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat:nth-child(2),
    .project-fact:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n + 2),
    .project-fact:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(7, 23, 34, 0.18);
    }

    .project-fact:nth-child(-n + 2) {
        border-bottom-color: var(--line-dark);
    }

    .process-step:nth-child(2) {
        border-right: 0;
    }

    .process-step:nth-child(-n + 2) {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--line-dark);
    }

    .process-step:nth-child(3) {
        padding-left: 0;
    }

    .client-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-feature,
    .service-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-feature:nth-child(even) .service-feature__media {
        order: 0;
    }

    .service-feature__media {
        min-height: 340px;
        height: 340px;
    }

    .detail-aside,
    .form-intro {
        position: static;
    }

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

    .gallery-item,
    .gallery-item:first-child,
    .gallery-item:nth-child(5n) {
        grid-column: span 6;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: calc(100vw - 28px);
        --section: 72px;
        --radius-lg: 22px;
    }

    .topbar {
        font-size: 10px;
    }

    .topbar__links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .topbar__links a:last-child span {
        max-width: 122px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand__mark {
        width: 40px;
        height: 40px;
    }

    .brand__wordmark strong {
        font-size: 18px;
    }

    .brand__wordmark span {
        font-size: 15px;
    }

    .primary-nav {
        height: calc(100svh - 70px);
    }

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

    .home-hero::before {
        background: linear-gradient(90deg, rgba(3, 15, 23, 0.93), rgba(3, 15, 23, 0.56));
    }

    .home-hero__inner {
        min-height: 720px;
        padding-block: 72px 30px;
    }

    .home-hero h1 {
        font-size: clamp(48px, 14vw, 68px);
        overflow-wrap: anywhere;
    }

    .hero-actions .button {
        width: 100%;
    }

    .home-hero__facts {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-fact {
        display: flex;
        align-items: baseline;
        gap: 12px;
        padding: 15px 0;
    }

    .hero-fact strong {
        min-width: 68px;
        font-size: 21px;
    }

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

    .trust-item {
        min-height: 62px;
        border-bottom: 1px solid var(--line-dark);
    }

    .about-visual {
        min-height: 430px;
    }

    .about-visual__main {
        inset: 0 10% 9% 0;
        width: 90%;
        height: 91%;
    }

    .about-visual__badge {
        top: 20px;
        width: 115px;
        height: 115px;
    }

    .about-visual__badge strong {
        font-size: 29px;
    }

    .about-visual__badge span {
        font-size: 9px;
    }

    .service-grid,
    .projects-listing,
    .trading-categories,
    .feature-cards,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
        padding: 28px;
    }

    .project-card,
    .project-card--wide,
    .project-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 410px;
    }

    .project-card__content {
        padding: 26px;
    }

    .stats-grid,
    .process-grid,
    .project-facts {
        grid-template-columns: 1fr;
    }

    .stat,
    .stat:first-child,
    .project-fact {
        min-height: auto;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 23, 34, 0.18);
    }

    .project-fact {
        padding-inline: 20px;
        border-bottom-color: var(--line-dark);
    }

    .process-step,
    .process-step:not(:first-child),
    .process-step:nth-child(3) {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .process-step__number {
        margin-bottom: 24px;
    }

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

    .client-logo {
        min-height: 125px;
    }

    .page-hero,
    .detail-hero {
        min-height: 500px;
    }

    .page-hero__inner,
    .detail-hero__inner {
        padding-block: 68px 56px;
    }

    .page-hero h1,
    .detail-hero h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .service-feature__media {
        min-height: 260px;
        height: 260px;
    }

    .service-feature__content {
        padding: 32px 26px;
    }

    .service-feature__number {
        margin-bottom: 28px;
    }

    .capability-list {
        grid-template-columns: 1fr;
    }

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

    .gallery-item,
    .gallery-item:first-child,
    .gallery-item:nth-child(5n) {
        grid-column: 1 / -1;
        min-height: 280px;
    }

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

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

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
    }

    .department-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-cta__inner {
        min-height: 340px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .footer-cta__inner .button {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        padding-block: 60px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        padding-block: 20px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .floating-contact {
        right: 14px;
        bottom: 14px;
        width: 50px;
        padding: 0;
        justify-content: center;
    }

    .floating-contact span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

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

/* ========================================================================== 
   Services capability deck — complete resting state, stable interaction
   ========================================================================== */

.capability-index-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 86% 14%, rgba(212, 223, 32, 0.09), transparent 25%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #04121a;
    background-size: auto, 56px 56px, 56px 56px, auto;
}

.capability-index-section::before,
.capability-index-section::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.capability-index-section::before {
    top: 84px;
    right: -118px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(212, 223, 32, 0.16);
    transform: rotate(45deg);
}

.capability-index-section::after {
    top: 0;
    bottom: 0;
    left: 7%;
    width: 1px;
    background: linear-gradient(transparent, rgba(212, 223, 32, 0.3), transparent);
}

.capability-index-section > .shell {
    position: relative;
    z-index: 1;
}

.capability-index-heading {
    position: relative;
    margin-bottom: clamp(42px, 5vw, 72px);
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.capability-index-heading::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 112px;
    height: 3px;
    content: "";
    background: var(--signal);
    box-shadow: 0 0 22px rgba(212, 223, 32, 0.26);
}

.capability-index-heading .eyebrow {
    color: var(--signal);
}

.capability-index-heading h2 {
    color: #fff;
    text-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.capability-index {
    display: grid;
    gap: 12px;
    border-top: 0;
    counter-reset: capability;
}

.capability-row {
    min-height: 188px;
    padding: 28px 30px;
    grid-template-columns: 64px minmax(220px, 0.78fr) minmax(330px, 1.22fr) 132px;
    gap: 28px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px 22px 4px 4px;
    background: rgba(7, 29, 40, 0.88);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
    transform: translateZ(0);
    transition:
        color 300ms ease,
        border-color 360ms ease,
        box-shadow 420ms ease,
        background-color 360ms ease,
        transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.capability-row::before {
    opacity: 1;
    background-image: linear-gradient(90deg, rgba(4, 18, 26, 0.97) 0%, rgba(4, 18, 26, 0.89) 43%, rgba(4, 18, 26, 0.48) 100%);
    transform: none;
    transition: background 420ms ease;
}

.capability-row::after {
    opacity: 0.28;
    background-size: 38px 38px;
    transform: none;
    transition: opacity 320ms ease;
}

.capability-row__media {
    opacity: 0.24;
    filter: grayscale(1) saturate(0.45) contrast(1.08) brightness(0.78);
    transform: scale(1.025);
    transition: opacity 420ms ease, filter 520ms ease, transform 760ms cubic-bezier(.2, .8, .2, 1);
}

.capability-row:hover,
.capability-row:focus-visible {
    min-height: 188px;
    padding-block: 28px;
    color: #fff;
    border-color: rgba(212, 223, 32, 0.74);
    background: rgba(7, 29, 40, 0.98);
    box-shadow: 0 25px 64px rgba(0, 0, 0, 0.25), inset 4px 0 0 var(--signal);
    transform: translateY(-3px);
}

.capability-row:hover::before,
.capability-row:focus-visible::before {
    opacity: 1;
    background-image: linear-gradient(90deg, rgba(4, 18, 26, 0.97) 0%, rgba(4, 18, 26, 0.84) 42%, rgba(4, 18, 26, 0.28) 100%);
    transform: none;
}

.capability-row:hover::after,
.capability-row:focus-visible::after {
    opacity: 0.52;
    transform: none;
}

.capability-row:hover .capability-row__media,
.capability-row:focus-visible .capability-row__media {
    opacity: 0.68;
    filter: grayscale(0) saturate(0.96) contrast(1.06) brightness(0.9);
    transform: scale(1);
}

.capability-row__number {
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    align-self: center;
    color: var(--signal);
    border: 1px solid rgba(212, 223, 32, 0.48);
    border-radius: 3px 14px 3px 3px;
    background: rgba(3, 16, 24, 0.58);
    box-shadow: 7px 7px 0 rgba(212, 223, 32, 0.08);
    transition: color 320ms ease, background-color 320ms ease, box-shadow 320ms ease;
}

.capability-row:hover .capability-row__number,
.capability-row:focus-visible .capability-row__number {
    color: #061923;
    background: var(--signal);
    box-shadow: 7px 7px 0 rgba(3, 16, 24, 0.42);
}

.capability-row h3 {
    color: #fff;
    line-height: 1.02;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.capability-row p,
.capability-row:hover p,
.capability-row:focus-visible p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.7;
}

.capability-row__link {
    min-height: 46px;
    padding: 0 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.86);
    transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.capability-row:hover .capability-row__link,
.capability-row:focus-visible .capability-row__link {
    color: var(--signal);
    border-color: var(--signal);
    background: rgba(212, 223, 32, 0.06);
}

@media (max-width: 1100px) {
    .capability-row {
        min-height: 210px;
        grid-template-columns: 58px minmax(0, 1fr) 112px;
        gap: 22px;
    }

    .capability-row:hover,
    .capability-row:focus-visible {
        min-height: 210px;
        padding-block: 28px;
    }

    .capability-row p {
        grid-column: 2 / -1;
    }

    .capability-row__link {
        grid-column: 3;
        grid-row: 1;
    }
}

@media (max-width: 640px) {
    .capability-index-section::before {
        right: -180px;
    }

    .capability-index-heading {
        padding-bottom: 22px;
    }

    .capability-index {
        gap: 10px;
    }

    .capability-row,
    .capability-row:hover,
    .capability-row:focus-visible {
        min-height: 260px;
        padding: 24px 22px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px 16px;
        border-radius: 4px 18px 4px 4px;
        transform: none;
    }

    .capability-row::before {
        background-image: linear-gradient(180deg, rgba(4, 18, 26, 0.9), rgba(4, 18, 26, 0.96));
    }

    .capability-row__media {
        opacity: 0.2;
    }

    .capability-row h3 {
        grid-column: 2;
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .capability-row p {
        grid-column: 1 / -1;
        font-size: 13px;
        line-height: 1.65;
    }

.capability-row__link {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
}

/* ========================================================================== 
   Services — architectural capability atlas
   ========================================================================== */

.services-page {
    --atlas-deep: #03131c;
    --atlas-panel: #09222f;
    --atlas-line: rgba(255, 255, 255, 0.12);
}

.service-atlas-hero {
    --atlas-hero-x: 74%;
    --atlas-hero-y: 42%;
    --image-skeleton-base: #102733;
    --image-skeleton-line: rgba(255, 255, 255, 0.055);
    --image-skeleton-shine: rgba(212, 223, 32, 0.16);
    position: relative;
    min-height: clamp(620px, 82vh, 850px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--atlas-deep);
    isolation: isolate;
}

.service-atlas-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(520px circle at var(--atlas-hero-x) var(--atlas-hero-y), rgba(212, 223, 32, 0.14), transparent 68%),
        linear-gradient(90deg, rgba(3, 19, 28, 0.99) 0%, rgba(3, 19, 28, 0.94) 36%, rgba(3, 19, 28, 0.44) 72%, rgba(3, 19, 28, 0.72) 100%),
        linear-gradient(0deg, rgba(3, 19, 28, 0.96) 0%, transparent 58%);
}

.service-atlas-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -9vw;
    bottom: -28%;
    width: min(54vw, 810px);
    aspect-ratio: 1;
    border: 1px solid rgba(212, 223, 32, 0.42);
    border-radius: 50%;
    box-shadow: 0 0 0 76px rgba(212, 223, 32, 0.025), 0 0 0 152px rgba(212, 223, 32, 0.018);
    pointer-events: none;
}

.service-atlas-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 61% center;
    filter: saturate(0.74) contrast(1.1) brightness(0.88);
    transform: scale(1.035);
    transition: transform 1.4s cubic-bezier(.22, 1, .36, 1), filter 700ms ease;
}

.service-atlas-hero:hover .service-atlas-hero__media {
    filter: saturate(0.9) contrast(1.08) brightness(0.92);
    transform: scale(1.015);
}

.service-atlas-hero__grid,
.service-atlas-section__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
}

.service-atlas-hero__grid {
    z-index: 0;
    opacity: 0.62;
    mask-image: linear-gradient(90deg, #000 0%, #000 36%, transparent 88%);
}

.service-atlas-hero__beam {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 67%;
    width: 1px;
    background: linear-gradient(transparent 8%, rgba(212, 223, 32, 0.72) 48%, transparent 86%);
    transform: rotate(13deg) scaleY(1.35);
    transform-origin: center;
    opacity: 0.72;
    pointer-events: none;
    animation: service-atlas-beam 7s ease-in-out infinite;
}

.service-atlas-hero__content {
    position: relative;
    z-index: 3;
    min-height: clamp(500px, 68vh, 690px);
    padding-block: clamp(110px, 14vh, 168px) clamp(58px, 7vw, 92px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(36px, 7vw, 110px);
    align-items: end;
}

.service-atlas-hero__copy {
    max-width: 930px;
}

.service-atlas-hero h1 {
    margin: 0;
    font-size: clamp(78px, 12.2vw, 172px);
    font-weight: 500;
    line-height: 0.72;
    letter-spacing: -0.09em;
}

.service-atlas-hero h1 span {
    display: block;
}

.service-atlas-hero h1 span:last-child {
    position: relative;
    margin-left: clamp(30px, 8vw, 122px);
    color: var(--signal);
}

.service-atlas-hero h1 span:last-child::after {
    content: "";
    position: absolute;
    top: 58%;
    left: calc(100% + 28px);
    width: clamp(80px, 12vw, 180px);
    height: 1px;
    background: var(--signal);
}

.service-atlas-hero p {
    max-width: 670px;
    margin: clamp(42px, 6vw, 72px) 0 0 clamp(30px, 8vw, 122px);
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.74);
    border-left: 2px solid var(--signal);
    font-size: clamp(16px, 1.65vw, 21px);
    line-height: 1.62;
}

.service-atlas-hero__coordinates {
    position: relative;
    z-index: 2;
    width: 62px;
    padding: 12px 0;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.service-atlas-hero__coordinates span {
    position: relative;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-atlas-hero__coordinates span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-atlas-hero__coordinates span:first-child {
    color: var(--signal);
}

.service-atlas-hero__coordinates span:first-child::before {
    content: "";
    position: absolute;
    left: -6px;
    width: 12px;
    height: 1px;
    background: var(--signal);
}

.service-atlas-section {
    --image-skeleton-base: #102733;
    --image-skeleton-line: rgba(255, 255, 255, 0.055);
    --image-skeleton-shine: rgba(212, 223, 32, 0.16);
    position: relative;
    padding-block: clamp(72px, 9vw, 138px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 7% 8%, rgba(212, 223, 32, 0.08), transparent 23%),
        radial-gradient(circle at 94% 72%, rgba(31, 91, 112, 0.18), transparent 28%),
        var(--atlas-deep);
}

.service-atlas-section::before,
.service-atlas-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.service-atlas-section::before {
    top: 44px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 223, 32, 0.55) 22%, rgba(212, 223, 32, 0.55) 78%, transparent);
}

.service-atlas-section::after {
    top: 37px;
    left: calc(50% - 7px);
    width: 14px;
    height: 14px;
    border: 1px solid var(--signal);
    background: var(--atlas-deep);
    transform: rotate(45deg);
}

.service-atlas-section__grid {
    opacity: 0.4;
    background-size: 56px 56px;
    mask-image: linear-gradient(#000 0%, transparent 94%);
}

.service-atlas {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.service-atlas-card {
    --atlas-x: 50%;
    --atlas-y: 48%;
    min-height: 540px;
    grid-column: span 6;
}

.service-atlas-card--1 {
    grid-column: span 7;
    min-height: 590px;
}

.service-atlas-card--2 {
    grid-column: span 5;
    min-height: 590px;
}

.service-atlas-card--3 {
    grid-column: span 5;
    min-height: 520px;
}

.service-atlas-card--4 {
    grid-column: span 7;
    min-height: 520px;
}

.service-atlas-card--5 {
    grid-column: span 12;
    min-height: 450px;
}

.service-atlas-card__link {
    position: relative;
    height: 100%;
    min-height: inherit;
    padding: clamp(24px, 3.2vw, 44px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    column-gap: 18px;
    overflow: hidden;
    color: #fff;
    background: var(--atlas-panel);
    border: 1px solid rgba(255, 255, 255, 0.17);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    isolation: isolate;
    transition: border-color 350ms ease, transform 500ms cubic-bezier(.22, 1, .36, 1), box-shadow 500ms ease;
}

.service-atlas-card__link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(380px circle at var(--atlas-x) var(--atlas-y), rgba(212, 223, 32, 0.17), transparent 68%);
    transition: opacity 350ms ease;
}

.service-atlas-card__link::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--signal);
    transition: width 560ms cubic-bezier(.22, 1, .36, 1);
}

.service-atlas-card__media,
.service-atlas-card__wash {
    position: absolute;
    inset: 0;
}

.service-atlas-card__media {
    z-index: -3;
    background: #102733;
}

.service-atlas-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.48) contrast(1.12) brightness(0.72);
    transform: scale(1.035);
    transition: transform 850ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
}

.service-atlas-card--2 .service-atlas-card__media img {
    object-position: 64% center;
}

.service-atlas-card--5 .service-atlas-card__media img {
    object-position: center 58%;
}

.service-atlas-card__wash {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(3, 19, 28, 0.22) 0%, rgba(3, 19, 28, 0.2) 30%, rgba(3, 19, 28, 0.96) 100%),
        linear-gradient(90deg, rgba(3, 19, 28, 0.42), transparent 70%);
    transition: background-color 400ms ease;
}

.service-atlas-card__number {
    position: relative;
    z-index: 2;
    min-width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    color: var(--signal);
    border: 1px solid rgba(212, 223, 32, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-atlas-card__number::before,
.service-atlas-card__number::after {
    content: "";
    position: absolute;
    background: var(--signal);
}

.service-atlas-card__number::before {
    right: -8px;
    width: 15px;
    height: 1px;
}

.service-atlas-card__number::after {
    bottom: -8px;
    width: 1px;
    height: 15px;
}

.service-atlas-card__icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    padding: 11px;
    grid-column: 3;
    display: grid;
    place-items: center;
    background: rgba(3, 19, 28, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.service-atlas-card__icon .icon {
    width: 30px;
    height: 30px;
    color: #fff;
}

.service-atlas-card__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: end;
}

.service-atlas-card__content::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 21px;
    background: var(--signal);
    transition: width 420ms cubic-bezier(.22, 1, .36, 1);
}

.service-atlas-card__content h2 {
    max-width: 700px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.1vw, 62px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.service-atlas-card__content p {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.65;
}

.service-atlas-card__arrow {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 3.2vw, 44px);
    bottom: clamp(24px, 3.2vw, 44px);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--signal);
    transform: translateY(7px);
    opacity: 0;
    transition: transform 380ms cubic-bezier(.22, 1, .36, 1), opacity 260ms ease;
}

.service-atlas-card__arrow .icon {
    width: 20px;
    height: 20px;
}

.service-atlas-card__corner {
    position: absolute;
    z-index: 4;
    top: 7px;
    right: 7px;
    width: 18px;
    height: 18px;
    border-top: 1px solid var(--signal);
    border-right: 1px solid var(--signal);
}

.service-atlas-card--5 .service-atlas-card__content {
    padding-right: 84px;
}

@media (hover: hover) {
    .service-atlas-card__link:hover,
    .service-atlas-card__link:focus-visible {
        border-color: rgba(212, 223, 32, 0.82);
        outline: none;
        transform: translateY(-6px);
        box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
    }

    .service-atlas-card__link:hover::before,
    .service-atlas-card__link:focus-visible::before {
        opacity: 1;
    }

    .service-atlas-card__link:hover::after,
    .service-atlas-card__link:focus-visible::after {
        width: 100%;
    }

    .service-atlas-card__link:hover .service-atlas-card__media img,
    .service-atlas-card__link:focus-visible .service-atlas-card__media img {
        filter: saturate(0.92) contrast(1.08) brightness(0.83);
        transform: scale(1.075);
    }

    .service-atlas-card__link:hover .service-atlas-card__content::before,
    .service-atlas-card__link:focus-visible .service-atlas-card__content::before {
        width: 96px;
    }

    .service-atlas-card__link:hover .service-atlas-card__arrow,
    .service-atlas-card__link:focus-visible .service-atlas-card__arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes service-atlas-beam {
    0%, 100% { transform: translateX(-7vw) rotate(13deg) scaleY(1.35); opacity: 0; }
    18%, 72% { opacity: 0.72; }
    86% { transform: translateX(36vw) rotate(13deg) scaleY(1.35); opacity: 0; }
}

@media (max-width: 980px) {
    .service-atlas-hero__content {
        grid-template-columns: 1fr;
    }

    .service-atlas-hero__coordinates {
        position: absolute;
        right: 0;
        bottom: 62px;
    }

    .service-atlas-card,
    .service-atlas-card--1,
    .service-atlas-card--2,
    .service-atlas-card--3,
    .service-atlas-card--4 {
        grid-column: span 6;
        min-height: 520px;
    }

    .service-atlas-card--5 {
        grid-column: span 12;
    }

    .service-atlas-card__content h2 {
        font-size: clamp(34px, 5.5vw, 52px);
    }
}

@media (max-width: 700px) {
    .service-atlas-hero {
        min-height: 650px;
    }

    .service-atlas-hero::after {
        right: -42vw;
        bottom: -8%;
        width: 92vw;
    }

    .service-atlas-hero__media {
        object-position: 70% center;
    }

    .service-atlas-hero__content {
        min-height: 570px;
        padding-block: 104px 52px;
    }

    .service-atlas-hero h1 {
        font-size: clamp(66px, 23vw, 104px);
        line-height: 0.78;
    }

    .service-atlas-hero h1 span:last-child {
        margin-left: 18px;
    }

    .service-atlas-hero h1 span:last-child::after {
        display: none;
    }

    .service-atlas-hero p {
        max-width: calc(100% - 34px);
        margin: 42px 0 0 18px;
        font-size: 15px;
    }

    .service-atlas-hero__coordinates {
        right: 0;
        bottom: 48px;
        width: 36px;
    }

    .service-atlas-hero__coordinates span {
        height: 34px;
        font-size: 8px;
    }

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

    .service-atlas-card,
    .service-atlas-card--1,
    .service-atlas-card--2,
    .service-atlas-card--3,
    .service-atlas-card--4,
    .service-atlas-card--5 {
        min-height: 490px;
        grid-column: 1;
    }

    .service-atlas-card__link {
        padding: 24px 21px;
        clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    }

    .service-atlas-card__icon {
        width: 48px;
        height: 48px;
    }

    .service-atlas-card__content,
    .service-atlas-card--5 .service-atlas-card__content {
        padding-right: 0;
    }

    .service-atlas-card__content h2 {
        font-size: clamp(34px, 11vw, 47px);
    }

    .service-atlas-card__content p {
        margin-top: 15px;
        padding-right: 0;
        font-size: 12px;
        line-height: 1.6;
    }

    .service-atlas-card__arrow {
        top: 84px;
        right: 21px;
        bottom: auto;
        width: 42px;
        height: 42px;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-atlas-hero__beam {
        animation: none;
    }

    .service-atlas-hero__media,
    .service-atlas-card__link,
    .service-atlas-card__media img,
    .service-atlas-card__content::before,
    .service-atlas-card__arrow {
        transition: none;
    }
}

/* 2026 interaction + detail refinement */

/* Projects navigation: the menu frame must never clip its dropdown. */
.site-v2 .primary-nav > ul {
    overflow: visible;
    clip-path: none;
}

.site-v2 .nav-has-children > a {
    display: flex !important;
    gap: 9px;
}

.nav-caret {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 260ms ease, color 260ms ease;
}

.site-v2 .nav-has-children:hover .nav-caret,
.site-v2 .nav-has-children:focus-within .nav-caret {
    color: var(--signal);
    transform: translateY(2px) rotate(225deg);
}

.site-v2 .nav-dropdown {
    top: calc(100% + 12px);
    width: 328px;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 3px solid var(--signal);
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        rgba(3, 15, 22, 0.99);
    background-size: 38px 38px;
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, 16px) scale(0.97);
    transform-origin: top;
}

.site-v2 .nav-dropdown::before {
    height: 15px;
}

.site-v2 .nav-dropdown::after {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    content: "";
    border-top: 1px solid rgba(212, 223, 32, 0.38);
    border-right: 1px solid rgba(212, 223, 32, 0.38);
    pointer-events: none;
}

.site-v2 .nav-dropdown li a {
    position: relative;
    min-height: 54px;
    padding: 14px 48px 14px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0;
    font-size: 13px;
    line-height: 1.3;
}

.site-v2 .nav-dropdown li:last-child a {
    border-bottom: 0;
}

.site-v2 .nav-dropdown li a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 240ms ease;
}

.site-v2 .nav-dropdown li a:hover::before,
.site-v2 .nav-dropdown li a:focus-visible::before {
    transform: translate(5px, -50%) rotate(45deg);
}

.site-v2 .nav-has-children:hover .nav-dropdown,
.site-v2 .nav-has-children:focus-within .nav-dropdown {
    transform: translate(-50%, 0) scale(1);
}

/* More dimensional primary and floating contact actions. */
.engineering-hero .button--accent,
.contact-intro-original .button {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.22);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.23), inset 0 -4px 0 rgba(7, 23, 34, 0.16);
    isolation: isolate;
}

.engineering-hero .button--accent::before,
.contact-intro-original .button::before,
.floating-contact::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.45) 48%, transparent 60%);
    transform: translateX(-130%);
    transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.engineering-hero .button--accent:hover::before,
.engineering-hero .button--accent:focus-visible::before,
.contact-intro-original .button:hover::before,
.contact-intro-original .button:focus-visible::before,
.floating-contact:hover::before,
.floating-contact:focus-visible::before {
    transform: translateX(130%);
}

.engineering-hero .button--accent {
    min-width: 170px;
    min-height: 62px;
    padding-inline: 28px;
    border-radius: 5px 19px 5px 5px;
}

.engineering-hero .button--accent:hover,
.engineering-hero .button--accent:focus-visible {
    color: #fff;
    border-color: var(--signal);
    background: #0a2533;
    box-shadow: 0 0 0 4px rgba(212, 223, 32, 0.14), 0 20px 46px rgba(0, 0, 0, 0.34);
}

.floating-contact {
    min-height: 58px;
    padding-inline: 21px;
    border-radius: 18px 18px 5px 18px;
    background: var(--signal);
    box-shadow: 0 18px 45px rgba(7, 23, 34, 0.3), 0 0 0 5px rgba(212, 223, 32, 0.13);
}

.floating-contact:hover,
.floating-contact:focus-visible {
    color: #fff;
    background: #0a2533;
    transform: translateY(-5px);
}

/* About metric and support capabilities. */
.about-original__stat {
    width: 214px;
    min-height: 184px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.2);
    border-radius: 26px 26px 7px 26px;
    clip-path: none;
    box-shadow: 0 24px 54px rgba(7, 23, 34, 0.24);
    isolation: isolate;
}

.about-original__stat::before {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.about-original__stat::after {
    position: absolute;
    right: -42px;
    bottom: -42px;
    z-index: -1;
    width: 146px;
    height: 146px;
    content: "";
    border: 1px solid rgba(7, 23, 34, 0.21);
    border-radius: 50%;
    box-shadow: 0 0 0 25px rgba(7, 23, 34, 0.045), 0 0 0 50px rgba(7, 23, 34, 0.025);
}

.about-original__stat-orbit {
    position: absolute;
    top: 24px;
    left: 27px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(7, 23, 34, 0.44);
    border-radius: 50%;
}

.about-original__stat-orbit::before,
.about-original__stat-orbit::after {
    position: absolute;
    content: "";
    background: #071722;
}

.about-original__stat-orbit::before { top: 50%; left: -9px; width: 44px; height: 1px; }
.about-original__stat-orbit::after { top: -9px; left: 50%; width: 1px; height: 44px; }

.about-original__stat strong {
    position: relative;
    z-index: 1;
    font-size: 52px;
}

.help-grid {
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(7, 23, 34, 0.16);
}

.help-item,
.help-item:nth-child(odd),
.help-item:nth-child(even) {
    position: relative;
    min-height: 224px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.13);
    border-radius: 18px 18px 4px 18px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 36px rgba(7, 23, 34, 0.035);
    isolation: isolate;
    transition: color 380ms ease, border-color 380ms ease, box-shadow 380ms ease, transform 380ms cubic-bezier(.2, .8, .2, 1);
}

.help-item::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        #071722;
    background-size: 34px 34px;
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 380ms ease, transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.help-item::after {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 32px;
    height: 32px;
    content: "";
    border-right: 1px solid rgba(7, 23, 34, 0.24);
    border-bottom: 1px solid rgba(7, 23, 34, 0.24);
    transition: width 380ms ease, height 380ms ease, border-color 380ms ease;
}

.help-item:hover,
.help-item:focus-within {
    color: #fff;
    border-color: rgba(212, 223, 32, 0.58);
    box-shadow: 0 26px 56px rgba(7, 23, 34, 0.2);
    transform: translateY(-8px);
}

.help-item:hover::before,
.help-item:focus-within::before {
    opacity: 1;
    transform: translateY(0);
}

.help-item:hover::after,
.help-item:focus-within::after {
    width: 56px;
    height: 56px;
    border-color: var(--signal);
}

.help-item__icon {
    border-radius: 12px 12px 3px 12px;
    box-shadow: 6px 6px 0 rgba(7, 23, 34, 0.12);
    transition: color 320ms ease, background 320ms ease, transform 400ms cubic-bezier(.2, .8, .2, 1);
}

.help-item:hover .help-item__icon,
.help-item:focus-within .help-item__icon {
    color: #071722;
    background: var(--signal);
    transform: rotate(-6deg) scale(1.08);
}

.help-item:hover p,
.help-item:focus-within p {
    color: rgba(255, 255, 255, 0.7);
}

/* Construction appointment feature. */
.contact-intro-original {
    min-height: 680px;
    background: #031018;
}

.contact-intro-original::before {
    background-size: 48px 48px;
    opacity: 0.72;
}

.contact-intro-original::after {
    background: linear-gradient(90deg, rgba(3, 16, 24, 0.99) 0%, rgba(3, 16, 24, 0.92) 47%, rgba(3, 16, 24, 0.45) 72%, rgba(3, 16, 24, 0.1));
}

.contact-intro-original__media {
    left: 42%;
    width: 58%;
    filter: saturate(0.82) contrast(1.1);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.025);
}

.contact-intro-original__beam {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-intro-original__beam span {
    position: absolute;
    display: block;
}

.contact-intro-original__beam span:first-child {
    top: -20%;
    left: 56%;
    width: 1px;
    height: 140%;
    background: linear-gradient(transparent, var(--signal), transparent);
    transform: rotate(12deg);
}

.contact-intro-original__beam span:last-child {
    right: 5%;
    bottom: 10%;
    width: 110px;
    height: 110px;
    border-right: 1px solid rgba(212, 223, 32, 0.6);
    border-bottom: 1px solid rgba(212, 223, 32, 0.6);
}

.contact-intro-original__inner {
    min-height: 680px;
    padding-block: 80px;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 48px;
}

.contact-intro-original__inner > div {
    max-width: 900px;
    padding: clamp(34px, 4.2vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 6px solid var(--signal);
    border-radius: 6px 30px 6px 6px;
    background: rgba(3, 16, 24, 0.74);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
}

.contact-intro-original h2 {
    font-size: clamp(58px, 6.6vw, 96px);
}

.contact-intro-original .button {
    min-width: 240px;
    min-height: 72px;
    color: #071722;
    border-color: var(--signal);
    border-radius: 5px 20px 5px 5px;
    background: var(--signal);
}

.contact-intro-original .button:hover,
.contact-intro-original .button:focus-visible {
    color: #071722;
    background: #fff;
    transform: translateY(-6px);
}

/* Animated company instrumentation. */
.counter-original {
    min-height: 430px;
}

.counter-original::after {
    background:
        linear-gradient(90deg, rgba(3, 16, 24, 0.985), rgba(3, 16, 24, 0.86)),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.075) 79px 80px);
}

.counter-original__structure {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.counter-original__structure span {
    position: absolute;
    display: block;
}

.counter-original__structure span:nth-child(1) { top: 32px; right: 5%; width: 150px; height: 150px; border: 1px solid rgba(212, 223, 32, 0.24); border-radius: 50%; }
.counter-original__structure span:nth-child(2) { top: 107px; right: calc(5% - 22px); width: 194px; height: 1px; background: rgba(212, 223, 32, 0.28); }
.counter-original__structure span:nth-child(3) { right: calc(5% + 74px); bottom: 0; width: 1px; height: 205px; background: linear-gradient(var(--signal), transparent); }

.counter-original__grid {
    position: relative;
    z-index: 1;
    gap: 12px;
    padding-block: 34px;
}

.counter-original__item {
    position: relative;
    min-height: 360px;
    padding: 42px 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 5px 24px 5px 5px;
    background: rgba(5, 27, 38, 0.72);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
    isolation: isolate;
    transition: color 380ms ease, background 380ms ease, border-color 380ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.counter-original__item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.counter-original__item::before {
    position: absolute;
    inset: 12px;
    z-index: -1;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.counter-original__dial {
    position: absolute;
    top: 40px;
    left: 34px;
    width: 142px;
    height: 142px;
    border: 1px solid rgba(212, 223, 32, 0.22);
    border-radius: 50%;
    background: conic-gradient(from -35deg, var(--signal) 0 64%, transparent 64% 100%);
    -webkit-mask: radial-gradient(circle, transparent 59%, #000 60%);
    mask: radial-gradient(circle, transparent 59%, #000 60%);
    transform: rotate(-130deg) scale(0.62);
    opacity: 0;
}

.counter-original__item.is-visible .counter-original__dial {
    animation: counter-dial-in 1.25s 180ms cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes counter-dial-in {
    to { opacity: 1; transform: rotate(0) scale(1); }
}

.counter-original__item strong {
    position: relative;
    z-index: 2;
    font-size: clamp(66px, 6.2vw, 90px);
    font-weight: 650;
    text-shadow: 0 0 34px rgba(212, 223, 32, 0.18);
}

.counter-original__label {
    position: relative;
    z-index: 2;
    max-width: 170px;
    margin-top: 17px;
    line-height: 1.45;
}

.counter-original__pulse {
    position: absolute;
    right: 29px;
    bottom: 32px;
    width: 38px;
    height: 7px;
    border: 1px solid rgba(212, 223, 32, 0.52);
    background: linear-gradient(90deg, var(--signal) 0 28%, transparent 28% 42%, var(--signal) 42% 70%, transparent 70%);
}

.counter-original__item:hover,
.counter-original__item:focus-within {
    color: #071722;
    border-color: var(--signal);
    background: var(--signal);
    transform: translateY(-12px);
}

.counter-original__item:hover strong,
.counter-original__item:focus-within strong {
    color: #071722;
    text-shadow: none;
}

.counter-original__item:hover .counter-original__dial,
.counter-original__item:focus-within .counter-original__dial {
    border-color: rgba(7, 23, 34, 0.25);
    background: conic-gradient(from -35deg, #071722 0 64%, transparent 64% 100%);
}

.counter-original__item:hover .counter-original__pulse,
.counter-original__item:focus-within .counter-original__pulse {
    border-color: rgba(7, 23, 34, 0.5);
    background: linear-gradient(90deg, #071722 0 28%, transparent 28% 42%, #071722 42% 70%, transparent 70%);
}

/* Dimensional client orbit replaces the conventional marquee. */
.clients-carousel-section {
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(86px, 9vw, 138px);
    background:
        radial-gradient(circle at 50% 68%, rgba(212, 223, 32, 0.15), transparent 29%),
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #eef0e9;
    background-size: auto, 54px 54px, 54px 54px, auto;
}

.logo-orbit {
    --orbit-step: 245px;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    outline: none;
    touch-action: pan-y;
}

.logo-orbit__stage {
    position: relative;
    height: 390px;
    overflow: hidden;
    perspective: 1150px;
    transform-style: preserve-3d;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-orbit__axis {
    position: absolute;
    top: 50%;
    right: 7%;
    left: 7%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 23, 34, 0.28), transparent);
}

.logo-orbit__axis span {
    position: absolute;
    top: -7px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--signal);
    background: #eef0e9;
    transform: rotate(45deg);
}

.logo-orbit__axis span:first-child { left: 0; }
.logo-orbit__axis span:last-child { right: 0; }

.logo-orbit__item {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 260px;
    height: 188px;
    padding: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 23, 34, 0.14);
    border-radius: 22px 22px 6px 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 62px rgba(7, 23, 34, 0.15);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    transform:
        translate(-50%, -50%)
        translateX(calc(var(--orbit-offset) * var(--orbit-step)))
        translateZ(calc(var(--orbit-distance) * -115px))
        rotateY(calc(var(--orbit-offset) * -9deg))
        scale(calc(1 - var(--orbit-distance) * 0.09));
    transition: opacity 520ms ease, border-color 520ms ease, box-shadow 520ms ease, transform 720ms cubic-bezier(.2, .8, .2, 1), filter 520ms ease;
}

.logo-orbit__item::before {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    content: "";
    border-top: 1px solid rgba(7, 23, 34, 0.25);
    border-right: 1px solid rgba(7, 23, 34, 0.25);
}

.logo-orbit__item.is-visible {
    opacity: 0.48;
    pointer-events: auto;
}

.logo-orbit__item.is-active {
    z-index: 5;
    border-color: var(--signal);
    background: #fff;
    box-shadow: 0 34px 78px rgba(7, 23, 34, 0.24), 0 0 0 7px rgba(212, 223, 32, 0.15);
    opacity: 1;
    filter: none;
}

.logo-orbit__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(0.82);
    opacity: 0.62;
    transition: filter 420ms ease, opacity 420ms ease, transform 520ms cubic-bezier(.2, .8, .2, 1);
}

.logo-orbit__item.is-active img,
.logo-orbit__item:hover img {
    filter: grayscale(0) contrast(1);
    opacity: 1;
    transform: scale(1.045);
}

.logo-orbit__controls {
    display: grid;
    grid-template-columns: 56px minmax(150px, 420px) 56px;
    gap: 18px;
    align-items: center;
    justify-content: center;
    padding-inline: 18px;
}

.logo-orbit__controls button {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid #071722;
    border-radius: 16px 16px 4px 16px;
    background: #071722;
    cursor: pointer;
    transition: color 240ms ease, background 240ms ease, transform 240ms ease;
}

.logo-orbit__controls button:first-child .icon {
    transform: rotate(180deg);
}

.logo-orbit__controls button:hover,
.logo-orbit__controls button:focus-visible {
    color: #071722;
    border-color: var(--signal);
    background: var(--signal);
    transform: translateY(-4px);
}

.logo-orbit__meter {
    display: grid;
    grid-template-columns: repeat(16, minmax(3px, 1fr));
    gap: 5px;
}

.logo-orbit__meter span {
    height: 3px;
    background: rgba(7, 23, 34, 0.17);
    transition: background 260ms ease, transform 260ms ease;
}

.logo-orbit__meter span.is-active {
    background: var(--signal);
    transform: scaleY(2.4);
}

/* Project detail rebuilt as a project dossier. */
.detail-hero.project-detail-hero {
    min-height: clamp(680px, 78svh, 800px);
    align-items: stretch;
    background: #031018;
}

.project-detail-hero::before {
    z-index: -2;
    background: linear-gradient(90deg, #031018 0 39%, rgba(3, 16, 24, 0.96) 48%, rgba(3, 16, 24, 0.4) 72%, rgba(3, 16, 24, 0.18));
}

.project-detail-hero::after {
    z-index: -1;
    opacity: 0.5;
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000 0 54%, transparent 82%);
}

.project-detail-hero .detail-hero__media {
    inset: 0 0 0 auto;
    width: 68%;
    filter: saturate(0.78) contrast(1.08);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.project-detail-hero__structure {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.project-detail-hero__structure span {
    position: absolute;
    display: block;
}

.project-detail-hero__structure span:nth-child(1) { top: 0; left: 45%; width: 1px; height: 100%; background: linear-gradient(transparent, rgba(212, 223, 32, 0.6), transparent); transform: rotate(10deg); }
.project-detail-hero__structure span:nth-child(2) { right: 6%; bottom: 9%; width: 136px; height: 136px; border-right: 1px solid rgba(255, 255, 255, 0.36); border-bottom: 1px solid rgba(255, 255, 255, 0.36); }
.project-detail-hero__structure span:nth-child(3) { right: calc(6% + 130px); bottom: calc(9% - 6px); width: 12px; height: 12px; background: var(--signal); }
.project-detail-hero__structure span:nth-child(4) { right: 0; bottom: 0; width: 35%; height: 9px; background: var(--signal); }

.project-detail-hero .detail-hero__inner {
    min-height: clamp(680px, 78svh, 800px);
    padding-block: 90px 76px;
    display: flex;
    align-items: flex-end;
}

.project-detail-hero__title-frame {
    width: min(820px, 72%);
    padding: 34px 42px 38px;
    border-left: 5px solid var(--signal);
    border-radius: 0 24px 0 0;
    background: rgba(3, 16, 24, 0.62);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.project-detail-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(58px, 7.2vw, 110px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.project-overview-original {
    position: relative;
    overflow: clip;
    background:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #f0f2eb;
    background-size: 58px 58px;
}

.project-overview-original__structure,
.scope-original__structure,
.project-gallery-original__structure {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.project-overview-original__structure span,
.scope-original__structure span,
.project-gallery-original__structure span {
    position: absolute;
    display: block;
}

.project-overview-original__structure span:nth-child(1) { top: 0; right: 6%; width: 10px; height: 120px; background: var(--signal); }
.project-overview-original__structure span:nth-child(2) { top: 10%; right: -90px; width: 270px; height: 270px; border: 1px solid rgba(7, 23, 34, 0.12); transform: rotate(45deg); }
.project-overview-original__structure span:nth-child(3) { top: 0; bottom: 0; left: 5%; width: 1px; background: rgba(7, 23, 34, 0.1); }

.project-overview-original__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: clamp(54px, 7vw, 104px);
}

.project-overview-original__media {
    min-height: 720px;
}

.project-overview-original__media::before {
    top: -18px;
    right: 18px;
    bottom: 18px;
    left: -18px;
    border-color: rgba(7, 23, 34, 0.2);
    border-radius: 26px 26px 6px 26px;
}

.project-overview-original__media::after {
    border-radius: 24px 24px 5px 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0;
    transition: opacity 420ms ease;
}

.project-overview-original__media:hover::after {
    opacity: 1;
}

.project-overview-original__media img {
    border-radius: 24px 24px 5px 24px;
    clip-path: none;
    box-shadow: 0 32px 70px rgba(7, 23, 34, 0.2);
    transition: filter 520ms ease, transform 750ms cubic-bezier(.2, .8, .2, 1);
}

.project-overview-original__media:hover img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.025);
}

.project-overview-original__content h2 {
    font-size: clamp(54px, 6.2vw, 88px);
    line-height: .9;
    letter-spacing: -.06em;
}

.project-overview-original__facts {
    gap: 10px;
    border: 0;
}

.project-overview-original__facts > div {
    position: relative;
    min-height: 158px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.13);
    border-radius: 16px 16px 4px 16px;
    background: rgba(255, 255, 255, 0.72);
    transition: color 320ms ease, background 320ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.project-overview-original__facts > div:hover {
    color: #fff;
    background: #071722;
    transform: translateY(-6px);
}

.project-overview-original__facts > div:hover > span,
.project-overview-original__facts > div:hover p {
    color: var(--signal);
}

.scope-original {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #031018;
}

.scope-original > .shell {
    position: relative;
    z-index: 1;
}

.scope-original > .shell > h2 {
    color: #fff;
}

.scope-original__structure span:first-child { top: 0; right: 8%; width: 1px; height: 100%; background: rgba(212, 223, 32, 0.19); }
.scope-original__structure span:last-child { top: 88px; right: calc(8% - 70px); width: 140px; height: 140px; border: 1px solid rgba(212, 223, 32, 0.2); border-radius: 50%; }

.scope-original__field {
    background: transparent;
}

.project-gallery-original > .shell > h2 {
    position: relative;
    color: #071722;
}

.project-gallery-original > .shell > h2::after {
    display: block;
    width: 112px;
    height: 7px;
    margin-top: 24px;
    content: "";
    background: var(--signal);
}

.scope-original__grid {
    gap: 1px;
    padding-top: 12px;
}

.scope-original__item {
    position: relative;
    min-height: 290px;
    padding: 38px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 35, 48, 0.66);
    transition: color 350ms ease, background 350ms ease, transform 380ms cubic-bezier(.2, .8, .2, 1);
}

.scope-original__item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.scope-original__item::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    background: var(--signal);
    transform: scaleX(.14);
    transform-origin: left;
    transition: transform 420ms ease;
}

.scope-original__item:hover {
    z-index: 2;
    color: #071722;
    background: var(--signal);
    transform: translateY(-10px);
}

.scope-original__item:hover::after {
    background: #071722;
    transform: scaleX(1);
}

.scope-original__item:hover > span {
    color: #071722;
}

.project-gallery-original {
    position: relative;
    overflow: hidden;
    background: #f0f2eb;
}

.project-gallery-original__structure span:first-child { top: 0; left: 5%; width: 1px; height: 100%; background: rgba(7, 23, 34, 0.1); }
.project-gallery-original__structure span:last-child { top: 80px; right: 4%; width: 130px; height: 130px; border-top: 1px solid rgba(7, 23, 34, 0.18); border-right: 1px solid rgba(7, 23, 34, 0.18); }

.project-gallery-original > .shell {
    position: relative;
    z-index: 1;
}

.project-gallery-original__grid {
    gap: 18px;
}

.project-gallery-original__item {
    position: relative;
    border-radius: 20px 20px 5px 20px;
    clip-path: none;
    box-shadow: 0 22px 48px rgba(7, 23, 34, 0.11);
}

.project-gallery-original__item::after {
    position: absolute;
    inset: 12px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px 13px 3px 13px;
    pointer-events: none;
    transition: border-color 350ms ease, inset 350ms ease;
}

.project-gallery-original__item:hover::after {
    inset: 17px;
    border-color: rgba(212, 223, 32, 0.72);
}

/* Contact page: calmer, premium contact console. */
.contact-original {
    color: #fff;
    background:
        radial-gradient(circle at 86% 16%, rgba(212, 223, 32, 0.1), transparent 28%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        #031018;
    background-size: auto, 58px 58px, 58px 58px, auto;
}

.contact-original::before {
    width: 7px;
    background: var(--signal);
}

.contact-original__structure span:nth-child(1) {
    border-color: rgba(212, 223, 32, 0.24);
}

.contact-original__structure span:nth-child(2) {
    background: rgba(212, 223, 32, 0.14);
}

.contact-original__structure span:nth-child(3) {
    background: var(--signal);
}

.contact-original__heading {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 30px;
}

.contact-original__heading > span {
    width: 84px;
    height: 84px;
    border-color: rgba(212, 223, 32, 0.5);
    background: transparent;
    box-shadow: 12px 12px 0 var(--signal);
}

.contact-original__heading > span::before,
.contact-original__heading > span::after {
    background: var(--signal);
}

.contact-original__heading h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(52px, 6.4vw, 88px);
    line-height: .92;
}

.contact-original__primary {
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 16px;
}

.contact-original__card,
.contact-original__card:nth-child(1),
.contact-original__card:nth-child(2),
.contact-original__card:nth-child(3) {
    min-height: 0;
    padding: 36px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px 24px 6px 24px;
    background: rgba(9, 36, 49, 0.78);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-original__card:nth-child(1) {
    grid-column: span 7;
    grid-row: 1 / 3;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        rgba(9, 36, 49, 0.86);
    background-size: 42px 42px;
}

.contact-original__card:nth-child(2),
.contact-original__card:nth-child(3) {
    grid-column: span 5;
}

.contact-original__card:nth-child(3) {
    color: #071722;
    border-color: var(--signal);
    background: var(--signal);
}

.contact-original__card:hover,
.contact-original__card:focus-within {
    border-color: var(--signal);
    box-shadow: 0 34px 72px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
}

.contact-original__icon,
.contact-original__card:nth-child(3) .contact-original__icon {
    width: 64px;
    height: 64px;
    color: #071722;
    border: 0;
    border-radius: 16px 16px 4px 16px;
    background: var(--signal);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);
}

.contact-original__card:nth-child(3) .contact-original__icon {
    color: #fff;
    background: #071722;
}

.contact-original__card:hover .contact-original__icon,
.contact-original__card:focus-within .contact-original__icon {
    color: #071722;
    background: #fff;
}

.contact-original__card h3 {
    color: inherit;
}

.contact-original__card p {
    color: inherit;
    font-size: clamp(20px, 2.1vw, 30px);
}

.contact-original__card:nth-child(3) p {
    font-size: clamp(18px, 1.65vw, 24px);
}

.contact-original__departments {
    gap: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact-original__departments::before {
    display: none;
}

.contact-original__departments article {
    min-height: 270px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px 20px 5px 20px;
    background: rgba(255, 255, 255, 0.055);
}

.contact-original__departments article:hover,
.contact-original__departments article:focus-within {
    border-color: rgba(212, 223, 32, 0.72);
    background: rgba(9, 36, 49, 0.98);
}

.contact-original__departments h3 {
    margin: 34px 0 24px;
    font-size: clamp(22px, 2vw, 29px);
}

@media (max-width: 1100px) {
    .counter-original__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .counter-original__item {
        min-height: 320px;
    }

    .contact-original__card:nth-child(1) {
        grid-column: span 7;
        grid-row: 1 / 3;
    }

    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        grid-column: span 5;
    }
}

@media (max-width: 900px) {
    .site-v2 .nav-has-children > a {
        justify-content: space-between;
    }

    .site-v2 .nav-dropdown {
        width: auto;
        margin: 8px 18px 16px;
        padding: 8px 8px 8px 16px !important;
        border: 0;
        border-left: 3px solid var(--signal);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.045);
        transform: none;
    }

    .site-v2 .nav-dropdown::before,
    .site-v2 .nav-dropdown::after {
        display: none;
    }

    .site-v2 .nav-dropdown li a {
        min-height: 46px;
        padding: 10px 38px 10px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        font-size: 13px;
    }

    .about-original__visual {
        position: relative;
        top: auto;
    }

    .about-original__stat {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 30px);
        min-height: 132px;
        margin: -54px auto 0;
        padding: 26px 28px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        border-radius: 22px 22px 6px 22px;
    }

    .about-original__stat-orbit {
        top: auto;
        right: 31px;
        bottom: 29px;
        left: auto;
    }

    .about-original__stat span:not(.about-original__stat-orbit) {
        max-width: 110px;
        margin-top: 0;
    }

    .contact-intro-original__inner {
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
    }

    .contact-intro-original .button {
        justify-self: start;
    }

    .logo-orbit {
        --orbit-step: 190px;
    }

    .project-detail-hero .detail-hero__media {
        left: 0;
        width: 100%;
        clip-path: none;
    }

    .project-detail-hero::before {
        background: linear-gradient(90deg, rgba(3, 16, 24, .97), rgba(3, 16, 24, .54));
    }

    .project-detail-hero__title-frame {
        width: 88%;
    }

    .project-overview-original__grid {
        grid-template-columns: 1fr;
    }

    .contact-original__primary {
        grid-template-rows: auto;
    }

    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        grid-column: span 12;
        grid-row: auto;
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .engineering-hero .button--accent {
        width: 100%;
    }

    .floating-contact {
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 17px 17px 5px 17px;
    }

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

    .help-item,
    .help-item:nth-child(odd),
    .help-item:nth-child(even) {
        min-height: 190px;
    }

    .contact-intro-original,
    .contact-intro-original__inner {
        min-height: 720px;
    }

    .contact-intro-original__media {
        left: 0;
        width: 100%;
        opacity: .58;
        clip-path: none;
    }

    .contact-intro-original__inner {
        padding-block: 62px;
        gap: 26px;
    }

    .contact-intro-original__inner > div {
        padding: 28px 24px 32px;
        border-left-width: 4px;
        border-radius: 4px 22px 4px 4px;
    }

    .contact-intro-original h2 {
        font-size: clamp(46px, 13.5vw, 58px);
    }

    .contact-intro-original .button {
        width: 100%;
    }

    .counter-original__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-block: 18px;
    }

    .counter-original__item {
        min-height: 255px;
        padding: 27px 20px;
        border-radius: 4px 17px 4px 4px;
    }

    .counter-original__dial {
        top: 27px;
        left: 20px;
        width: 98px;
        height: 98px;
    }

    .counter-original__item strong {
        font-size: clamp(52px, 17vw, 68px);
    }

    .counter-original__label {
        max-width: 115px;
        font-size: 9px;
    }

    .counter-original__pulse {
        right: 18px;
        bottom: 23px;
        width: 26px;
    }

    .clients-carousel-section .section-heading {
        margin-bottom: 26px;
    }

    .logo-orbit {
        --orbit-step: 148px;
    }

    .logo-orbit__stage {
        height: 300px;
        mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }

    .logo-orbit__item {
        width: 208px;
        height: 148px;
        padding: 25px;
        border-radius: 17px 17px 5px 17px;
    }

    .logo-orbit__controls {
        grid-template-columns: 48px minmax(110px, 1fr) 48px;
        gap: 12px;
    }

    .logo-orbit__controls button {
        width: 48px;
        height: 48px;
        border-radius: 13px 13px 4px 13px;
    }

    .logo-orbit__meter {
        gap: 3px;
    }

    .detail-hero.project-detail-hero,
    .project-detail-hero .detail-hero__inner {
        min-height: 590px;
    }

    .project-detail-hero .detail-hero__inner {
        padding-block: 76px 54px;
    }

    .project-detail-hero__title-frame {
        width: 100%;
        padding: 25px 24px 28px;
        border-left-width: 4px;
        border-radius: 0 18px 0 0;
    }

    .project-detail-hero h1 {
        font-size: clamp(45px, 14vw, 66px);
    }

    .project-overview-original__media {
        min-height: 420px;
    }

    .project-overview-original__facts {
        grid-template-columns: 1fr;
    }

    .scope-original__item,
    .scope-original__item:nth-child(odd) {
        min-height: 220px;
    }

    .contact-original__heading {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 20px;
    }

    .contact-original__heading > span {
        width: 58px;
        height: 58px;
        box-shadow: 8px 8px 0 var(--signal);
    }

    .contact-original__heading h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .contact-original__card,
    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        min-height: 260px;
        padding: 28px;
        border-radius: 19px 19px 5px 19px;
    }

    .contact-original__departments article {
        min-height: 235px;
        border-radius: 17px 17px 5px 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .counter-original__dial {
        opacity: 1;
        transform: none;
    }

    .logo-orbit__item {
        transition: none;
    }
}


/* ========================================================================== 
   Karim ETC engineering edition — original content, elevated visual system
   ========================================================================== */

.site-v2 {
    --blueprint: #0b202d;
    --blueprint-deep: #04121a;
    --steel: #78909c;
    --signal: #d4df20;
    --signal-gold: #f1ca00;
    background:
        linear-gradient(rgba(7, 23, 34, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 40px 40px;
}

.site-v2 .topbar__inner {
    justify-content: flex-end;
}

.site-v2 .site-header {
    background: rgba(4, 18, 26, 0.96);
    backdrop-filter: blur(18px);
}

.site-v2 .site-header__inner {
    min-height: 82px;
}

.site-v2 .primary-nav > ul {
    gap: 34px;
}

.site-v2 .nav-has-children {
    position: relative;
}

.site-v2 .nav-dropdown {
    position: absolute;
    top: calc(100% - 12px);
    left: 50%;
    width: 285px;
    padding: 10px !important;
    display: grid !important;
    gap: 2px !important;
    color: var(--white);
    background: rgba(7, 23, 34, 0.985);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.site-v2 .nav-dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

.site-v2 .nav-dropdown li a {
    padding: 12px 14px !important;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    font-size: 13px;
}

.site-v2 .nav-dropdown li a::after {
    display: none;
}

.site-v2 .nav-dropdown li a:hover,
.site-v2 .nav-dropdown li a:focus-visible {
    color: var(--ink);
    background: var(--signal);
}

.site-v2 .nav-has-children:hover .nav-dropdown,
.site-v2 .nav-has-children:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.engineering-hero {
    min-height: min(860px, calc(100svh - 120px));
    background: var(--blueprint-deep);
}

.engineering-hero .home-hero__media {
    left: 39%;
    width: 61%;
    filter: saturate(0.75) contrast(1.05);
}

.engineering-hero::before {
    background:
        linear-gradient(90deg, #04121a 0%, #04121a 36%, rgba(4, 18, 26, 0.94) 50%, rgba(4, 18, 26, 0.32) 78%, rgba(4, 18, 26, 0.44) 100%),
        linear-gradient(0deg, rgba(4, 18, 26, 0.82), transparent 58%);
}

.engineering-hero::after {
    opacity: 0.32;
    background-size: 48px 48px;
    mask-image: none;
}

.home-hero__inner--original {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 820px) 1fr;
    gap: 80px;
    padding-block: clamp(80px, 9vw, 130px);
}

.home-hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--signal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-hero__subtitle::before {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
}

.engineering-hero h1 {
    max-width: 800px;
    margin-bottom: 42px;
    font-size: clamp(56px, 6.5vw, 96px);
    font-weight: 500;
    letter-spacing: -0.065em;
}

.engineering-hero h1 span {
    position: relative;
    display: inline-block;
    color: var(--signal);
}

.engineering-hero h1 span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 0.08em;
    left: -5px;
    height: 0.12em;
    background: var(--signal);
    opacity: 0.25;
}

.engineering-hero__framework {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.framework-line {
    position: absolute;
    display: block;
    background: rgba(212, 223, 32, 0.52);
    box-shadow: 0 0 14px rgba(212, 223, 32, 0.2);
}

.framework-line--one {
    top: 19%;
    left: 51%;
    width: 1px;
    height: 64%;
}

.framework-line--two {
    top: 63%;
    left: 44%;
    width: 49%;
    height: 1px;
}

.framework-node {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 1px solid var(--signal);
    transform: rotate(45deg);
}

.framework-node--one {
    top: calc(19% - 6px);
    left: calc(51% - 6px);
}

.framework-node--two {
    top: calc(63% - 6px);
    left: calc(93% - 6px);
}

.framework-dimension {
    position: absolute;
    top: calc(63% - 25px);
    right: 7%;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.engineering-hero__stamp {
    align-self: end;
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(2, 55px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.engineering-hero__stamp span {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.engineering-hero__stamp span:nth-child(even) {
    border-right: 0;
}

.engineering-hero__stamp span:nth-child(n + 3) {
    border-bottom: 0;
}

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

.about-original::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0 48%, rgba(7, 23, 34, 0.04) 48% 48.4%, transparent 48.4%);
    background-size: 90px 90px;
    pointer-events: none;
}

.about-original__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.about-original__visual {
    position: sticky;
    top: 120px;
}

.technical-frame {
    position: relative;
    padding: 18px 18px 0 0;
}

.technical-frame::before {
    content: "";
    position: absolute;
    inset: 0 0 24px 24px;
    z-index: -1;
    background: var(--blueprint);
}

.technical-frame img {
    width: 100%;
    min-height: 580px;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.05);
}

.technical-frame__corner {
    position: absolute;
    width: 34px;
    height: 34px;
    border-color: var(--signal);
    border-style: solid;
}

.technical-frame__corner--one {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.technical-frame__corner--two {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.about-original__stat {
    position: absolute;
    right: -35px;
    bottom: 35px;
    width: 190px;
    min-height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--ink);
    background: var(--signal);
    clip-path: polygon(0 0, 83% 0, 100% 18%, 100% 100%, 0 100%);
}

.about-original__stat::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 13px;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(7, 23, 34, 0.45);
}

.about-original__stat strong {
    font-size: 45px;
    letter-spacing: -0.06em;
    line-height: 1;
}

.about-original__stat span {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.about-original__content h2 {
    margin-bottom: 28px;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
}

.about-original__content > p {
    color: var(--ink-muted);
    font-size: 16px;
}

.about-original__content > h3 {
    margin: 44px 0 20px;
    font-size: 24px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.help-item {
    min-height: 210px;
    padding: 25px 24px 24px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    border-bottom: 1px solid var(--line);
}

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

.help-item:nth-child(even) {
    padding-left: 24px;
}

.help-item__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--signal);
    border-radius: 50%;
}

.help-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.help-item p {
    color: var(--ink-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.principles-section {
    position: relative;
    overflow: hidden;
    padding-block: 0;
}

.principles-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 47px, rgba(255, 255, 255, 0.045) 47px 48px),
        repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, 0.045) 47px 48px);
    pointer-events: none;
}

.principle-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle {
    min-height: 470px;
    padding: 52px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.principle:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.principle:hover {
    color: var(--ink);
    background: var(--signal);
    transform: translateY(-10px);
}

.principle__number {
    display: block;
    margin-bottom: 115px;
    color: var(--signal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.principle:hover .principle__number,
.principle:hover p {
    color: var(--ink);
}

.principle h3 {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 500;
}

.principle p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    line-height: 1.65;
    transition: color 0.3s ease;
}

.contact-intro-original {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
    isolation: isolate;
}

.contact-intro-original::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 18, 26, 0.96), rgba(4, 18, 26, 0.65) 65%, rgba(4, 18, 26, 0.35));
}

.contact-intro-original__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-intro-original__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-intro-original h2 {
    margin-bottom: 0;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 500;
}

.capability-index-section {
    background: var(--paper-bright);
}

.capability-index-heading {
    margin-bottom: 48px;
}

.capability-index-heading h2 {
    font-size: clamp(52px, 7vw, 96px);
}

.capability-index {
    counter-reset: capability;
    border-top: 1px solid rgba(7, 23, 34, 0.2);
}

.capability-row {
    position: relative;
    min-height: 190px;
    padding: 28px 26px;
    display: grid;
    grid-template-columns: 64px minmax(220px, 0.75fr) minmax(330px, 1.25fr) 120px;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(7, 23, 34, 0.2);
    isolation: isolate;
    transition: min-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease, padding 0.4s ease;
}

.capability-row::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(4, 18, 26, 0.98) 0%, rgba(4, 18, 26, 0.94) 46%, rgba(4, 18, 26, 0.44) 100%),
        var(--capability-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.35s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-row::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 38px 38px;
    transition: opacity 0.3s ease;
}

.capability-row:hover,
.capability-row:focus-visible {
    min-height: 250px;
    padding-block: 46px;
    color: var(--white);
}

.capability-row:hover::before,
.capability-row:focus-visible::before,
.capability-row:hover::after,
.capability-row:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}

.capability-row__number {
    align-self: start;
    padding-top: 8px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.capability-row h3 {
    margin-bottom: 0;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
}

.capability-row p {
    margin-bottom: 0;
    color: var(--ink-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

.capability-row:hover p,
.capability-row:focus-visible p {
    color: rgba(255, 255, 255, 0.73);
}

.capability-row__link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
}

.capability-row__link .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.capability-row:hover .capability-row__link,
.capability-row:focus-visible .capability-row__link,
.capability-row:hover .capability-row__number,
.capability-row:focus-visible .capability-row__number {
    color: var(--signal);
}

.capability-row:hover .capability-row__link .icon,
.capability-row:focus-visible .capability-row__link .icon {
    transform: translateX(6px);
}

.capability-row__scan {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 2px;
    background: var(--signal);
    box-shadow: 0 0 24px rgba(212, 223, 32, 0.7);
    opacity: 0;
}

.capability-row:hover .capability-row__scan,
.capability-row:focus-visible .capability-row__scan {
    opacity: 1;
    animation: capability-scan 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes capability-scan {
    from { left: 0; }
    to { left: 100%; }
}

.counter-original {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
    isolation: isolate;
}

.counter-original::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 18, 26, 0.96), rgba(4, 18, 26, 0.8)),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.08) 79px 80px);
}

.counter-original__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter-original__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.counter-original__item {
    min-height: 300px;
    padding: 65px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.counter-original__item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.counter-original__item strong {
    display: block;
    color: var(--signal);
    font-size: clamp(60px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.counter-original__item span {
    margin-top: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clients-carousel-section {
    overflow: hidden;
    background: var(--paper);
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 12px;
    height: 12px;
    border: 1px solid var(--signal);
    transform: translateY(-50%) rotate(45deg);
}

.logo-marquee::before { left: 20px; }
.logo-marquee::after { right: 20px; }

.logo-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: logo-marquee 36s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
    animation-play-state: paused;
}

.logo-marquee__group {
    display: flex;
    gap: 18px;
    padding-right: 18px;
}

.logo-marquee__item {
    width: 190px;
    height: 138px;
    flex: 0 0 190px;
    padding: 25px;
    display: grid;
    place-items: center;
    background: var(--paper-bright);
    border: 1px solid rgba(7, 23, 34, 0.12);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.logo-marquee__item:hover {
    background: var(--white);
    transform: translateY(-6px);
}

.logo-marquee__item img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    filter: grayscale(1) contrast(0.8);
    opacity: 0.68;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.logo-marquee__item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes logo-marquee {
    to { transform: translateX(-50%); }
}

.quote-original {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
    isolation: isolate;
}

.quote-original::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 18, 26, 0.98), rgba(4, 18, 26, 0.83));
}

.quote-original__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-original__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(55px, 9vw, 130px);
    align-items: start;
}

.quote-original__heading {
    position: sticky;
    top: 125px;
}

.quote-original h2 {
    margin-bottom: 0;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 500;
}

.faq-list--dark {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.faq-list--dark .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-list--dark .faq-item summary::before,
.faq-list--dark .faq-item summary::after {
    background: var(--signal);
}

.faq-list--dark .faq-item__answer {
    color: rgba(255, 255, 255, 0.62);
}

.site-v2 .footer-cta {
    position: relative;
    overflow: hidden;
}

.site-v2 .footer-cta::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -100px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(212, 223, 32, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(212, 223, 32, 0.025), 0 0 0 140px rgba(212, 223, 32, 0.02);
    pointer-events: none;
}

.site-v2 .site-footer__bottom a {
    color: var(--signal);
}

@media (max-width: 1100px) {
    .capability-row {
        grid-template-columns: 54px minmax(200px, 0.8fr) minmax(260px, 1.2fr) 100px;
        gap: 20px;
    }

    .principle {
        padding-inline: 24px;
    }
}

@media (max-width: 900px) {
    .site-v2 .primary-nav > ul {
        gap: 0;
    }

    .site-v2 .nav-dropdown {
        position: static;
        width: 100%;
        padding: 4px 0 12px 20px !important;
        gap: 0 !important;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-v2 .nav-dropdown li a {
        padding: 9px 0 !important;
        color: rgba(255, 255, 255, 0.58);
        border-bottom: 0;
        font-size: 13px;
    }

    .engineering-hero .home-hero__media {
        left: 0;
        width: 100%;
    }

    .engineering-hero::before {
        background: linear-gradient(90deg, rgba(4, 18, 26, 0.96), rgba(4, 18, 26, 0.54));
    }

    .home-hero__inner--original {
        grid-template-columns: 1fr;
    }

    .engineering-hero__stamp {
        display: none;
    }

    .about-original__grid,
    .quote-original__grid {
        grid-template-columns: 1fr;
    }

    .about-original__visual,
    .quote-original__heading {
        position: static;
    }

    .technical-frame img {
        min-height: 520px;
    }

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

    .principle:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.13);
    }

    .principle:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .contact-intro-original__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .capability-row {
        grid-template-columns: 48px 1fr 78px;
        min-height: 210px;
    }

    .capability-row p {
        grid-column: 2 / -1;
    }

    .capability-row__link {
        grid-column: 3;
        grid-row: 1;
    }

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

    .counter-original__item:nth-child(2) {
        border-right: 0;
    }

    .counter-original__item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
}

@media (max-width: 640px) {
    .site-v2 .topbar__inner {
        justify-content: space-between;
    }

    .engineering-hero {
        min-height: 730px;
    }

    .home-hero__inner--original {
        min-height: 730px;
        align-items: center;
        padding-block: 70px;
    }

    .engineering-hero h1 {
        font-size: clamp(48px, 14.5vw, 64px);
    }

    .framework-line--one {
        left: 83%;
    }

    .framework-line--two {
        left: 0;
        width: 90%;
    }

    .framework-node--one {
        left: calc(83% - 6px);
    }

    .framework-node--two {
        left: calc(90% - 6px);
    }

    .framework-dimension {
        display: none;
    }

    .about-original__grid {
        gap: 64px;
    }

    .technical-frame img {
        min-height: 410px;
    }

    .about-original__stat {
        right: -2px;
        bottom: 18px;
        width: 145px;
        min-height: 130px;
        padding: 20px;
    }

    .about-original__stat strong {
        font-size: 35px;
    }

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

    .help-item,
    .help-item:nth-child(even) {
        min-height: 0;
        padding: 23px 0;
        border-right: 0;
    }

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

    .principle,
    .principle:first-child,
    .principle:nth-child(2) {
        min-height: 0;
        padding: 42px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.13);
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .principle__number {
        margin-bottom: 50px;
    }

    .contact-intro-original {
        min-height: 530px;
    }

    .contact-intro-original__inner {
        gap: 36px;
    }

    .contact-intro-original__inner .button {
        width: 100%;
    }

    .capability-row {
        min-height: 260px;
        padding: 27px 18px;
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .capability-row:hover,
    .capability-row:focus-visible {
        min-height: 290px;
        padding-block: 34px;
    }

    .capability-row h3 {
        font-size: 30px;
    }

    .capability-row p {
        grid-column: 2;
        font-size: 13px;
    }

    .capability-row__link {
        grid-column: 2;
        grid-row: auto;
        justify-content: flex-start;
    }

    .counter-original__grid {
        grid-template-columns: 1fr;
    }

    .counter-original__item,
    .counter-original__item:first-child,
    .counter-original__item:nth-child(2) {
        min-height: 210px;
        padding: 42px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .logo-marquee__item {
        width: 145px;
        height: 116px;
        flex-basis: 145px;
    }

    .logo-marquee__item img {
        width: 76px;
        height: 76px;
    }

    .quote-original__grid {
        gap: 45px;
    }
}
/* ================================================================
   Inner-page engineering system
   ================================================================ */

.engineering-hero__stamp span {
    position: relative;
}

.engineering-hero__stamp span::before,
.engineering-hero__stamp span::after {
    content: "";
    position: absolute;
    background: rgba(212, 223, 32, 0.7);
}

.engineering-hero__stamp span::before {
    width: 18px;
    height: 1px;
}

.engineering-hero__stamp span::after {
    width: 1px;
    height: 18px;
}

.framework-dimension {
    width: 72px;
    height: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.service-console-hero,
.project-archive-hero,
.contact-original-hero {
    position: relative;
    min-height: 470px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
    isolation: isolate;
}

.service-console-hero::before,
.project-archive-hero::before,
.contact-original-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 18, 26, 0.98) 0%, rgba(4, 18, 26, 0.89) 48%, rgba(4, 18, 26, 0.42) 100%),
        linear-gradient(0deg, rgba(4, 18, 26, 0.82), transparent 64%);
}

.service-console-hero::after,
.project-archive-hero::after,
.contact-original-hero::after {
    content: "";
    position: absolute;
    right: clamp(24px, 7vw, 112px);
    bottom: 0;
    z-index: 0;
    width: clamp(150px, 22vw, 360px);
    height: 72%;
    border: 1px solid rgba(212, 223, 32, 0.38);
    border-bottom: 0;
    transform: skewX(-11deg);
    transform-origin: bottom;
    pointer-events: none;
}

.service-console-hero__media,
.project-archive-hero__media,
.contact-original-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-console-hero__media {
    left: 34%;
    width: 66%;
    background: url("../img/slideshow/engineering1.jpg") center / cover no-repeat;
    filter: saturate(0.65) contrast(1.08);
}

.service-console-hero__lines,
.project-archive-hero__grid,
.contact-original-hero__grid,
.detail-hero__blueprint {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.service-console-hero__content,
.project-archive-hero__content,
.contact-original-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 105px 72px;
}

.service-console-hero h1,
.project-archive-hero h1,
.contact-original-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 500;
    letter-spacing: -0.075em;
}

.service-console-hero p {
    max-width: 720px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.55;
}

.service-console-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(7, 23, 34, 0.045) 50%, transparent calc(50% + 1px)),
        var(--paper-bright);
}

.service-console-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.service-console {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: clamp(42px, 6vw, 90px);
    align-items: start;
}

.service-console__rail {
    border-top: 1px solid rgba(7, 23, 34, 0.24);
}

.service-console__tab {
    position: relative;
    width: 100%;
    min-height: 164px;
    padding: 25px 26px;
    display: grid;
    grid-template-columns: 34px 54px 1fr 22px;
    gap: 20px;
    align-items: start;
    overflow: hidden;
    color: var(--ink);
    text-align: left;
    background: rgba(255, 255, 255, 0.42);
    border: 0;
    border-bottom: 1px solid rgba(7, 23, 34, 0.24);
    cursor: pointer;
    isolation: isolate;
    transition: color 0.3s ease, min-height 0.35s ease, padding 0.35s ease;
}

.service-console__tab::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 18, 26, 0.99), rgba(7, 38, 53, 0.96)),
        repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, 0.07) 47px 48px);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-console__tab::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--signal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.service-console__tab:hover,
.service-console__tab:focus-visible,
.service-console__tab.is-active {
    min-height: 182px;
    padding-block: 34px;
    color: var(--white);
    outline: none;
}

.service-console__tab:hover::before,
.service-console__tab:focus-visible::before,
.service-console__tab.is-active::before {
    transform: translateX(0);
}

.service-console__tab:hover::after,
.service-console__tab:focus-visible::after,
.service-console__tab.is-active::after {
    transform: scaleY(1);
}

.service-console__number {
    padding-top: 4px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-console__tab.is-active .service-console__number,
.service-console__tab:hover .service-console__number,
.service-console__tab:focus-visible .service-console__number {
    color: var(--signal);
}

.service-console__icon {
    width: 52px;
    height: 52px;
    padding: 10px;
    display: grid;
    place-items: center;
    background: rgba(201, 214, 44, 0.12);
    border: 1px solid rgba(141, 156, 30, 0.42);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.service-console__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.42);
    transition: filter 0.3s ease;
}

.service-console__tab.is-active .service-console__icon img,
.service-console__tab:hover .service-console__icon img,
.service-console__tab:focus-visible .service-console__icon img {
    filter: grayscale(1) brightness(0) invert(1);
}

.service-console__tab-copy {
    display: block;
}

.service-console__tab-copy strong {
    display: block;
    margin-bottom: 11px;
    font-size: clamp(23px, 2.1vw, 31px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.service-console__tab-copy > span {
    display: block;
    max-width: 580px;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.service-console__tab.is-active .service-console__tab-copy > span,
.service-console__tab:hover .service-console__tab-copy > span,
.service-console__tab:focus-visible .service-console__tab-copy > span {
    color: rgba(255, 255, 255, 0.66);
}

.service-console__crosshair {
    position: relative;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border: 1px solid rgba(7, 23, 34, 0.35);
    border-radius: 50%;
}

.service-console__crosshair::before,
.service-console__crosshair::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.service-console__crosshair::before { width: 24px; height: 1px; }
.service-console__crosshair::after { width: 1px; height: 24px; }

.service-console__tab.is-active .service-console__crosshair,
.service-console__tab:hover .service-console__crosshair,
.service-console__tab:focus-visible .service-console__crosshair {
    color: var(--signal);
    border-color: var(--signal);
}

.service-console__stage {
    position: sticky;
    top: 130px;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background: #061924;
    box-shadow: 0 36px 90px rgba(4, 18, 26, 0.24);
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.service-console__stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.55;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}

.service-console__stage::after {
    content: "";
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 18px;
    width: 13px;
    height: 13px;
    border: 1px solid var(--signal);
    transform: rotate(45deg);
}

.service-console__axis {
    position: absolute;
    z-index: 4;
    display: block;
    background: rgba(212, 223, 32, 0.55);
    pointer-events: none;
}

.service-console__axis--x { top: 29%; left: 5%; width: 90%; height: 1px; }
.service-console__axis--y { top: 5%; left: 72%; width: 1px; height: 90%; }

.service-console__panel {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.42s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-console__panel.is-active {
    opacity: 1;
    transform: scale(1);
}

.service-console__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.08);
}

.service-console__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 18, 26, 0.92) 0%, rgba(4, 18, 26, 0.08) 62%);
}

.service-console__panel-data {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 42px;
    display: flex;
    align-items: end;
    gap: 24px;
}

.service-console__panel-data > span {
    margin-bottom: 8px;
    color: var(--signal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service-console__panel-data h2 {
    margin: 0;
    font-size: clamp(35px, 4vw, 62px);
    font-weight: 500;
}

.service-console__panel-data a:hover,
.service-console__panel-data a:focus-visible {
    color: var(--signal);
}

/* Service details */

.detail-hero.service-detail-hero,
.detail-hero.project-detail-hero {
    min-height: 610px;
}

.detail-hero__blueprint {
    z-index: 1;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.service-detail-hero .detail-hero__inner,
.project-detail-hero .detail-hero__inner {
    z-index: 2;
}

.service-detail-overview {
    overflow: hidden;
    background: var(--paper-bright);
}

.service-detail-overview__grid,
.project-overview-original__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(52px, 8vw, 116px);
    align-items: center;
}

.service-detail-overview__media,
.project-overview-original__media {
    position: relative;
    min-height: 660px;
}

.service-detail-overview__media::before,
.project-overview-original__media::before {
    content: "";
    position: absolute;
    top: -24px;
    right: 24px;
    bottom: 24px;
    left: -24px;
    border: 1px solid rgba(141, 156, 30, 0.45);
}

.service-detail-overview__media::after,
.project-overview-original__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.35) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.35) 50%, transparent 50.2%);
}

.service-detail-overview__media img,
.project-overview-original__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.service-detail-overview__marker,
.project-overview-original__media > span {
    position: absolute;
    right: -7px;
    bottom: -7px;
    z-index: 2;
    width: 15px;
    height: 15px;
    border: 2px solid var(--signal);
    transform: rotate(45deg);
}

.service-detail-overview__content h2,
.project-overview-original__content h2 {
    margin-bottom: 26px;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 500;
}

.service-detail-overview__summary,
.project-overview-original__content > p {
    max-width: 720px;
    color: var(--ink-muted);
    font-size: 18px;
    line-height: 1.75;
}

.service-detail-overview__content > h3 {
    margin: 44px 0 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(7, 23, 34, 0.18);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-feature-list {
    border-top: 1px solid rgba(7, 23, 34, 0.14);
}

.service-feature-list__item {
    min-height: 74px;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid rgba(7, 23, 34, 0.14);
}

.service-feature-list__item span {
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-feature-list__item strong {
    font-size: 16px;
    font-weight: 500;
}

.service-description-original {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
}

.service-description-original::before,
.scope-original__field::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
}

.service-description-original__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(50px, 9vw, 140px);
}

.service-description-original h2 {
    margin: 0;
    color: var(--signal);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 500;
}

.service-description-original__copy {
    max-width: 790px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.9;
}

.service-faq-original {
    background: var(--paper);
}

.service-faq-original h2,
.project-gallery-original > .shell > h2,
.scope-original > .shell > h2 {
    margin-bottom: clamp(44px, 6vw, 78px);
    color: var(--accent-dark);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 500;
}

.service-faq-original .faq-list {
    max-width: 960px;
    margin-left: auto;
}

/* Project archive */

.project-archive-hero__media {
    object-position: center 48%;
    filter: saturate(0.72) contrast(1.08);
}

.project-archive {
    padding-block: clamp(68px, 6vw, 88px);
    background: var(--paper-bright);
}

.project-filter {
    margin-bottom: clamp(38px, 4vw, 48px);
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(7, 23, 34, 0.2);
    border-bottom: 1px solid rgba(7, 23, 34, 0.2);
}

.project-filter__button {
    position: relative;
    min-height: 58px;
    padding: 12px 24px;
    color: var(--ink-muted);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(7, 23, 34, 0.16);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.project-filter__button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.project-filter__button:hover,
.project-filter__button:focus-visible,
.project-filter__button.is-active {
    color: var(--white);
    background: var(--blueprint-deep);
    outline: none;
}

.project-filter__button.is-active::after {
    transform: scaleX(1);
}

.project-archive__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 66px) 28px;
}

.project-archive-card {
    grid-column: span 6;
    min-width: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-archive-card:nth-child(5n + 1),
.project-archive-card:nth-child(5n + 4) {
    grid-column: span 7;
}

.project-archive-card:nth-child(5n + 2),
.project-archive-card:nth-child(5n + 5) {
    grid-column: span 5;
}

.project-archive-card.is-filtered-out {
    display: none;
}

.project-archive-card__media {
    position: relative;
    height: clamp(300px, 38vw, 490px);
    display: block;
    overflow: hidden;
    background: var(--blueprint-deep);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.project-archive-card:nth-child(even) .project-archive-card__media {
    height: clamp(340px, 43vw, 550px);
}

.project-archive-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 18, 26, 0.4), transparent 54%);
    transition: background-color 0.35s ease;
}

.project-archive-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.04);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.project-archive-card:hover .project-archive-card__media img,
.project-archive-card:focus-within .project-archive-card__media img {
    transform: scale(1.055);
    filter: saturate(1) contrast(1.04);
}

.project-archive-card__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 44px 44px;
    transition: opacity 0.3s ease;
}

.project-archive-card:hover .project-archive-card__grid,
.project-archive-card:focus-within .project-archive-card__grid {
    opacity: 0.5;
}

.project-archive-card__index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(4, 18, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.project-archive-card__content {
    position: relative;
    padding: 24px 24px 0 0;
    border-top: 3px solid var(--blueprint-deep);
}

.project-archive-card__content::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 25%;
    height: 3px;
    background: var(--signal);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-archive-card:hover .project-archive-card__content::before,
.project-archive-card:focus-within .project-archive-card__content::before {
    width: 100%;
}

.project-archive-card__content > span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-archive-card__content h2 {
    margin-bottom: 18px;
    font-size: clamp(27px, 3vw, 43px);
    font-weight: 500;
}

.project-archive-card__content h2 a:hover,
.project-archive-card__content h2 a:focus-visible {
    color: var(--accent-dark);
}

.project-archive-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
}

.project-archive-card__link .icon {
    width: 19px;
    height: 19px;
    transition: transform 0.25s ease;
}

.project-archive-card__link:hover .icon,
.project-archive-card__link:focus-visible .icon {
    transform: translateX(6px);
}

/* Project detail */

.project-overview-original {
    background: var(--paper-bright);
}

.project-overview-original__facts {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(7, 23, 34, 0.16);
    border-left: 1px solid rgba(7, 23, 34, 0.16);
}

.project-overview-original__facts > div {
    min-height: 146px;
    padding: 24px;
    border-right: 1px solid rgba(7, 23, 34, 0.16);
    border-bottom: 1px solid rgba(7, 23, 34, 0.16);
}

.project-overview-original__facts > div > span {
    color: var(--accent-dark);
}

.project-overview-original__facts .icon {
    width: 25px;
    height: 25px;
}

.project-overview-original__facts h3 {
    margin: 14px 0 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.project-overview-original__facts p {
    color: var(--ink-muted);
    font-size: 14px;
}

.scope-original {
    background: var(--paper);
}

.scope-original > .shell {
    padding-block: var(--section) 0;
}

.scope-original__field {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 18, 26, 0.95), rgba(4, 18, 26, 0.78)),
        url("../images/bg_2.jpg") center / cover;
}

.scope-original__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scope-original__item {
    min-height: 260px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.scope-original__item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.scope-original__item > span {
    color: var(--signal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.scope-original__item strong {
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 500;
    line-height: 1.35;
}

.project-gallery-original {
    background: var(--paper-bright);
}

.project-gallery-original__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 16px;
}

.project-gallery-original__item {
    grid-column: span 4;
    grid-row: span 2;
    margin: 0;
    overflow: hidden;
    background: var(--blueprint-deep);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.project-gallery-original__item--wide {
    grid-column: span 8;
    grid-row: span 3;
}

.project-gallery-original__item:nth-child(4n) {
    grid-column: span 8;
}

.project-gallery-original__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.project-gallery-original__item:hover img {
    transform: scale(1.055);
    filter: saturate(1);
}

.project-archive--related {
    border-top: 1px solid rgba(7, 23, 34, 0.14);
}

/* Contact */

.contact-original-hero__media {
    filter: saturate(0.62) contrast(1.08);
}

.contact-original {
    position: relative;
    overflow: hidden;
    background: var(--paper-bright);
}

.contact-original::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 55%;
    height: 100%;
    opacity: 0.65;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.contact-original__heading {
    position: relative;
    margin-bottom: clamp(46px, 7vw, 90px);
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-original__heading > span {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border: 1px solid var(--accent-dark);
    transform: rotate(45deg);
}

.contact-original__heading > span::before,
.contact-original__heading > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent-dark);
    transform: translate(-50%, -50%);
}

.contact-original__heading > span::before { width: 76px; height: 1px; }
.contact-original__heading > span::after { width: 1px; height: 76px; }

.contact-original__heading h2 {
    margin: 0;
    font-size: clamp(45px, 7vw, 90px);
    font-weight: 500;
}

.contact-original__primary {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(7, 23, 34, 0.18);
    border-left: 1px solid rgba(7, 23, 34, 0.18);
}

.contact-original__card {
    min-height: 250px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(7, 23, 34, 0.18);
    border-bottom: 1px solid rgba(7, 23, 34, 0.18);
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.contact-original__card:hover {
    color: var(--white);
    background: var(--blueprint-deep);
    transform: translateY(-8px);
}

.contact-original__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 48px;
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    border: 1px solid rgba(141, 156, 30, 0.55);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-original__card:hover .contact-original__icon {
    color: var(--signal);
    border-color: var(--signal);
}

.contact-original__card h3 {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.contact-original__card p {
    color: var(--ink-muted);
    font-size: 17px;
    transition: color 0.3s ease;
}

.contact-original__card:hover p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-original__card a:hover,
.contact-original__card a:focus-visible {
    color: var(--signal);
}

.contact-original__departments {
    position: relative;
    margin-top: clamp(46px, 7vw, 88px);
    margin-left: clamp(0px, 12vw, 170px);
    border-top: 1px solid rgba(7, 23, 34, 0.18);
}

.contact-original__departments article {
    min-height: 110px;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 54px minmax(250px, 0.8fr) minmax(260px, 1.2fr);
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(7, 23, 34, 0.18);
}

.contact-original__departments article > span {
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.contact-original__departments h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.contact-original__departments a {
    color: var(--ink-muted);
    transition: color 0.2s ease;
}

.contact-original__departments a:hover,
.contact-original__departments a:focus-visible {
    color: var(--accent-dark);
}

/* Product order */

.product-order {
    position: relative;
    min-height: 1000px;
    overflow: hidden;
    color: var(--white);
    background: var(--blueprint-deep);
    isolation: isolate;
}

.product-order__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 18, 26, 0.98) 0%, rgba(4, 18, 26, 0.91) 43%, rgba(4, 18, 26, 0.65) 70%, rgba(4, 18, 26, 0.82)),
        url("../img/slideshow/trading1.jpg") center / cover;
}

.product-order__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.product-order__layout {
    padding-block: clamp(82px, 9vw, 140px);
    display: grid;
    grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
    gap: clamp(55px, 8vw, 128px);
    align-items: start;
}

.product-order__intro {
    position: sticky;
    top: 155px;
    padding-top: 62px;
}

.product-order__mark {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 48px;
    display: block;
    border: 1px solid var(--signal);
    transform: rotate(45deg);
}

.product-order__mark::before,
.product-order__mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--signal);
    transform: translate(-50%, -50%);
}

.product-order__mark::before { width: 76px; height: 1px; }
.product-order__mark::after { width: 1px; height: 76px; }

.product-order__intro h1 {
    margin-bottom: 18px;
    font-size: clamp(62px, 8vw, 112px);
    font-weight: 500;
    letter-spacing: -0.075em;
}

.product-order__intro > p {
    color: var(--signal);
    font-size: clamp(20px, 2.5vw, 30px);
}

.product-order__drawing {
    position: relative;
    width: min(310px, 90%);
    height: 190px;
    margin-top: 85px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: skewY(-8deg);
}

.product-order__drawing::before,
.product-order__drawing::after,
.product-order__drawing span {
    content: "";
    position: absolute;
    display: block;
    background: rgba(212, 223, 32, 0.45);
}

.product-order__drawing::before { top: 35%; right: -30px; left: -30px; height: 1px; }
.product-order__drawing::after { top: -25px; bottom: -25px; left: 68%; width: 1px; }
.product-order__drawing span:nth-child(1) { top: 35%; left: 68%; width: 11px; height: 11px; border: 1px solid var(--signal); background: transparent; transform: translate(-5px, -5px) rotate(45deg); }
.product-order__drawing span:nth-child(2) { top: 15%; left: 15%; width: 35%; height: 1px; }
.product-order__drawing span:nth-child(3) { top: 15%; bottom: 18%; left: 15%; width: 1px; }
.product-order__drawing span:nth-child(4) { right: 10%; bottom: 18%; left: 15%; height: 1px; }

.product-order__form {
    position: relative;
    padding: clamp(32px, 5vw, 70px);
    color: var(--ink);
    background: rgba(251, 251, 248, 0.97);
    box-shadow: 0 44px 120px rgba(0, 0, 0, 0.33);
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.product-order__form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 4px;
    background: var(--signal);
}

.product-order__form-grid {
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
}

.product-order__field {
    position: relative;
}

.product-order__field[hidden] {
    display: none;
}

.product-order__field--other,
.product-order__field--file {
    grid-column: 1 / -1;
}

.product-order__field input,
.product-order__field select,
.product-order__field textarea {
    width: 100%;
    min-height: 58px;
    padding: 15px 16px;
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid rgba(7, 23, 34, 0.18);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-order__field textarea {
    min-height: 58px;
    resize: vertical;
}

.product-order__field input:focus,
.product-order__field select:focus,
.product-order__field textarea:focus {
    background: var(--white);
    border-color: var(--accent-dark);
    box-shadow: inset 3px 0 var(--signal);
}

.product-order__field input::placeholder,
.product-order__field textarea::placeholder {
    color: #68767e;
    opacity: 1;
}

.product-order__field--date label,
.product-order__field--file label {
    display: block;
    margin-bottom: 9px;
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.product-order__field--file {
    padding: 22px;
    border: 1px dashed rgba(7, 23, 34, 0.28);
}

.product-order__field--file input {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.product-order__form .button {
    min-width: 190px;
}

@media (max-width: 1100px) {
    .service-console {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
        gap: 34px;
    }

    .service-console__tab {
        grid-template-columns: 30px 1fr 20px;
    }

    .service-console__icon {
        display: none;
    }

    .service-console__stage {
        min-height: 650px;
    }

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

    .scope-original__item:nth-child(odd) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .scope-original__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
}

@media (max-width: 900px) {
    .service-console-hero,
    .project-archive-hero,
    .contact-original-hero {
        min-height: 410px;
    }

    .service-console-hero__media {
        left: 18%;
        width: 82%;
    }

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

    .service-console__stage {
        position: relative;
        top: auto;
        min-height: 580px;
        grid-row: 1;
    }

    .service-console__rail {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid rgba(7, 23, 34, 0.2);
    }

    .service-console__tab,
    .service-console__tab:hover,
    .service-console__tab:focus-visible,
    .service-console__tab.is-active {
        min-height: 220px;
        padding: 24px;
        grid-template-columns: 30px 1fr;
        border-right: 1px solid rgba(7, 23, 34, 0.2);
    }

    .service-console__crosshair {
        display: none;
    }

    .service-console__tab-copy > span {
        font-size: 12px;
    }

    .service-detail-overview__grid,
    .project-overview-original__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-overview__media,
    .project-overview-original__media {
        min-height: 560px;
    }

    .service-description-original__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .project-archive-card,
    .project-archive-card:nth-child(5n + 1),
    .project-archive-card:nth-child(5n + 2),
    .project-archive-card:nth-child(5n + 4),
    .project-archive-card:nth-child(5n + 5) {
        grid-column: span 6;
    }

    .project-archive-card__media,
    .project-archive-card:nth-child(even) .project-archive-card__media {
        height: 390px;
    }

    .project-gallery-original__item,
    .project-gallery-original__item--wide,
    .project-gallery-original__item:nth-child(4n) {
        grid-column: span 6;
        grid-row: span 2;
    }

    .contact-original__primary {
        grid-template-columns: 1fr;
    }

    .contact-original__card {
        min-height: 210px;
    }

    .contact-original__departments {
        margin-left: 0;
    }

    .contact-original__departments article {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .contact-original__departments a {
        grid-column: 2;
    }

    .product-order__layout {
        grid-template-columns: 1fr;
    }

    .product-order__intro {
        position: relative;
        top: auto;
        padding-top: 0;
    }

    .product-order__drawing {
        display: none;
    }
}

@media (max-width: 640px) {
    .service-console-hero,
    .project-archive-hero,
    .contact-original-hero {
        min-height: 360px;
    }

    .service-console-hero::after,
    .project-archive-hero::after,
    .contact-original-hero::after {
        right: 16px;
        width: 100px;
    }

    .service-console-hero__content,
    .project-archive-hero__content,
    .contact-original-hero__content {
        padding-block: 70px 48px;
    }

    .service-console-hero h1,
    .project-archive-hero h1,
    .contact-original-hero h1 {
        font-size: clamp(48px, 17vw, 74px);
    }

    .service-console-hero p {
        margin-top: 20px;
        font-size: 15px;
    }

    .service-console__stage {
        min-height: 430px;
        clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    }

    .service-console__panel-data {
        padding: 26px;
    }

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

    .service-console__tab,
    .service-console__tab:hover,
    .service-console__tab:focus-visible,
    .service-console__tab.is-active {
        min-height: 190px;
        padding: 23px 18px;
    }

    .detail-hero.service-detail-hero,
    .detail-hero.project-detail-hero {
        min-height: 500px;
    }

    .service-detail-overview__media,
    .project-overview-original__media {
        min-height: 390px;
    }

    .service-detail-overview__media::before,
    .project-overview-original__media::before {
        top: -12px;
        right: 12px;
        bottom: 12px;
        left: -12px;
    }

    .service-detail-overview__content h2,
    .project-overview-original__content h2,
    .service-faq-original h2,
    .project-gallery-original > .shell > h2,
    .scope-original > .shell > h2 {
        font-size: 39px;
    }

    .project-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .project-filter::-webkit-scrollbar {
        display: none;
    }

    .project-filter__button {
        flex: 0 0 auto;
    }

    .project-archive__grid {
        display: block;
    }

    .project-archive-card {
        margin-bottom: 50px;
    }

    .project-archive-card__media,
    .project-archive-card:nth-child(even) .project-archive-card__media {
        height: 370px;
    }

    .project-overview-original__facts {
        grid-template-columns: 1fr;
    }

    .scope-original__grid {
        grid-template-columns: 1fr;
    }

    .scope-original__item,
    .scope-original__item:nth-child(odd) {
        min-height: 190px;
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .project-gallery-original__grid {
        display: block;
    }

    .project-gallery-original__item,
    .project-gallery-original__item--wide,
    .project-gallery-original__item:nth-child(4n) {
        height: 330px;
        margin-bottom: 14px;
    }

    .contact-original__heading {
        gap: 20px;
    }

    .contact-original__heading > span {
        width: 38px;
        height: 38px;
    }

    .contact-original__heading > span::before { width: 54px; }
    .contact-original__heading > span::after { height: 54px; }

    .contact-original__heading h2 {
        font-size: 42px;
    }

    .contact-original__card {
        min-height: 225px;
        padding: 28px;
    }

    .contact-original__departments article {
        padding: 28px 0;
        display: block;
    }

    .contact-original__departments article > span,
    .contact-original__departments h3 {
        display: block;
        margin-bottom: 10px;
    }

    .contact-original__departments a {
        overflow-wrap: anywhere;
    }

    .product-order__intro h1 {
        font-size: clamp(55px, 17vw, 74px);
    }

    .product-order__form {
        padding: 30px 20px;
        clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    }

    .product-order__form-grid {
        grid-template-columns: 1fr;
    }

    .product-order__field--other,
    .product-order__field--file {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-console__tab,
    .service-console__tab::before,
    .service-console__panel,
    .project-archive-card__media img,
    .project-archive-card__content::before {
        transition-duration: 0.01ms !important;
    }
}
/* ================================================================
   Structural refinement: header, hero, questions and footer
   ================================================================ */

.site-v2 .topbar {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.66);
    background: #020c12;
    border-bottom-color: rgba(212, 223, 32, 0.13);
}

.site-v2 .topbar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: max(18px, calc((100vw - 1180px) / 2 - 20px));
    background:
        linear-gradient(135deg, transparent calc(100% - 14px), rgba(212, 223, 32, 0.34) 0),
        rgba(212, 223, 32, 0.05);
    border-right: 1px solid rgba(212, 223, 32, 0.18);
}

.site-v2 .topbar__inner {
    min-height: 36px;
}

.site-v2 .topbar__links {
    position: relative;
}

.site-v2 .topbar__links::before {
    content: "";
    width: 36px;
    height: 1px;
    background: rgba(212, 223, 32, 0.42);
}

.site-v2 .site-header {
    position: sticky;
    overflow: visible;
    background: rgba(3, 15, 22, 0.975);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    isolation: isolate;
}

.site-v2 .site-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: max(0px, calc((100vw - 1180px) / 2));
    z-index: 3;
    width: 132px;
    height: 3px;
    background: var(--signal);
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.site-header__blueprint {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        linear-gradient(90deg, transparent 0 59px, rgba(255, 255, 255, 0.045) 60px),
        linear-gradient(0deg, transparent 0 59px, rgba(255, 255, 255, 0.035) 60px);
    background-size: 60px 60px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.site-header__blueprint span {
    position: absolute;
    display: block;
    background: rgba(212, 223, 32, 0.3);
}

.site-header__blueprint span:nth-child(1) { top: 0; bottom: 0; left: 28%; width: 1px; }
.site-header__blueprint span:nth-child(2) { right: 8%; bottom: 18px; width: 90px; height: 1px; }
.site-header__blueprint span:nth-child(3) { right: calc(8% + 90px); bottom: 14px; width: 9px; height: 9px; border: 1px solid var(--signal); background: transparent; transform: rotate(45deg); }

.site-v2 .site-header__inner {
    position: relative;
    min-height: 96px;
    transition: min-height 0.3s ease;
}

.site-v2 .site-header.is-scrolled .site-header__inner {
    min-height: 76px;
}

.site-v2 .brand {
    position: relative;
    gap: 14px;
}

.brand__emblem {
    position: relative;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.13);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

.brand__emblem::before,
.brand__emblem::after {
    content: "";
    position: absolute;
    background: var(--signal);
    opacity: 0.6;
}

.brand__emblem::before { top: 8px; right: -6px; width: 18px; height: 1px; }
.brand__emblem::after { right: 8px; bottom: -6px; width: 1px; height: 18px; }

.brand__emblem .brand__mark {
    width: 46px;
    height: 46px;
}

.brand__axis {
    position: absolute;
    top: 50%;
    left: calc(100% + 26px);
    width: clamp(30px, 5vw, 78px);
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 223, 32, 0.5), transparent);
}

.site-v2 .primary-nav > ul {
    gap: 0;
    padding: 5px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.site-v2 .primary-nav > ul > li > a {
    min-height: 52px;
    padding: 0 17px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.62);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.site-v2 .primary-nav > ul > li:last-child > a {
    border-right: 0;
}

.site-v2 .primary-nav > ul > li > a::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 5px;
    height: 5px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.site-v2 .primary-nav > ul > li > a::after {
    right: 12px;
    bottom: 6px;
    left: 12px;
    height: 2px;
}

.site-v2 .primary-nav > ul > li > a:hover,
.site-v2 .primary-nav > ul > li > a:focus-visible,
.site-v2 .primary-nav > ul > li > a.is-active {
    color: var(--white);
    background: rgba(212, 223, 32, 0.07);
}

.site-v2 .primary-nav > ul > li > a:hover::before,
.site-v2 .primary-nav > ul > li > a:focus-visible::before,
.site-v2 .primary-nav > ul > li > a.is-active::before {
    border-color: var(--signal);
}

.site-header__node {
    position: absolute;
    right: -7px;
    bottom: -7px;
    z-index: 4;
    width: 13px;
    height: 13px;
    background: #04121a;
    border: 1px solid var(--signal);
    transform: rotate(45deg);
}

/* Cinematic engineering hero */

.engineering-hero {
    min-height: clamp(740px, calc(100svh - 132px), 900px);
    border-bottom: 1px solid rgba(212, 223, 32, 0.32);
}

.engineering-hero .home-hero__media {
    left: 33%;
    width: 67%;
    filter: saturate(0.82) contrast(1.08) brightness(0.86);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.015);
}

.engineering-hero::before {
    background:
        linear-gradient(90deg, #031018 0%, #031018 38%, rgba(3, 16, 24, 0.98) 48%, rgba(3, 16, 24, 0.74) 61%, rgba(3, 16, 24, 0.12) 100%),
        linear-gradient(0deg, rgba(3, 16, 24, 0.78), transparent 56%);
}

.engineering-hero::after {
    opacity: 0.45;
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, #000 0 48%, transparent 86%);
}

.engineering-hero__planes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.engineering-hero__plane {
    position: absolute;
    display: block;
    border: 1px solid rgba(212, 223, 32, 0.26);
}

.engineering-hero__plane--one {
    top: -26%;
    right: 17%;
    width: 27%;
    height: 112%;
    transform: skewX(-15deg);
}

.engineering-hero__plane--two {
    right: 4%;
    bottom: 11%;
    width: 25%;
    height: 31%;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(4, 18, 26, 0.16);
    backdrop-filter: blur(1px);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.engineering-hero__plane--three {
    top: 17%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-color: var(--signal);
    transform: rotate(45deg);
    box-shadow: 0 0 0 9px rgba(212, 223, 32, 0.04);
}

.home-hero__inner--original {
    grid-template-columns: minmax(0, 850px) 1fr;
    padding-block: clamp(92px, 10vw, 146px);
}

.engineering-hero h1 {
    max-width: 850px;
    margin-bottom: 48px;
    font-size: clamp(64px, 7vw, 108px);
    line-height: 0.98;
}

.engineering-hero h1 span::after {
    right: -10px;
    bottom: 0.04em;
    left: -8px;
    height: 0.16em;
    opacity: 0.22;
    clip-path: polygon(4px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.engineering-hero .hero-actions {
    gap: 14px;
}

.engineering-hero .button {
    min-height: 60px;
    padding-inline: 28px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.engineering-hero .button--ghost-light {
    background: rgba(4, 18, 26, 0.52);
}

.engineering-hero__edge {
    position: absolute;
    right: 24px;
    bottom: 25px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.engineering-hero__edge span {
    width: 32px;
    height: 8px;
    display: block;
    border: 1px solid rgba(212, 223, 32, 0.52);
}

.engineering-hero__edge span:nth-child(2) { width: 58px; background: rgba(212, 223, 32, 0.18); }
.engineering-hero__edge span:nth-child(3) { width: 12px; background: var(--signal); }

.engineering-hero__stamp {
    grid-template-columns: repeat(2, 62px);
    background: rgba(4, 18, 26, 0.42);
    backdrop-filter: blur(8px);
}

.engineering-hero__stamp span {
    width: 62px;
    height: 62px;
}

/* Construction contact banner */

.contact-intro-original {
    min-height: 570px;
    border-top: 1px solid rgba(212, 223, 32, 0.28);
    border-bottom: 1px solid rgba(212, 223, 32, 0.28);
}

.contact-intro-original::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.contact-intro-original::after {
    background:
        linear-gradient(90deg, rgba(3, 16, 24, 0.99) 0%, rgba(3, 16, 24, 0.97) 45%, rgba(3, 16, 24, 0.7) 68%, rgba(3, 16, 24, 0.18) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.contact-intro-original__media {
    left: 38%;
    width: 62%;
    filter: saturate(0.8) contrast(1.08);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-intro-original__structure {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-intro-original__structure span {
    position: absolute;
    display: block;
}

.contact-intro-original__structure span:nth-child(1) { top: 12%; bottom: 12%; left: 58%; width: 1px; background: rgba(212, 223, 32, 0.44); transform: skewX(-13deg); }
.contact-intro-original__structure span:nth-child(2) { top: 23%; right: 6%; width: 26%; height: 48%; border: 1px solid rgba(212, 223, 32, 0.3); transform: skewX(-13deg); }
.contact-intro-original__structure span:nth-child(3) { top: calc(23% - 6px); right: calc(32% - 6px); width: 12px; height: 12px; border: 1px solid var(--signal); transform: rotate(45deg); }

.contact-intro-original__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.contact-intro-original__inner > div {
    max-width: 860px;
}

.contact-intro-original h2 {
    font-size: clamp(58px, 7vw, 94px);
    line-height: 0.97;
    letter-spacing: -0.06em;
}

.contact-intro-original .eyebrow {
    margin-bottom: 30px;
}

.contact-intro-original .button {
    min-width: 230px;
    min-height: 62px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

/* Questions console */

.quote-original {
    min-height: 870px;
    padding-block: clamp(110px, 10vw, 155px);
    border-top: 1px solid rgba(212, 223, 32, 0.22);
    border-bottom: 1px solid rgba(212, 223, 32, 0.22);
}

.quote-original::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.quote-original::after {
    background:
        linear-gradient(90deg, rgba(3, 15, 22, 0.99) 0%, rgba(3, 15, 22, 0.96) 48%, rgba(3, 15, 22, 0.82) 75%, rgba(3, 15, 22, 0.68) 100%);
}

.quote-original__media {
    left: 42%;
    width: 58%;
    filter: grayscale(0.18) saturate(0.7) contrast(1.08);
    opacity: 0.5;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.quote-original__structure {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.quote-original__structure span {
    position: absolute;
    display: block;
}

.quote-original__structure span:nth-child(1) { top: 0; bottom: 0; left: 43%; width: 1px; background: rgba(212, 223, 32, 0.24); transform: skewX(-11deg); }
.quote-original__structure span:nth-child(2) { top: 9%; left: 6%; width: 32%; height: 1px; background: linear-gradient(90deg, var(--signal), transparent); }
.quote-original__structure span:nth-child(3) { right: 3%; bottom: 8%; width: 13px; height: 13px; border: 1px solid var(--signal); transform: rotate(45deg); }

.quote-original__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(70px, 10vw, 145px);
}

.quote-original__heading {
    top: 118px;
    padding: 34px 34px 46px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-original__heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 34%;
    height: 3px;
    background: var(--signal);
}

.quote-original__crosshair {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 0 54px 9px;
    display: block;
    border: 1px solid rgba(212, 223, 32, 0.62);
    transform: rotate(45deg);
}

.quote-original__crosshair::before,
.quote-original__crosshair::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--signal);
    transform: translate(-50%, -50%);
}

.quote-original__crosshair::before { width: 94px; height: 1px; }
.quote-original__crosshair::after { width: 1px; height: 94px; }

.quote-original h2 {
    max-width: 520px;
    font-size: clamp(58px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.quote-original .faq-list--dark {
    max-width: none;
    display: grid;
    gap: 16px;
    counter-reset: question;
    border-top: 0;
}

.quote-original .faq-item {
    position: relative;
    overflow: hidden;
    background: rgba(3, 15, 22, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    counter-increment: question;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.quote-original .faq-item::before {
    content: "0" counter(question);
    position: absolute;
    top: 34px;
    left: 26px;
    color: var(--signal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.quote-original .faq-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--signal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.quote-original .faq-item:hover,
.quote-original .faq-item:focus-within,
.quote-original .faq-item[open] {
    background: rgba(8, 38, 52, 0.94);
    border-color: rgba(212, 223, 32, 0.42);
    transform: translateX(-8px);
}

.quote-original .faq-item[open]::after {
    transform: scaleY(1);
}

.quote-original .faq-item summary {
    min-height: 112px;
    padding: 31px 78px 30px 78px;
    display: flex;
    align-items: center;
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.35;
}

.quote-original .faq-item summary::before,
.quote-original .faq-item summary::after {
    right: 30px;
    width: 22px;
}

.quote-original .faq-item__answer {
    max-width: none;
    padding: 0 78px 34px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.75;
}

/* Structural footer CTA */

.site-v2 .footer-cta {
    position: relative;
    min-height: 440px;
    color: var(--ink);
    background: var(--signal);
    border-bottom: 0;
    isolation: isolate;
}

.site-v2 .footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 34%;
    background:
        linear-gradient(135deg, transparent 0 17%, rgba(4, 18, 26, 0.96) 17.2%),
        var(--blueprint-deep);
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

.site-v2 .footer-cta::after {
    top: -170px;
    right: -145px;
    width: 540px;
    height: 540px;
    border-color: rgba(212, 223, 32, 0.28);
    box-shadow: 0 0 0 74px rgba(212, 223, 32, 0.025), 0 0 0 148px rgba(212, 223, 32, 0.02);
}

.footer-cta__structure {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(4, 18, 26, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 18, 26, 0.1) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.footer-cta__structure span {
    position: absolute;
    display: block;
    background: rgba(4, 18, 26, 0.44);
}

.footer-cta__structure span:nth-child(1) { top: 16%; left: 4%; width: 30%; height: 1px; }
.footer-cta__structure span:nth-child(2) { top: 16%; bottom: 16%; left: 4%; width: 1px; }
.footer-cta__structure span:nth-child(3) { top: calc(16% - 6px); left: calc(34% - 6px); width: 12px; height: 12px; border: 1px solid var(--ink); background: transparent; transform: rotate(45deg); }

.site-v2 .footer-cta__inner {
    min-height: 440px;
    padding-block: 74px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 80px;
}

.site-v2 .footer-cta .eyebrow--light {
    color: rgba(7, 23, 34, 0.74);
}

.site-v2 .footer-cta h2 {
    max-width: 850px;
    font-size: clamp(62px, 6.5vw, 94px);
    line-height: 0.93;
    letter-spacing: -0.065em;
}

.site-v2 .footer-cta .button--light {
    position: relative;
    z-index: 2;
    min-width: 190px;
    min-height: 62px;
    color: var(--ink);
    background: var(--white);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.site-v2 .footer-cta .button--light:hover,
.site-v2 .footer-cta .button--light:focus-visible {
    color: var(--white);
    background: var(--blueprint-deep);
}

/* Engineered footer */

.site-v2 .site-footer {
    position: relative;
    overflow: hidden;
    background: #020c12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    isolation: isolate;
}

.site-v2 .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, var(--signal) 0 31%, rgba(212, 223, 32, 0.12) 31% 100%);
}

.site-footer__structure {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.site-footer__structure span {
    position: absolute;
    display: block;
}

.site-footer__structure span:nth-child(1) { top: 17%; right: 8%; width: 240px; height: 240px; border: 1px solid rgba(212, 223, 32, 0.22); transform: rotate(45deg); }
.site-footer__structure span:nth-child(2) { top: 0; bottom: 0; left: 34%; width: 1px; background: rgba(212, 223, 32, 0.13); }
.site-footer__structure span:nth-child(3) { top: 17%; right: calc(8% + 234px); width: 12px; height: 12px; border: 1px solid var(--signal); transform: rotate(45deg); }

.site-v2 .site-footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    padding-block: 96px 82px;
}

.site-v2 .footer-brand {
    grid-column: span 4;
    padding-right: clamp(26px, 4vw, 60px);
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.site-v2 .footer-brand .brand__emblem {
    width: 76px;
    height: 76px;
}

.site-v2 .footer-brand .brand__emblem .brand__mark {
    width: 57px;
    height: 57px;
}

.site-v2 .brand--footer {
    margin-bottom: 35px;
}

.site-v2 .footer-brand > p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.5;
}

.site-v2 .footer-socials {
    margin-top: 38px;
}

.site-v2 .footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.site-v2 .footer-column {
    gap: 0;
}

.site-v2 .footer-column:nth-of-type(2) { grid-column: span 2; }
.site-v2 .footer-column:nth-of-type(3) { grid-column: span 3; }
.site-v2 .footer-column:nth-of-type(4) { grid-column: span 3; }

.site-v2 .footer-column h3 {
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 15px;
    color: var(--signal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-v2 .footer-column:not(.footer-contact) > a {
    position: relative;
    width: 100%;
    min-height: 43px;
    padding: 9px 22px 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    font-size: 12px;
}

.site-v2 .footer-column:not(.footer-contact) > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.site-v2 .footer-column:not(.footer-contact) > a:hover::after,
.site-v2 .footer-column:not(.footer-contact) > a:focus-visible::after {
    transform: translate(4px, -50%) rotate(45deg);
}

.site-v2 .footer-contact {
    align-self: start;
    padding: 26px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 19px, 100% 100%, 0 100%);
}

.site-v2 .footer-contact p,
.site-v2 .footer-contact > a {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.55;
}

.site-v2 .footer-contact > a:last-child {
    border-bottom: 0;
}

.site-v2 .footer-contact .icon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: var(--signal);
    flex: 0 0 auto;
}

.site-v2 .site-footer__bottom {
    position: relative;
    min-height: 86px;
    border-top-color: rgba(255, 255, 255, 0.12);
}

.site-v2 .site-footer__bottom::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 88px;
    height: 3px;
    background: var(--signal);
}

.site-v2 .floating-contact {
    min-height: 54px;
    padding-inline: 20px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

@media (max-width: 1100px) {
    .brand__axis {
        display: none;
    }

    .site-v2 .primary-nav > ul > li > a {
        padding-inline: 12px;
    }

    .site-v2 .site-footer__grid {
        gap: 20px;
    }

    .site-v2 .footer-contact {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .site-v2 .site-header__inner,
    .site-v2 .site-header.is-scrolled .site-header__inner {
        min-height: 80px;
    }

    .site-v2 .site-header::after {
        left: 14px;
        width: 88px;
    }

    .brand__emblem {
        width: 54px;
        height: 54px;
    }

    .brand__emblem .brand__mark {
        width: 40px;
        height: 40px;
    }

    .site-v2 .primary-nav {
        height: calc(100svh - 80px);
        padding-top: 24px;
        background:
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            #031018;
        background-size: 48px 48px;
    }

    .site-v2 .primary-nav > ul {
        padding: 0;
        background: transparent;
        border: 0;
        clip-path: none;
    }

    .site-v2 .primary-nav > ul > li > a {
        min-height: 58px;
        padding: 0 18px;
        display: flex;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 19px;
    }

    .engineering-hero {
        min-height: 760px;
    }

    .engineering-hero .home-hero__media {
        left: 0;
        width: 100%;
        clip-path: none;
    }

    .engineering-hero__plane--one {
        right: 9%;
        width: 43%;
    }

    .contact-intro-original__inner {
        display: flex;
    }

    .quote-original {
        min-height: 0;
    }

    .quote-original__grid {
        gap: 70px;
    }

    .quote-original__heading {
        padding-right: 0;
    }

    .quote-original__structure span:nth-child(1) {
        display: none;
    }

    .site-v2 .footer-cta__inner {
        display: flex;
        gap: 44px;
    }

    .site-v2 .footer-cta::before {
        width: 52%;
        opacity: 0.72;
    }

    .site-v2 .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 34px;
    }

    .site-v2 .footer-brand,
    .site-v2 .footer-column:nth-of-type(2),
    .site-v2 .footer-column:nth-of-type(3),
    .site-v2 .footer-column:nth-of-type(4) {
        grid-column: span 1;
    }

    .site-v2 .footer-brand {
        padding-right: 0;
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .site-v2 .topbar__links::before {
        display: none;
    }

    .site-v2 .site-header__inner,
    .site-v2 .site-header.is-scrolled .site-header__inner {
        min-height: 78px;
    }

    .site-v2 .brand__wordmark strong {
        font-size: 17px;
    }

    .site-v2 .brand__wordmark span {
        font-size: 14px;
    }

    .engineering-hero {
        min-height: 760px;
    }

    .home-hero__inner--original {
        min-height: 760px;
        padding-block: 62px 74px;
    }

    .engineering-hero h1 {
        font-size: clamp(47px, 14.2vw, 62px);
        line-height: 0.99;
    }

    .engineering-hero__plane--one {
        right: -8%;
        width: 66%;
    }

    .engineering-hero__plane--two {
        right: -6%;
        width: 52%;
        height: 24%;
    }

    .engineering-hero__edge {
        right: 14px;
        bottom: 14px;
    }

    .contact-intro-original {
        min-height: 640px;
    }

    .contact-intro-original__media {
        left: 0;
        width: 100%;
        clip-path: none;
    }

    .contact-intro-original::after {
        background: linear-gradient(90deg, rgba(3, 16, 24, 0.97), rgba(3, 16, 24, 0.68));
    }

    .contact-intro-original h2 {
        font-size: 53px;
    }

    .quote-original {
        padding-block: 90px;
    }

    .quote-original__media {
        left: 0;
        width: 100%;
        clip-path: none;
        opacity: 0.28;
    }

    .quote-original__crosshair {
        width: 52px;
        height: 52px;
        margin-bottom: 42px;
    }

    .quote-original__crosshair::before { width: 72px; }
    .quote-original__crosshair::after { height: 72px; }

    .quote-original h2 {
        font-size: 52px;
    }

    .quote-original .faq-item:hover,
    .quote-original .faq-item:focus-within,
    .quote-original .faq-item[open] {
        transform: none;
    }

    .quote-original .faq-item summary {
        min-height: 0;
        padding: 28px 56px 28px 55px;
        font-size: 17px;
    }

    .quote-original .faq-item::before {
        top: 31px;
        left: 18px;
    }

    .quote-original .faq-item summary::before,
    .quote-original .faq-item summary::after {
        right: 20px;
        width: 17px;
    }

    .quote-original .faq-item__answer {
        padding: 0 24px 28px 55px;
        font-size: 14px;
    }

    .site-v2 .footer-cta {
        min-height: 520px;
    }

    .site-v2 .footer-cta__inner {
        min-height: 520px;
        padding-block: 78px;
    }

    .site-v2 .footer-cta::before {
        top: auto;
        width: 100%;
        height: 38%;
        clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    .site-v2 .footer-cta h2 {
        font-size: 54px;
    }

    .site-v2 .footer-cta .button--light {
        width: 100%;
    }

    .site-v2 .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-block: 76px 64px;
    }

    .site-v2 .footer-brand,
    .site-v2 .footer-column:nth-of-type(2),
    .site-v2 .footer-column:nth-of-type(3),
    .site-v2 .footer-column:nth-of-type(4) {
        grid-column: auto;
    }

    .site-v2 .footer-contact {
        padding: 24px;
    }

    .site-footer__structure span:nth-child(1) {
        right: -120px;
    }
}

/* 2026 project + contact precision pass */

.icon--social {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.icon--filled {
    fill: currentColor;
    stroke: none;
}

.icon__fill {
    fill: currentColor;
    stroke: none;
}

.site-v2 .footer-socials a {
    font-size: 0;
}

.site-v2 .footer-socials a:hover .icon,
.site-v2 .footer-socials a:focus-visible .icon {
    transform: scale(1.08);
}

.engineering-hero {
    min-height: clamp(760px, calc(100svh - 96px), 920px);
}

.engineering-hero .button--ghost-light:hover,
.engineering-hero .button--ghost-light:focus-visible {
    color: #061923;
    background: var(--signal);
    border-color: var(--signal);
    box-shadow: 0 0 0 4px rgba(212, 223, 32, 0.18), 0 18px 44px rgba(0, 0, 0, 0.3);
}

.engineering-hero .button--ghost-light:hover .icon,
.engineering-hero .button--ghost-light:focus-visible .icon {
    color: #061923;
}

.technical-frame {
    border-radius: 34px 34px 34px 9px;
    isolation: isolate;
}

.technical-frame__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.12);
    border-radius: 34px 34px 34px 9px;
    background: #061923;
    box-shadow: 0 30px 70px rgba(7, 23, 34, 0.18);
    isolation: isolate;
}

.technical-frame__image::before,
.technical-frame__image::after {
    position: absolute;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.technical-frame__image::before {
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(155deg, transparent 48%, rgba(212, 223, 32, 0.16) 49%, transparent 51%);
    background-size: 44px 44px, 44px 44px, 100% 100%;
    opacity: 0;
    transition: opacity 420ms ease;
}

.technical-frame__image::after {
    top: 0;
    bottom: 0;
    left: -26%;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-16deg);
    transition: left 760ms cubic-bezier(.2, .8, .2, 1);
}

.technical-frame__image img {
    display: block;
    border-radius: inherit;
    transition: transform 760ms cubic-bezier(.2, .8, .2, 1), filter 500ms ease;
    transform-origin: 50% 60%;
}

.technical-frame__sheen {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    width: 74px;
    height: 74px;
    border-right: 2px solid var(--signal);
    border-bottom: 2px solid var(--signal);
    opacity: 0.85;
    transition: width 420ms ease, height 420ms ease, opacity 420ms ease;
}

.technical-frame:hover .technical-frame__image img,
.technical-frame:focus-within .technical-frame__image img {
    transform: scale(1.055);
    filter: saturate(1.06) contrast(1.04);
}

.technical-frame:hover .technical-frame__image::before,
.technical-frame:focus-within .technical-frame__image::before {
    opacity: 1;
}

.technical-frame:hover .technical-frame__image::after,
.technical-frame:focus-within .technical-frame__image::after {
    left: 116%;
}

.technical-frame:hover .technical-frame__sheen,
.technical-frame:focus-within .technical-frame__sheen {
    width: 112px;
    height: 112px;
    opacity: 1;
}

.project-archive-hero,
.contact-original-hero {
    min-height: clamp(570px, 68svh, 690px);
    overflow: hidden;
    background: #061923;
}

.project-archive-hero::before,
.contact-original-hero::before {
    z-index: 1;
    background: linear-gradient(90deg, #061923 0%, #061923 36%, rgba(6, 25, 35, 0.96) 46%, rgba(6, 25, 35, 0.52) 69%, rgba(6, 25, 35, 0.16) 100%);
}

.project-archive-hero::after,
.contact-original-hero::after {
    z-index: 2;
    width: 50%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
    background-size: 54px 54px;
    clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
    opacity: 0.62;
}

.project-archive-hero__media,
.contact-original-hero__media {
    inset: 0 0 0 auto;
    width: 68%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.08);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.01);
}

.project-archive-hero__grid,
.contact-original-hero__grid {
    z-index: 3;
    opacity: 0.44;
}

.project-archive-hero__structure,
.contact-original-hero__structure {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.project-archive-hero__structure span,
.contact-original-hero__structure span {
    position: absolute;
    display: block;
}

.project-archive-hero__structure span:nth-child(1),
.contact-original-hero__structure span:nth-child(1) {
    top: 14%;
    right: 7%;
    width: 138px;
    height: 138px;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.project-archive-hero__structure span:nth-child(2),
.contact-original-hero__structure span:nth-child(2) {
    right: calc(7% + 137px);
    bottom: 14%;
    width: 12px;
    height: 12px;
    background: var(--signal);
    box-shadow: 26px 0 0 rgba(212, 223, 32, 0.34), 52px 0 0 rgba(212, 223, 32, 0.14);
}

.project-archive-hero__structure span:nth-child(3),
.contact-original-hero__structure span:nth-child(3) {
    top: 0;
    left: 44%;
    width: 1px;
    height: 100%;
    background: linear-gradient(transparent, rgba(212, 223, 32, 0.46), transparent);
    transform: rotate(10deg);
}

.project-archive-hero__structure span:nth-child(4),
.contact-original-hero__structure span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 33%;
    height: 9px;
    background: var(--signal);
}

.project-archive-hero__content,
.contact-original-hero__content {
    z-index: 4;
    min-height: clamp(570px, 68svh, 690px);
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.project-archive-hero .breadcrumbs,
.contact-original-hero .breadcrumbs {
    width: max-content;
    max-width: 100%;
    margin-bottom: 34px;
    padding: 12px 16px;
    border-left: 3px solid var(--signal);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.project-archive-hero h1,
.contact-original-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(78px, 9.5vw, 154px);
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
}

.project-archive {
    position: relative;
    overflow: clip;
    padding-block: clamp(92px, 10vw, 154px);
    background:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #f2f3ed;
    background-size: 62px 62px;
}

.project-archive__structure,
.contact-original__structure {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.project-archive__structure span,
.contact-original__structure span {
    position: absolute;
}

.project-archive__structure span:nth-child(1) {
    top: 0;
    left: 4%;
    width: 1px;
    height: 100%;
    background: rgba(7, 23, 34, 0.1);
}

.project-archive__structure span:nth-child(2) {
    top: 84px;
    right: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(7, 23, 34, 0.11);
    transform: rotate(45deg);
}

.project-archive__structure span:nth-child(3) {
    top: 0;
    right: 7%;
    width: 10px;
    height: 110px;
    background: var(--signal);
}

.project-filter {
    position: sticky;
    top: 76px;
    z-index: 20;
    display: flex;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto clamp(54px, 6vw, 90px);
    padding: 10px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 3px;
    background: rgba(6, 25, 35, 0.94);
    box-shadow: 0 22px 60px rgba(7, 23, 34, 0.2);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.project-filter::-webkit-scrollbar {
    display: none;
}

.project-filter__button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-filter__button::before {
    display: none;
}

.project-filter__button:hover,
.project-filter__button:focus-visible {
    border-color: rgba(212, 223, 32, 0.7);
    color: var(--signal);
    background: rgba(212, 223, 32, 0.08);
}

.project-filter__button.is-active {
    border-color: var(--signal);
    color: #061923;
    background: var(--signal);
    box-shadow: inset 0 -4px 0 rgba(6, 25, 35, 0.18);
}

.project-archive__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
}

.project-archive-card,
.project-archive-card:nth-child(5n + 1),
.project-archive-card:nth-child(5n + 2),
.project-archive-card:nth-child(5n + 4),
.project-archive-card:nth-child(5n + 5) {
    position: relative;
    grid-column: span 4;
    min-height: 480px;
    overflow: hidden;
    border: 0;
    background: #061923;
    box-shadow: 0 24px 56px rgba(7, 23, 34, 0.13);
    isolation: isolate;
}

.project-archive-card:nth-child(6n + 1) {
    grid-column: span 8;
    min-height: 620px;
}

.project-archive-card:nth-child(6n + 2) {
    grid-column: span 4;
    min-height: 620px;
}

.project-archive-card:nth-child(6n + 6) {
    grid-column: span 12;
    min-height: 540px;
}

.project-archive-card::before {
    position: absolute;
    top: -20%;
    right: 0;
    left: 0;
    z-index: 3;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--signal), transparent);
    box-shadow: 0 0 18px rgba(212, 223, 32, 0.6);
    opacity: 0;
    pointer-events: none;
}

.project-archive-card::after {
    position: absolute;
    inset: 10px;
    z-index: 4;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
    transition: inset 420ms ease, border-color 420ms ease;
}

.project-archive-card:hover::before,
.project-archive-card:focus-within::before {
    animation: project-scan 1.15s cubic-bezier(.2, .8, .2, 1) forwards;
}

.project-archive-card:hover::after,
.project-archive-card:focus-within::after {
    inset: 15px;
    border-color: rgba(212, 223, 32, 0.6);
}

@keyframes project-scan {
    0% { top: -2%; opacity: 0; }
    14% { opacity: 1; }
    100% { top: 102%; opacity: 0; }
}

.project-archive-card__media,
.project-archive-card:nth-child(even) .project-archive-card__media {
    position: absolute;
    inset: 0;
    display: block;
    height: auto;
    overflow: hidden;
    clip-path: none;
}

.project-archive-card__media::after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 25, 35, 0.03) 20%, rgba(6, 25, 35, 0.27) 55%, rgba(6, 25, 35, 0.98) 100%);
}

.project-archive-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.03);
    transform: scale(1.001);
    transition: transform 900ms cubic-bezier(.2, .8, .2, 1), filter 500ms ease;
}

.project-archive-card:hover .project-archive-card__media img,
.project-archive-card:focus-within .project-archive-card__media img {
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.065);
}

.project-archive-card__grid {
    z-index: 2;
    opacity: 0;
    transition: opacity 420ms ease;
}

.project-archive-card:hover .project-archive-card__grid,
.project-archive-card:focus-within .project-archive-card__grid {
    opacity: 0.68;
}

.project-archive-card__index {
    top: 26px;
    right: 26px;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #061923;
    background: var(--signal);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 8px 8px 0 rgba(6, 25, 35, 0.42);
}

.project-archive-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 38px 40px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(6, 25, 35, 0.96));
    transform: translateY(8px);
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.project-archive-card:hover .project-archive-card__content,
.project-archive-card:focus-within .project-archive-card__content {
    transform: translateY(0);
}

.project-archive-card__content::before {
    top: auto;
    right: 38px;
    bottom: 0;
    left: 38px;
    width: auto;
    height: 4px;
    background: var(--signal);
    transform: scaleX(0.14);
    transform-origin: left;
}

.project-archive-card:hover .project-archive-card__content::before,
.project-archive-card:focus-within .project-archive-card__content::before {
    transform: scaleX(1);
}

.project-archive-card__content > span {
    margin: 0 0 13px;
    color: var(--signal);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.project-archive-card__content h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(27px, 2.6vw, 47px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.project-archive-card:nth-child(6n + 2) .project-archive-card__content h2,
.project-archive-card:not(:nth-child(6n + 1)):not(:nth-child(6n + 6)) .project-archive-card__content h2 {
    font-size: clamp(25px, 2vw, 34px);
}

.project-archive-card__content h2 a {
    color: inherit;
}

.project-archive-card__content h2 a:hover,
.project-archive-card__content h2 a:focus-visible {
    color: var(--signal);
}

.project-archive-card__link {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-archive-card__link:hover,
.project-archive-card__link:focus-visible {
    color: #fff;
}

.contact-original {
    position: relative;
    overflow: clip;
    padding-block: clamp(100px, 11vw, 168px);
    background:
        linear-gradient(rgba(7, 23, 34, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.042) 1px, transparent 1px),
        #f3f4ee;
    background-size: 62px 62px;
}

.contact-original::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 9px;
    height: auto;
    background: var(--signal);
}

.contact-original__structure span:nth-child(1) {
    top: 100px;
    right: 4%;
    width: 170px;
    height: 170px;
    border-top: 1px solid rgba(7, 23, 34, 0.17);
    border-right: 1px solid rgba(7, 23, 34, 0.17);
}

.contact-original__structure span:nth-child(2) {
    top: 0;
    left: 7%;
    width: 1px;
    height: 100%;
    background: rgba(7, 23, 34, 0.1);
}

.contact-original__structure span:nth-child(3) {
    right: 0;
    bottom: 12%;
    width: 18%;
    height: 9px;
    background: #061923;
}

.contact-original__heading {
    position: relative;
    z-index: 2;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 36px;
    margin-bottom: clamp(58px, 7vw, 96px);
}

.contact-original__heading > span {
    width: 112px;
    height: 112px;
    border: 1px solid rgba(7, 23, 34, 0.18);
    background: var(--signal);
    box-shadow: 16px 16px 0 #061923;
}

.contact-original__heading > span::before,
.contact-original__heading > span::after {
    background: #061923;
}

.contact-original__heading h2 {
    max-width: 880px;
    font-size: clamp(54px, 7vw, 102px);
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.contact-original__primary {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.contact-original__card {
    position: relative;
    display: flex;
    min-height: 350px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 42px;
    border: 1px solid rgba(7, 23, 34, 0.13);
    background: #fff;
    box-shadow: 0 22px 54px rgba(7, 23, 34, 0.09);
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1), box-shadow 420ms ease, border-color 420ms ease;
}

.contact-original__card:nth-child(1) {
    grid-column: span 5;
    min-height: 410px;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        #061923;
    background-size: 42px 42px;
}

.contact-original__card:nth-child(2) {
    grid-column: span 4;
}

.contact-original__card:nth-child(3) {
    grid-column: span 3;
    color: #061923;
    background: var(--signal);
}

.contact-original__card::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    content: "";
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    opacity: 0.28;
    transition: width 420ms ease, height 420ms ease, opacity 420ms ease;
}

.contact-original__card:hover,
.contact-original__card:focus-within {
    border-color: rgba(7, 23, 34, 0.34);
    box-shadow: 0 34px 70px rgba(7, 23, 34, 0.16);
    transform: translateY(-9px);
}

.contact-original__card:hover::after,
.contact-original__card:focus-within::after {
    width: 74px;
    height: 74px;
    opacity: 0.68;
}

.contact-original__icon {
    width: 70px;
    height: 70px;
    margin-bottom: auto;
    border: 1px solid rgba(7, 23, 34, 0.14);
    border-radius: 0;
    color: #061923;
    background: var(--signal);
    box-shadow: 9px 9px 0 rgba(7, 23, 34, 0.13);
}

.contact-original__card:nth-child(3) .contact-original__icon {
    color: #fff;
    background: #061923;
}

.contact-original__card:hover .contact-original__icon,
.contact-original__card:focus-within .contact-original__icon {
    color: #061923;
    background: #fff;
    transform: rotate(-4deg);
}

.contact-original__card:nth-child(2):hover .contact-original__icon,
.contact-original__card:nth-child(2):focus-within .contact-original__icon {
    color: #061923;
    background: var(--signal);
}

.contact-original__card h3 {
    margin-bottom: 13px;
    color: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-original__card p {
    color: inherit;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.22;
}

.contact-original__card:nth-child(1) p {
    color: #fff;
}

.contact-original__card:nth-child(3) p,
.contact-original__card:nth-child(3) a {
    color: #061923;
}

.contact-original__card:nth-child(3) p {
    font-size: clamp(17px, 1.5vw, 22px);
    overflow-wrap: anywhere;
}

.contact-original__departments {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: clamp(68px, 8vw, 112px) 0 0;
    padding: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 80px rgba(7, 23, 34, 0.2);
}

.contact-original__departments::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        #061923;
    background-size: 46px 46px;
}

.contact-original__departments article {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    border: 0;
    color: #fff;
    background: rgba(6, 25, 35, 0.88);
    transition: background 360ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.contact-original__departments article::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    background: var(--signal);
    transform: scaleX(0.12);
    transform-origin: left;
    transition: transform 420ms ease;
}

.contact-original__departments article:hover,
.contact-original__departments article:focus-within {
    z-index: 2;
    background: rgba(10, 37, 51, 0.98);
    transform: translateY(-10px);
}

.contact-original__departments article:hover::after,
.contact-original__departments article:focus-within::after {
    transform: scaleX(1);
}

.contact-original__departments article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #061923;
    background: var(--signal);
    font-size: 12px;
    font-weight: 900;
}

.contact-original__departments h3 {
    align-self: auto;
    max-width: 320px;
    margin: 52px 0 26px;
    color: #fff;
    font-size: clamp(23px, 2.2vw, 33px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.contact-original__departments a {
    grid-column: auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.contact-original__departments a:hover,
.contact-original__departments a:focus-visible {
    color: var(--signal);
}

@media (max-width: 1100px) {
    .project-archive-card,
    .project-archive-card:nth-child(5n + 1),
    .project-archive-card:nth-child(5n + 2),
    .project-archive-card:nth-child(5n + 4),
    .project-archive-card:nth-child(5n + 5),
    .project-archive-card:nth-child(6n + 1),
    .project-archive-card:nth-child(6n + 2),
    .project-archive-card:nth-child(6n + 6) {
        grid-column: span 6;
        min-height: 510px;
    }

    .project-archive-card:nth-child(4n + 1) {
        grid-column: span 12;
        min-height: 570px;
    }

    .contact-original__card:nth-child(1) {
        grid-column: span 12;
        min-height: 360px;
    }

    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        grid-column: span 6;
    }

    .contact-original__departments article {
        padding: 32px;
    }
}

@media (max-width: 780px) {
    .engineering-hero {
        min-height: 760px;
    }

    .technical-frame,
    .technical-frame__image {
        border-radius: 24px 24px 24px 7px;
    }

    .project-archive-hero,
    .contact-original-hero,
    .project-archive-hero__content,
    .contact-original-hero__content {
        min-height: 520px;
    }

    .project-archive-hero__media,
    .contact-original-hero__media {
        left: 0;
        width: 100%;
        clip-path: none;
    }

    .project-archive-hero::before,
    .contact-original-hero::before {
        background: linear-gradient(90deg, rgba(6, 25, 35, 0.97), rgba(6, 25, 35, 0.68));
    }

    .project-archive-hero::after,
    .contact-original-hero::after {
        width: 100%;
        clip-path: none;
    }

    .project-archive-hero__structure span:nth-child(1),
    .contact-original-hero__structure span:nth-child(1) {
        right: 24px;
        width: 84px;
        height: 84px;
    }

    .project-archive-hero__structure span:nth-child(3),
    .contact-original-hero__structure span:nth-child(3) {
        left: 70%;
    }

    .project-archive-hero__content,
    .contact-original-hero__content {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .project-archive-hero h1,
    .contact-original-hero h1 {
        max-width: calc(100% - 16px);
        font-size: clamp(62px, 18vw, 98px);
        line-height: 0.86;
    }

    .project-archive {
        padding-block: 72px 96px;
    }

    .project-filter {
        top: 77px;
        width: calc(100vw - 32px);
        margin-bottom: 48px;
    }

    .project-archive-card,
    .project-archive-card:nth-child(5n + 1),
    .project-archive-card:nth-child(5n + 2),
    .project-archive-card:nth-child(5n + 4),
    .project-archive-card:nth-child(5n + 5),
    .project-archive-card:nth-child(6n + 1),
    .project-archive-card:nth-child(6n + 2),
    .project-archive-card:nth-child(6n + 6),
    .project-archive-card:nth-child(4n + 1) {
        grid-column: span 12;
        min-height: clamp(430px, 116vw, 540px);
    }

    .project-archive-card__content {
        padding: 28px 28px 32px;
    }

    .project-archive-card__content::before {
        right: 28px;
        left: 28px;
    }

    .project-archive-card__content h2,
    .project-archive-card:nth-child(6n + 2) .project-archive-card__content h2,
    .project-archive-card:not(:nth-child(6n + 1)):not(:nth-child(6n + 6)) .project-archive-card__content h2 {
        font-size: clamp(27px, 8vw, 38px);
    }

    .contact-original {
        padding-block: 86px 104px;
    }

    .contact-original__heading {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 24px;
    }

    .contact-original__heading > span {
        width: 72px;
        height: 72px;
        box-shadow: 10px 10px 0 #061923;
    }

    .contact-original__heading h2 {
        font-size: clamp(45px, 12vw, 72px);
    }

    .contact-original__card,
    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        grid-column: span 12;
        min-height: 310px;
        padding: 32px;
    }

    .contact-original__departments {
        grid-template-columns: 1fr;
    }

    .contact-original__departments article {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .project-archive-hero,
    .contact-original-hero,
    .project-archive-hero__content,
    .contact-original-hero__content {
        min-height: 470px;
    }

    .project-archive-hero h1,
    .contact-original-hero h1 {
        font-size: clamp(54px, 17vw, 74px);
    }

    .contact-original-hero h1 {
        font-size: clamp(48px, 13.6vw, 56px);
        white-space: normal;
    }

    .project-filter {
        width: calc(100vw - 20px);
        margin-left: calc(50% - 50vw + 10px);
        border-radius: 0;
    }

    .project-filter__button {
        min-height: 44px;
        padding-inline: 17px;
        font-size: 10px;
    }

    .project-archive__grid {
        gap: 16px;
    }

    .project-archive-card__index {
        top: 22px;
        right: 22px;
        width: 42px;
        height: 42px;
    }

    .contact-original__heading {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px;
    }

    .contact-original__heading > span {
        width: 52px;
        height: 52px;
        box-shadow: 7px 7px 0 #061923;
    }

    .contact-original__heading > span::before {
        width: 40px;
    }

    .contact-original__heading > span::after {
        height: 40px;
    }

    .contact-original__heading h2 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .contact-original__card,
    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3),
    .contact-original__departments article {
        min-height: 270px;
        padding: 27px;
    }

    .contact-original__icon {
        width: 60px;
        height: 60px;
    }

    .contact-original__departments h3 {
        margin-top: 42px;
        font-size: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .technical-frame__image img,
    .technical-frame__image::after,
    .technical-frame__sheen,
    .project-archive-card::before,
    .project-archive-card::after,
    .project-archive-card__media img,
    .project-archive-card__content,
    .contact-original__card,
    .contact-original__departments article {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* Final cascade authority for the interactive refinement. */
.site-v2 .primary-nav > ul {
    overflow: visible;
    clip-path: none;
}

.site-v2 .nav-dropdown {
    z-index: 80;
}

.about-original__stat {
    z-index: 4;
    width: 214px;
    min-height: 184px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.2);
    border-radius: 26px 26px 7px 26px;
    clip-path: none;
    box-shadow: 0 24px 54px rgba(7, 23, 34, 0.24);
}

.about-original__stat::before {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.about-original__stat strong {
    font-size: 52px;
}

.help-item,
.help-item:nth-child(odd),
.help-item:nth-child(even) {
    min-height: 224px;
    padding: 26px;
    border: 1px solid rgba(7, 23, 34, 0.13);
    border-radius: 18px 18px 4px 18px;
}

.contact-original {
    color: #fff;
    background:
        radial-gradient(circle at 86% 16%, rgba(212, 223, 32, 0.1), transparent 28%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        #031018;
    background-size: auto, 58px 58px, 58px 58px, auto;
}

.contact-original::before {
    width: 7px;
    background: var(--signal);
}

.contact-original__heading {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 30px;
}

.contact-original__heading > span {
    width: 84px;
    height: 84px;
    border-color: rgba(212, 223, 32, 0.5);
    background: transparent;
    box-shadow: 12px 12px 0 var(--signal);
}

.contact-original__heading > span::before,
.contact-original__heading > span::after {
    background: var(--signal);
}

.contact-original__heading h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(52px, 6.4vw, 88px);
    line-height: .92;
}

.contact-original__primary {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 16px;
}

.contact-original__card,
.contact-original__card:nth-child(1),
.contact-original__card:nth-child(2),
.contact-original__card:nth-child(3) {
    min-height: 0;
    padding: 36px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px 24px 6px 24px;
    background: rgba(9, 36, 49, 0.78);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-original__card:nth-child(1) {
    grid-column: span 7;
    grid-row: 1 / 3;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        rgba(9, 36, 49, 0.86);
    background-size: 42px 42px;
}

.contact-original__card:nth-child(2),
.contact-original__card:nth-child(3) {
    grid-column: span 5;
}

.contact-original__card:nth-child(3) {
    color: #071722;
    border-color: var(--signal);
    background: var(--signal);
}

.contact-original__card:hover,
.contact-original__card:focus-within {
    border-color: var(--signal);
    box-shadow: 0 34px 72px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
}

.contact-original__icon,
.contact-original__card:nth-child(3) .contact-original__icon {
    width: 64px;
    height: 64px;
    color: #071722;
    border: 0;
    border-radius: 16px 16px 4px 16px;
    background: var(--signal);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);
}

.contact-original__card:nth-child(3) .contact-original__icon {
    color: #fff;
    background: #071722;
}

.contact-original__card h3,
.contact-original__card p {
    color: inherit;
}

.contact-original__card p {
    font-size: clamp(20px, 2.1vw, 30px);
}

.contact-original__card:nth-child(3) p {
    font-size: clamp(18px, 1.65vw, 24px);
    overflow-wrap: anywhere;
}

.contact-original__departments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact-original__departments::before {
    display: none;
}

.contact-original__departments article {
    min-height: 270px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px 20px 5px 20px;
    background: rgba(255, 255, 255, 0.055);
}

.contact-original__departments article:hover,
.contact-original__departments article:focus-within {
    border-color: rgba(212, 223, 32, 0.72);
    background: rgba(9, 36, 49, 0.98);
}

.contact-original__departments h3 {
    margin: 34px 0 24px;
    color: #fff;
    font-size: clamp(22px, 2vw, 29px);
}

.contact-original__departments a {
    color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 900px) {
    .site-v2 .nav-dropdown {
        z-index: auto;
        width: auto;
        margin: 8px 18px 16px;
        padding: 8px 8px 8px 16px !important;
        border: 0;
        border-left: 3px solid var(--signal);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.045);
        transform: none;
    }

    .about-original__visual {
        position: relative;
        top: auto;
    }

    .about-original__stat {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 30px);
        min-height: 132px;
        margin: -54px auto 0;
        padding: 26px 28px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        border-radius: 22px 22px 6px 22px;
    }

    .about-original__stat strong {
        font-size: 48px;
    }

    .about-original__stat-orbit {
        top: auto;
        right: 31px;
        bottom: 29px;
        left: auto;
    }

    .about-original__stat span:not(.about-original__stat-orbit) {
        max-width: 110px;
        margin-top: 0;
    }

    .contact-original__primary {
        grid-template-rows: auto;
    }

    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        grid-column: span 12;
        grid-row: auto;
        min-height: 280px;
    }

    .contact-original__departments {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .help-item,
    .help-item:nth-child(odd),
    .help-item:nth-child(even) {
        min-height: 190px;
        padding: 24px;
    }

    .contact-original__heading {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 20px;
    }

    .contact-original__heading > span {
        width: 58px;
        height: 58px;
        box-shadow: 8px 8px 0 var(--signal);
    }

    .contact-original__heading h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .contact-original__card,
    .contact-original__card:nth-child(1),
    .contact-original__card:nth-child(2),
    .contact-original__card:nth-child(3) {
        min-height: 260px;
        padding: 28px;
        border-radius: 19px 19px 5px 19px;
    }

    .contact-original__departments article {
        min-height: 235px;
        padding: 28px;
        border-radius: 17px 17px 5px 17px;
    }
}

.scope-original {
    color: #fff;
    background: #031018;
}

.scope-original > .shell > h2 {
    color: #fff;
}

.scope-original__field {
    background: transparent;
}

@media (max-width: 1100px) {
    .counter-original__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .counter-original__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-block: 18px;
    }

    .counter-original__item {
        min-height: 255px;
        padding: 27px 20px;
        border-radius: 4px 17px 4px 4px;
    }

    .counter-original__dial {
        top: 27px;
        left: 20px;
        width: 98px;
        height: 98px;
    }

    .counter-original__item strong {
        font-size: clamp(50px, 15vw, 64px);
    }

    .counter-original__label {
        max-width: 112px;
        font-size: 9px;
    }

    .counter-original__pulse {
        right: 18px;
        bottom: 23px;
        width: 26px;
    }
}

/* ========================================================================== 
   Component containment fixes — floating contact, client orbit and counters
   ========================================================================== */

.site-v2 .floating-contact {
    position: fixed;
    top: auto;
    right: clamp(18px, 2vw, 30px);
    bottom: clamp(18px, 2vw, 30px);
    left: auto;
    z-index: 120;
    width: auto;
    max-width: calc(100vw - 36px);
    min-height: 58px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    color: #071722;
    border: 1px solid rgba(7, 23, 34, 0.38);
    border-radius: 5px 19px 5px 19px;
    background: var(--signal);
    box-shadow:
        0 18px 42px rgba(3, 16, 24, 0.34),
        0 0 0 5px rgba(212, 223, 32, 0.16),
        inset 0 -4px 0 rgba(7, 23, 34, 0.14);
    isolation: isolate;
    transform: translateZ(0);
}

.site-v2 .floating-contact::after {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: #071722;
    box-shadow: 0 0 0 4px rgba(7, 23, 34, 0.1);
}

.site-v2 .floating-contact:hover,
.site-v2 .floating-contact:focus-visible {
    color: #fff;
    border-color: var(--signal);
    background: #071722;
    box-shadow:
        0 22px 48px rgba(3, 16, 24, 0.42),
        0 0 0 5px rgba(212, 223, 32, 0.22);
    transform: translateY(-5px) translateZ(0);
}

.site-v2 .floating-contact:hover::after,
.site-v2 .floating-contact:focus-visible::after {
    background: var(--signal);
    box-shadow: 0 0 0 4px rgba(212, 223, 32, 0.14);
}

.site-v2 .logo-orbit__item {
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.site-v2 .logo-orbit__media {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.site-v2 .logo-orbit__item > .logo-orbit__media > img {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform-origin: center;
}

.site-v2 .logo-orbit__item.is-active > .logo-orbit__media > img,
.site-v2 .logo-orbit__item:hover > .logo-orbit__media > img {
    transform: scale(1.018);
}

.site-v2 .counter-original__item {
    justify-content: flex-end;
}

.site-v2 .counter-original__dial {
    top: 28px;
    right: 30px;
    left: auto;
    width: 82px;
    height: 82px;
    margin-top: 0;
    opacity: 0;
}

.site-v2 .counter-original__item strong {
    width: 100%;
    margin: 0;
    line-height: 0.84;
}

@media (max-width: 640px) {
    .site-v2 .floating-contact {
        right: 15px;
        bottom: 15px;
        width: 56px;
        max-width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 4px 16px 4px 16px;
    }

    .site-v2 .floating-contact span {
        display: none;
    }

    .site-v2 .counter-original__item,
    .site-v2 .counter-original__item:first-child,
    .site-v2 .counter-original__item:nth-child(2) {
        min-height: 230px;
        padding: 27px 20px;
    }

    .site-v2 .counter-original__dial {
        top: 22px;
        right: 18px;
        left: auto;
        width: 72px;
        height: 72px;
        margin-top: 0;
    }

    .site-v2 .logo-orbit__item {
        padding: 22px;
    }
}

/* ========================================================================== 
   Progressive image loading and interactive engineering hero
   ========================================================================== */

:root {
    --image-skeleton-base: #dfe2dc;
    --image-skeleton-line: rgba(7, 23, 34, 0.065);
    --image-skeleton-shine: rgba(255, 255, 255, 0.72);
}

.site-header,
.site-footer,
.home-hero,
.page-hero,
.detail-hero,
.project-archive-hero,
.contact-original-hero,
.service-console-hero,
.service-console,
.counter-original,
.quote-original,
.contact-intro-original {
    --image-skeleton-base: #102733;
    --image-skeleton-line: rgba(255, 255, 255, 0.055);
    --image-skeleton-shine: rgba(212, 223, 32, 0.16);
}

html.has-js img.image-loading,
html.has-js img:not(.image-loaded):not(.image-error) {
    color: transparent;
    background-color: var(--image-skeleton-base);
    background-image:
        linear-gradient(105deg, transparent 32%, var(--image-skeleton-shine) 47%, transparent 62%),
        linear-gradient(var(--image-skeleton-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--image-skeleton-line) 1px, transparent 1px);
    background-position: -170% 0, 0 0, 0 0;
    background-size: 240% 100%, 28px 28px, 28px 28px;
    animation: image-skeleton-shimmer 1.35s linear infinite;
}

html.has-js img.image-loaded {
    background-color: transparent;
    background-image: none;
    animation: image-decoded-in 520ms cubic-bezier(.2, .8, .2, 1) both;
}

html.has-js img.image-error {
    background:
        repeating-linear-gradient(135deg, rgba(7, 23, 34, 0.08) 0 9px, transparent 9px 18px),
        var(--image-skeleton-base);
}

html.has-js .logo-orbit__item > .logo-orbit__media > img.image-loading,
html.has-js .logo-orbit__item > .logo-orbit__media > img:not(.image-loaded):not(.image-error) {
    width: 100%;
    height: 100%;
}

.capability-row {
    --image-skeleton-base: #102733;
    --image-skeleton-line: rgba(255, 255, 255, 0.055);
    --image-skeleton-shine: rgba(212, 223, 32, 0.16);
}

.capability-row::before {
    background-image: linear-gradient(90deg, rgba(4, 18, 26, 0.98) 0%, rgba(4, 18, 26, 0.94) 46%, rgba(4, 18, 26, 0.44) 100%);
}

.capability-row__media {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 350ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.capability-row:hover .capability-row__media,
.capability-row:focus-visible .capability-row__media {
    opacity: 1;
    transform: scale(1);
}

.service-console-hero__media {
    background: none;
}

@keyframes image-skeleton-shimmer {
    to { background-position: 170% 0, 0 0, 0 0; }
}

@keyframes image-decoded-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.engineering-hero {
    --hero-pointer-x: 76%;
    --hero-pointer-y: 43%;
    --hero-image-x: 0px;
    --hero-image-y: 0px;
    --hero-plane-x: 0px;
    --hero-plane-y: 0px;
    --hero-plane-back-x: 0px;
    --hero-plane-back-y: 0px;
    --hero-framework-x: 0px;
    --hero-framework-y: 0px;
}

.engineering-hero .home-hero__media {
    object-position: 54% center;
    filter: saturate(0.88) contrast(1.08) brightness(0.92);
    transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(1.045);
    transform-origin: center;
    will-change: transform;
    transition: transform 260ms cubic-bezier(.2, .8, .2, 1), filter 480ms ease;
}

.engineering-hero:hover .home-hero__media,
.engineering-hero:focus-within .home-hero__media {
    filter: saturate(1.02) contrast(1.09) brightness(0.98);
}

.engineering-hero__interaction {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(460px circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(212, 223, 32, 0.115), transparent 68%);
    transition: background-position 180ms ease;
}

.engineering-hero__interaction::before {
    position: absolute;
    top: var(--hero-pointer-y);
    right: 0;
    left: 42%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(212, 223, 32, 0.22), transparent);
    opacity: 0;
    transition: opacity 260ms ease;
}

.engineering-hero.is-interacting .engineering-hero__interaction::before {
    opacity: 1;
}

.engineering-hero__scan {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 43%;
    width: 1px;
    display: block;
    background: linear-gradient(transparent 7%, rgba(212, 223, 32, 0.5) 42%, transparent 86%);
    box-shadow: 0 0 20px rgba(212, 223, 32, 0.18);
    opacity: 0.46;
    animation: hero-engineering-scan 7.5s cubic-bezier(.45, 0, .55, 1) infinite;
}

.engineering-hero__reticle {
    position: absolute;
    top: var(--hero-pointer-y);
    left: var(--hero-pointer-x);
    width: 64px;
    height: 64px;
    display: block;
    border: 1px solid rgba(212, 223, 32, 0.62);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(212, 223, 32, 0.045), inset 0 0 22px rgba(212, 223, 32, 0.08);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: top 90ms linear, left 90ms linear, opacity 240ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.engineering-hero__reticle::before,
.engineering-hero__reticle::after,
.engineering-hero__reticle i {
    position: absolute;
    content: "";
    background: rgba(212, 223, 32, 0.72);
}

.engineering-hero__reticle::before {
    top: 50%;
    right: -14px;
    left: -14px;
    height: 1px;
}

.engineering-hero__reticle::after {
    top: -14px;
    bottom: -14px;
    left: 50%;
    width: 1px;
}

.engineering-hero__reticle i:first-child {
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.engineering-hero__reticle i:last-child {
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--signal);
    border-right: 1px solid var(--signal);
    background: transparent;
}

.engineering-hero.is-interacting .engineering-hero__reticle {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

.engineering-hero__plane--one {
    transform: translate3d(var(--hero-plane-x), var(--hero-plane-y), 0) skewX(-15deg);
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.engineering-hero__plane--two {
    transform: translate3d(var(--hero-plane-back-x), var(--hero-plane-back-y), 0);
    transition: transform 340ms cubic-bezier(.2, .8, .2, 1);
}

.engineering-hero__framework {
    transform: translate3d(var(--hero-framework-x), var(--hero-framework-y), 0);
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

@keyframes hero-engineering-scan {
    0%, 12% { transform: translateX(0); opacity: 0; }
    22% { opacity: 0.46; }
    76% { opacity: 0.46; }
    88%, 100% { transform: translateX(50vw); opacity: 0; }
}

@media (max-width: 900px) {
    .engineering-hero .home-hero__media {
        object-position: 70% center;
    }

    .engineering-hero__reticle {
        display: none;
    }

    .engineering-hero__interaction {
        background: radial-gradient(340px circle at 74% 42%, rgba(212, 223, 32, 0.09), transparent 70%);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.has-js img.image-loading,
    html.has-js img:not(.image-loaded):not(.image-error),
    html.has-js img.image-loaded,
    .engineering-hero__scan {
        animation: none;
    }

    .engineering-hero .home-hero__media,
    .engineering-hero__plane,
    .engineering-hero__framework {
        transform: none;
        transition: none;
    }
}

/* Authoritative capability deck cascade. */
html.has-js img.image-loaded {
    animation: image-decoded-in 520ms cubic-bezier(.2, .8, .2, 1);
}

.capability-index-section {
    color: #fff;
    background:
        radial-gradient(circle at 86% 14%, rgba(212, 223, 32, 0.09), transparent 25%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #04121a;
    background-size: auto, 56px 56px, 56px 56px, auto;
}

.capability-index-heading {
    margin-bottom: clamp(42px, 5vw, 72px);
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.capability-index-heading .eyebrow {
    color: var(--signal);
}

.capability-index-heading h2 {
    color: #fff;
}

.capability-index {
    display: grid;
    gap: 12px;
    border-top: 0;
}

.capability-row {
    min-height: 188px;
    padding: 28px 30px;
    grid-template-columns: 64px minmax(220px, 0.78fr) minmax(330px, 1.22fr) 132px;
    gap: 28px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px 22px 4px 4px;
    background: rgba(7, 29, 40, 0.88);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
    transform: translateZ(0);
    transition: border-color 360ms ease, box-shadow 420ms ease, background-color 360ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.capability-row::before {
    opacity: 1;
    background-image: linear-gradient(90deg, rgba(4, 18, 26, 0.97) 0%, rgba(4, 18, 26, 0.89) 43%, rgba(4, 18, 26, 0.48) 100%);
    transform: none;
}

.capability-row::after {
    opacity: 0.28;
    transform: none;
}

.capability-row__media,
.capability-row__media.image-loaded {
    opacity: 0.24;
    filter: grayscale(1) saturate(0.45) contrast(1.08) brightness(0.78);
    transform: scale(1.025);
    animation: none;
    transition: opacity 420ms ease, filter 520ms ease, transform 760ms cubic-bezier(.2, .8, .2, 1);
}

.capability-row:hover,
.capability-row:focus-visible {
    min-height: 188px;
    padding-block: 28px;
    color: #fff;
    border-color: rgba(212, 223, 32, 0.74);
    background: rgba(7, 29, 40, 0.98);
    box-shadow: 0 25px 64px rgba(0, 0, 0, 0.25), inset 4px 0 0 var(--signal);
    transform: translateY(-3px);
}

.capability-row:hover::before,
.capability-row:focus-visible::before {
    opacity: 1;
    background-image: linear-gradient(90deg, rgba(4, 18, 26, 0.97) 0%, rgba(4, 18, 26, 0.84) 42%, rgba(4, 18, 26, 0.28) 100%);
    transform: none;
}

.capability-row:hover::after,
.capability-row:focus-visible::after {
    opacity: 0.52;
    transform: none;
}

.capability-row:hover .capability-row__media,
.capability-row:focus-visible .capability-row__media,
.capability-row:hover .capability-row__media.image-loaded,
.capability-row:focus-visible .capability-row__media.image-loaded {
    opacity: 0.68;
    filter: grayscale(0) saturate(0.96) contrast(1.06) brightness(0.9);
    transform: scale(1);
}

.capability-row__number {
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    align-self: center;
    color: var(--signal);
    border: 1px solid rgba(212, 223, 32, 0.48);
    border-radius: 3px 14px 3px 3px;
    background: rgba(3, 16, 24, 0.58);
    box-shadow: 7px 7px 0 rgba(212, 223, 32, 0.08);
}

.capability-row:hover .capability-row__number,
.capability-row:focus-visible .capability-row__number {
    color: #061923;
    background: var(--signal);
    box-shadow: 7px 7px 0 rgba(3, 16, 24, 0.42);
}

.capability-row h3 {
    color: #fff;
    line-height: 1.02;
}

.capability-row p,
.capability-row:hover p,
.capability-row:focus-visible p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.capability-row__link {
    min-height: 46px;
    padding: 0 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.capability-row:hover .capability-row__link,
.capability-row:focus-visible .capability-row__link {
    color: var(--signal);
    border-color: var(--signal);
    background: rgba(212, 223, 32, 0.06);
}

@media (max-width: 1100px) {
    .capability-row {
        min-height: 210px;
        grid-template-columns: 58px minmax(0, 1fr) 112px;
        gap: 22px;
    }

    .capability-row:hover,
    .capability-row:focus-visible {
        min-height: 210px;
        padding-block: 28px;
    }

    .capability-row p {
        grid-column: 2 / -1;
    }

    .capability-row__link {
        grid-column: 3;
        grid-row: 1;
    }
}

@media (max-width: 640px) {
    .capability-index-heading {
        padding-bottom: 22px;
    }

    .capability-index {
        gap: 10px;
    }

    .capability-row,
    .capability-row:hover,
    .capability-row:focus-visible {
        min-height: 260px;
        padding: 24px 22px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px 16px;
        border-radius: 4px 18px 4px 4px;
        transform: none;
    }

    .capability-row::before,
    .capability-row:hover::before,
    .capability-row:focus-visible::before {
        background-image: linear-gradient(180deg, rgba(4, 18, 26, 0.82), rgba(4, 18, 26, 0.98));
    }

    .capability-row__media,
    .capability-row__media.image-loaded {
        opacity: 0.22;
    }

    .capability-row h3 {
        grid-column: 2;
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .capability-row p {
        grid-column: 1 / -1;
        font-size: 13px;
        line-height: 1.65;
    }

    .capability-row__link {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
}

/* ========================================================================== 
   Homepage quality dossier + compact mobile questions console
   ========================================================================== */

.home-page .about-original {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(212, 223, 32, 0.12), transparent 23%),
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #eef0e9;
    background-size: auto, 58px 58px, 58px 58px, auto;
}

.about-original__structure {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-original__structure span {
    position: absolute;
    display: block;
}

.about-original__structure span:nth-child(1) {
    top: 0;
    left: 7%;
    width: 1px;
    height: 100%;
    background: rgba(7, 23, 34, 0.1);
}

.about-original__structure span:nth-child(2) {
    top: 72px;
    right: -130px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(7, 23, 34, 0.12);
    border-radius: 50%;
}

.about-original__structure span:nth-child(3) {
    top: 67px;
    right: 168px;
    width: 11px;
    height: 11px;
    border: 1px solid var(--signal);
    transform: rotate(45deg);
}

.home-page .about-original__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(26px, 3vw, 44px);
    align-items: stretch;
}

.home-page .about-original__visual {
    min-height: 980px;
}

.home-page .technical-frame,
.home-page .technical-frame__image,
.home-page .technical-frame__image img {
    height: 100%;
    min-height: 980px;
}

.home-page .technical-frame__image img {
    width: 100%;
    object-fit: cover;
}

.home-page .about-original__content {
    position: relative;
    padding: clamp(40px, 4.6vw, 66px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        #061923;
    background-size: 46px 46px;
    border: 1px solid rgba(7, 23, 34, 0.28);
    border-radius: 30px 30px 8px 30px;
    box-shadow: 0 36px 82px rgba(7, 23, 34, 0.2);
    isolation: isolate;
}

.home-page .about-original__content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 136px;
    height: 136px;
    border-top: 1px solid rgba(212, 223, 32, 0.46);
    border-right: 1px solid rgba(212, 223, 32, 0.46);
    border-radius: 0 30px 0 0;
    pointer-events: none;
}

.home-page .about-original__content::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: var(--signal);
    transform: rotate(45deg);
}

.about-original__heading {
    position: relative;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.home-page .about-original__heading .eyebrow {
    color: var(--signal);
}

.home-page .about-original__heading h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 5.6vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.home-page .about-original__heading h2 span {
    display: block;
}

.home-page .about-original__heading h2 span:last-child {
    color: var(--signal);
}

.about-original__narrative {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.home-page .about-original__narrative p {
    position: relative;
    margin: 0;
    padding: 22px 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    line-height: 1.72;
}

.home-page .about-original__narrative p::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 52px;
    height: 2px;
    background: var(--signal);
}

.home-page .about-original__content > h3 {
    margin: 42px 0 19px;
    padding-bottom: 17px;
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.home-page .about-original__content .help-grid {
    gap: 10px;
}

.home-page .about-original__content .help-item,
.home-page .about-original__content .help-item:nth-child(odd),
.home-page .about-original__content .help-item:nth-child(even) {
    min-height: 202px;
    padding: 23px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
}

.home-page .about-original__content .help-item::before {
    background: linear-gradient(135deg, rgba(212, 223, 32, 0.16), rgba(9, 38, 52, 0.98));
}

.home-page .about-original__content .help-item h4 {
    color: #fff;
}

.home-page .about-original__content .help-item p {
    color: rgba(255, 255, 255, 0.62);
}

.home-page .about-original__content .help-item:hover,
.home-page .about-original__content .help-item:focus-within {
    border-color: rgba(212, 223, 32, 0.68);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

/* ========================================================================== 
   Service details — engineering dossier
   ========================================================================== */

.service-detail-page {
    --dossier-deep: #03131c;
    --dossier-panel: #082430;
}

.service-dossier-hero {
    --image-skeleton-base: #102733;
    --image-skeleton-line: rgba(255, 255, 255, 0.055);
    --image-skeleton-shine: rgba(212, 223, 32, 0.16);
    min-height: clamp(680px, 78svh, 820px);
    align-items: stretch;
    background: var(--dossier-deep);
}

.service-dossier-hero::before {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(3, 19, 28, 0.99) 0%, rgba(3, 19, 28, 0.94) 40%, rgba(3, 19, 28, 0.56) 70%, rgba(3, 19, 28, 0.34) 100%),
        linear-gradient(0deg, rgba(3, 19, 28, 0.86), transparent 58%);
}

.service-dossier-hero .detail-hero__media {
    inset: 0 0 0 auto;
    width: 72%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
    filter: saturate(0.68) contrast(1.12) brightness(0.82);
    transform: scale(1.025);
    transition: transform 1.1s cubic-bezier(.22, 1, .36, 1), filter 700ms ease;
}

.service-dossier-hero:hover .detail-hero__media {
    filter: saturate(0.84) contrast(1.08) brightness(0.88);
    transform: scale(1.01);
}

.service-dossier-hero .detail-hero__blueprint {
    z-index: 0;
    opacity: 0.42;
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 90%);
}

.service-dossier-hero__structure {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.service-dossier-hero__structure span {
    position: absolute;
    display: block;
}

.service-dossier-hero__structure span:nth-child(1) { top: 0; bottom: 0; left: 47%; width: 1px; background: linear-gradient(transparent, rgba(212, 223, 32, 0.66), transparent); transform: rotate(11deg); }
.service-dossier-hero__structure span:nth-child(2) { right: 5%; bottom: 8%; width: 148px; height: 148px; border-right: 1px solid rgba(255, 255, 255, 0.35); border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.service-dossier-hero__structure span:nth-child(3) { right: calc(5% + 141px); bottom: calc(8% - 7px); width: 14px; height: 14px; background: var(--signal); }
.service-dossier-hero__structure span:nth-child(4) { right: 0; bottom: 0; width: 34%; height: 8px; background: var(--signal); }

.service-dossier-hero .detail-hero__inner {
    position: relative;
    z-index: 2;
    min-height: clamp(680px, 78svh, 820px);
    padding-block: 136px 72px;
    display: flex;
    align-items: flex-end;
}

.service-dossier-hero__frame {
    position: relative;
    width: min(930px, 82%);
    padding: 34px 42px 40px;
    border-left: 5px solid var(--signal);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 19, 28, 0.68);
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.service-dossier-hero__number {
    position: absolute;
    top: 24px;
    right: 26px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--signal);
    border: 1px solid rgba(212, 223, 32, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-dossier-hero .breadcrumbs {
    margin-bottom: 24px;
}

.service-dossier-hero h1 {
    max-width: 850px;
    margin: 0;
    padding-right: 56px;
    font-size: clamp(60px, 7.6vw, 112px);
    line-height: 0.88;
    letter-spacing: -0.07em;
    text-wrap: balance;
}

.service-dossier-overview {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #eef0e9;
    background-size: 58px 58px;
}

.service-dossier-overview__structure,
.service-dossier-description__structure,
.service-dossier-faq__structure {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-dossier-overview__structure span,
.service-dossier-description__structure span,
.service-dossier-faq__structure span {
    position: absolute;
    display: block;
}

.service-dossier-overview__structure span:nth-child(1) { top: 0; right: 8%; width: 8px; height: 130px; background: var(--signal); }
.service-dossier-overview__structure span:nth-child(2) { top: 11%; right: -104px; width: 280px; height: 280px; border: 1px solid rgba(7, 23, 34, 0.13); transform: rotate(45deg); }
.service-dossier-overview__structure span:nth-child(3) { top: 0; bottom: 0; left: 5%; width: 1px; background: rgba(7, 23, 34, 0.1); }

.service-dossier-overview .service-detail-overview__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(50px, 7vw, 96px);
    align-items: start;
}

.service-dossier-overview .service-detail-overview__media {
    position: sticky;
    top: 122px;
    min-height: 760px;
    overflow: hidden;
    border-radius: 26px 26px 6px 26px;
    box-shadow: 0 34px 76px rgba(7, 23, 34, 0.2);
}

.service-dossier-overview .service-detail-overview__media::before {
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: inherit;
    pointer-events: none;
}

.service-dossier-overview .service-detail-overview__media::after {
    z-index: 2;
    opacity: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 46px 46px;
    transition: opacity 420ms ease;
}

.service-dossier-overview .service-detail-overview__media:hover::after {
    opacity: 1;
}

.service-dossier-overview .service-detail-overview__media img {
    border-radius: inherit;
    clip-path: none;
    transition: transform 800ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
}

.service-dossier-overview .service-detail-overview__media:hover img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.035);
}

.service-detail-overview__scan {
    position: absolute;
    top: -20%;
    right: 0;
    left: 0;
    z-index: 3;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--signal), transparent);
    opacity: 0;
    pointer-events: none;
}

.service-detail-overview__media:hover .service-detail-overview__scan {
    opacity: 0.75;
    animation: service-dossier-scan 2.2s ease-in-out;
}

.service-dossier-overview .service-detail-overview__marker {
    right: 18px;
    bottom: 18px;
    z-index: 4;
}

.service-dossier-overview .service-detail-overview__content {
    padding-top: 12px;
}

.service-dossier-overview .service-detail-overview__content .eyebrow {
    color: var(--accent-dark);
}

.service-dossier-overview .service-detail-overview__content h2 {
    margin-bottom: 28px;
    font-size: clamp(58px, 6.6vw, 94px);
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.service-dossier-overview .service-detail-overview__summary {
    padding-left: 22px;
    border-left: 3px solid var(--signal);
    font-size: clamp(17px, 1.65vw, 20px);
    line-height: 1.72;
}

.service-dossier-overview .service-detail-overview__content > h3 {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(7, 23, 34, 0.2);
    border-bottom: 1px solid rgba(7, 23, 34, 0.2);
}

.service-dossier-overview .service-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
}

.service-dossier-overview .service-feature-list__item {
    position: relative;
    min-height: 118px;
    padding: 20px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.14);
    border-radius: 15px 15px 4px 15px;
    background: rgba(255, 255, 255, 0.68);
    transition: color 320ms ease, background 320ms ease, transform 360ms cubic-bezier(.22, 1, .36, 1), border-color 320ms ease;
}

.service-dossier-overview .service-feature-list__item i {
    position: absolute;
    right: 18px;
    bottom: 13px;
    width: 28px;
    height: 3px;
    background: var(--signal);
    transition: width 320ms ease;
}

.service-dossier-overview .service-feature-list__item:hover {
    color: #fff;
    border-color: var(--dossier-panel);
    background: var(--dossier-panel);
    transform: translateY(-5px);
}

.service-dossier-overview .service-feature-list__item:hover span {
    color: var(--signal);
}

.service-dossier-overview .service-feature-list__item:hover i {
    width: 60px;
}

.service-dossier-description {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(212, 223, 32, 0.09), transparent 24%),
        #03131c;
}

.service-dossier-description__structure span:nth-child(1) { top: 0; bottom: 0; left: 35%; width: 1px; background: rgba(212, 223, 32, 0.2); transform: skewX(-9deg); }
.service-dossier-description__structure span:nth-child(2) { top: 8%; right: 5%; width: 190px; height: 190px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.service-dossier-description__structure span:nth-child(3) { right: 5%; bottom: 7%; width: 12px; height: 12px; border: 1px solid var(--signal); transform: rotate(45deg); }

.service-dossier-description .service-description-original__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(64px, 9vw, 140px);
}

.service-dossier-description__heading {
    position: sticky;
    top: 126px;
    align-self: start;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-dossier-description__node {
    width: 56px;
    height: 56px;
    margin-bottom: 42px;
    display: block;
    border: 1px solid rgba(212, 223, 32, 0.68);
    transform: rotate(45deg);
}

.service-dossier-description h2 {
    color: #fff;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: 0.93;
    letter-spacing: -0.06em;
}

.service-dossier-description .service-description-original__copy {
    max-width: none;
    columns: 2 300px;
    column-gap: clamp(34px, 4vw, 58px);
    column-rule: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.82;
}

.service-dossier-description .service-description-original__copy p {
    margin: 0 0 30px;
    break-inside: avoid;
}

.service-dossier-description .service-description-original__copy p::first-letter {
    color: var(--signal);
    font-size: 1.08em;
}

.service-dossier-faq {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 34, 0.045) 1px, transparent 1px),
        #f1f2ec;
    background-size: 58px 58px;
}

.service-dossier-faq__structure span:first-child { top: 0; right: 9%; width: 8px; height: 116px; background: var(--signal); }
.service-dossier-faq__structure span:last-child { right: -90px; bottom: -90px; width: 260px; height: 260px; border: 1px solid rgba(7, 23, 34, 0.12); transform: rotate(45deg); }

.service-dossier-faq__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(54px, 8vw, 112px);
    align-items: start;
}

.service-dossier-faq__heading {
    position: sticky;
    top: 126px;
    padding-top: 28px;
    border-top: 1px solid rgba(7, 23, 34, 0.2);
}

.service-dossier-faq__crosshair {
    position: relative;
    width: 58px;
    height: 58px;
    margin: 0 0 48px 10px;
    display: block;
    border: 1px solid var(--accent-dark);
    transform: rotate(45deg);
}

.service-dossier-faq__crosshair::before,
.service-dossier-faq__crosshair::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent-dark);
    transform: translate(-50%, -50%);
}

.service-dossier-faq__crosshair::before { width: 82px; height: 1px; }
.service-dossier-faq__crosshair::after { width: 1px; height: 82px; }

.service-dossier-faq .service-dossier-faq__heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(45px, 5vw, 70px);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.service-dossier-faq .service-dossier-faq__list {
    max-width: none;
    margin: 0;
    display: grid;
    gap: 12px;
    border-top: 0;
}

.service-dossier-faq .faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 34, 0.16);
    border-radius: 16px 16px 4px 16px;
    background: rgba(255, 255, 255, 0.72);
    transition: background 300ms ease, border-color 300ms ease, transform 350ms cubic-bezier(.22, 1, .36, 1);
}

.service-dossier-faq .faq-item:hover,
.service-dossier-faq .faq-item:focus-within,
.service-dossier-faq .faq-item[open] {
    border-color: rgba(141, 156, 30, 0.58);
    background: #fff;
    transform: translateX(-6px);
}

.service-dossier-faq .faq-item summary {
    min-height: 92px;
    padding: 25px 68px 25px 24px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    font-size: 17px;
    line-height: 1.45;
}

.service-dossier-faq__number {
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-dossier-faq .faq-item__answer {
    max-width: none;
    padding: 0 38px 30px 72px;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.75;
}

@keyframes service-dossier-scan {
    from { top: -5%; }
    to { top: 105%; }
}

@media (max-width: 980px) {
    .home-page .about-original__grid {
        grid-template-columns: 1fr;
    }

    .home-page .about-original__content {
        grid-row: 1;
    }

    .home-page .about-original__visual {
        min-height: 680px;
    }

    .home-page .technical-frame,
    .home-page .technical-frame__image,
    .home-page .technical-frame__image img {
        min-height: 680px;
    }

    .service-dossier-overview .service-detail-overview__grid,
    .service-dossier-description .service-description-original__grid,
    .service-dossier-faq__grid {
        grid-template-columns: 1fr;
    }

    .service-dossier-overview .service-detail-overview__media {
        position: relative;
        top: auto;
        min-height: 620px;
    }

    .service-dossier-description__heading,
    .service-dossier-faq__heading {
        position: relative;
        top: auto;
    }
}

@media (max-width: 700px) {
    .home-page .about-original {
        padding-block: 72px;
    }

    .home-page .about-original__content {
        padding: 30px 24px 26px;
        border-radius: 22px 22px 6px 22px;
    }

    .home-page .about-original__heading {
        padding-bottom: 26px;
    }

    .home-page .about-original__heading h2 {
        font-size: clamp(46px, 14vw, 61px);
    }

    .about-original__narrative {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 26px;
    }

    .home-page .about-original__narrative p {
        padding-top: 18px;
        font-size: 13px;
    }

    .home-page .about-original__content > h3 {
        margin-top: 34px;
    }

    .home-page .about-original__content .help-grid {
        grid-template-columns: 1fr;
    }

    .home-page .about-original__content .help-item,
    .home-page .about-original__content .help-item:nth-child(odd),
    .home-page .about-original__content .help-item:nth-child(even) {
        min-height: 170px;
    }

    .home-page .about-original__visual,
    .home-page .technical-frame,
    .home-page .technical-frame__image,
    .home-page .technical-frame__image img {
        min-height: 510px;
    }

    .home-page .about-original__stat {
        width: calc(100% - 24px);
        margin-top: -48px;
    }

    .quote-original {
        min-height: 0;
        padding-block: 62px 72px;
    }

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

    .quote-original__heading {
        position: relative;
        top: auto;
        min-height: 0;
        padding: 0 0 30px;
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 20px;
        align-items: start;
    }

    .quote-original__crosshair {
        width: 38px;
        height: 38px;
        margin: 8px 0 0 2px;
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .quote-original__crosshair::before { width: 54px; }
    .quote-original__crosshair::after { height: 54px; }

    .quote-original__heading .eyebrow,
    .quote-original__heading h2 {
        grid-column: 2;
    }

    .quote-original__heading .eyebrow {
        margin-bottom: 14px;
    }

    .quote-original h2 {
        margin: 0;
        font-size: clamp(40px, 12vw, 52px);
        line-height: 0.96;
    }

    .quote-original .faq-list--dark {
        gap: 10px;
    }

    .quote-original .faq-item summary {
        padding: 23px 48px 23px 50px;
        font-size: 16px;
    }

    .quote-original .faq-item::before {
        top: 26px;
        left: 16px;
    }

    .quote-original .faq-item__answer {
        padding: 0 20px 24px 50px;
        font-size: 13px;
    }

    .service-dossier-hero,
    .service-dossier-hero .detail-hero__inner {
        min-height: 610px;
    }

    .service-dossier-hero .detail-hero__media {
        left: 0;
        width: 100%;
        clip-path: none;
    }

    .service-dossier-hero::before {
        background: linear-gradient(0deg, rgba(3, 19, 28, 0.97) 0%, rgba(3, 19, 28, 0.65) 68%, rgba(3, 19, 28, 0.45));
    }

    .service-dossier-hero .detail-hero__inner {
        padding-block: 112px 42px;
    }

    .service-dossier-hero__frame {
        width: 100%;
        padding: 26px 22px 30px;
        border-left-width: 4px;
    }

    .service-dossier-hero__number {
        top: 19px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

    .service-dossier-hero .breadcrumbs {
        padding-right: 52px;
    }

    .service-dossier-hero h1 {
        padding-right: 0;
        font-size: clamp(48px, 15.5vw, 68px);
        line-height: 0.91;
    }

    .service-dossier-hero__structure span:nth-child(2) {
        right: 20px;
        width: 84px;
        height: 84px;
    }

    .service-dossier-overview {
        padding-block: 76px;
    }

    .service-dossier-overview .service-detail-overview__media {
        min-height: 430px;
        border-radius: 20px 20px 5px 20px;
    }

    .service-dossier-overview .service-detail-overview__content h2 {
        font-size: clamp(48px, 14vw, 64px);
    }

    .service-dossier-overview .service-detail-overview__summary {
        padding-left: 17px;
        font-size: 16px;
    }

    .service-dossier-overview .service-feature-list {
        grid-template-columns: 1fr;
    }

    .service-dossier-overview .service-feature-list__item {
        min-height: 92px;
    }

    .service-dossier-description,
    .service-dossier-faq {
        padding-block: 78px;
    }

    .service-dossier-description__node,
    .service-dossier-faq__crosshair {
        width: 42px;
        height: 42px;
        margin-bottom: 34px;
    }

    .service-dossier-description h2,
    .service-dossier-faq .service-dossier-faq__heading h2 {
        font-size: clamp(43px, 13vw, 58px);
    }

    .service-dossier-description .service-description-original__copy {
        columns: auto;
        font-size: 15px;
        line-height: 1.78;
    }

    .service-dossier-faq__grid {
        gap: 42px;
    }

    .service-dossier-faq .faq-item:hover,
    .service-dossier-faq .faq-item:focus-within,
    .service-dossier-faq .faq-item[open] {
        transform: none;
    }

    .service-dossier-faq .faq-item summary {
        min-height: 0;
        padding: 23px 52px 23px 20px;
        grid-template-columns: 27px minmax(0, 1fr);
        gap: 10px;
        font-size: 15px;
    }

    .service-dossier-faq .faq-item__answer {
        padding: 0 20px 24px 57px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-dossier-hero .detail-hero__media,
    .service-dossier-overview .service-detail-overview__media img,
    .service-dossier-overview .service-feature-list__item,
    .service-dossier-faq .faq-item,
    .service-detail-overview__scan {
        animation: none !important;
        transition: none !important;
    }
}
