:root {
    --font-ibm-plex-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
    --font-barlow-condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/BarlowCondensed-600.ttf") format("truetype");
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/BarlowCondensed-700.ttf") format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/IBMPlexSans-400.ttf") format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/IBMPlexSans-500.ttf") format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/IBMPlexSans-600.ttf") format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/IBMPlexSans-700.ttf") format("truetype");
}

:root {
    --steel-950: #071018;
    --steel-925: #09141d;
    --steel-900: #0b1620;
    --steel-850: #0f1c28;
    --steel-800: #132433;
    --steel-700: #213343;
    --ink: #111827;
    --muted: #4b5a6b;
    --concrete-50: #f6f8fa;
    --concrete-100: #eef2f5;
    --concrete-200: #d9e0e7;
    --concrete-300: #c2cbd3;
    --concrete-500: #7c8791;
    --brand-blue: #275a9f;
    --brand-blue-dark: #1d4c8c;
    --brand-blue-light: #46aee3;
    --white: #ffffff;
    --header-height: 70px;
    --sidebar-width: 320px;
    --shell: 1320px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --shadow-card: 0 20px 45px rgba(7, 16, 24, .16);
    --shadow-soft: 0 16px 35px rgba(7, 16, 24, .12);
    --section-dark-bg:
        radial-gradient(circle at 18% 0%, rgba(70, 174, 227, .08), transparent 36%),
        linear-gradient(180deg, var(--steel-900), var(--steel-950));
    --ease: cubic-bezier(.22, 1, .36, 1);
    --focus-ring: 0 0 0 3px rgba(70, 174, 227, .35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

html.has-scrolled {
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    background: var(--concrete-50);
    color: var(--ink);
    font-family: var(--font-ibm-plex-sans);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.sidebar-open {
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.image-viewer-open {
    overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

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

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

button {
    font: inherit;
}

address {
    font-style: normal;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--steel-950);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

.section {
    padding: 110px 0;
}

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

.section--light {
    background: var(--concrete-50);
}

.section-label {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .76);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
    font-family: var(--font-barlow-condensed);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: .98;
}

h1 {
    max-width: 760px;
    margin: 0 auto 22px;
    color: var(--white);
    font-size: clamp(2.85rem, 6.3vw, 5.5rem);
    text-wrap: balance;
}

h2 {
    margin-bottom: 24px;
    color: inherit;
    font-size: clamp(3rem, 5vw, 5rem);
    text-wrap: balance;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

p {
    margin-bottom: 20px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: linear-gradient(180deg, #2f66af, var(--brand-blue));
    color: var(--white);
    font-weight: 700;
    font-size: .98rem;
    line-height: 1;
    box-shadow: 0 16px 30px rgba(39, 90, 159, .28);
    transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    background: linear-gradient(180deg, #3674c2, var(--brand-blue-dark));
    box-shadow: 0 18px 36px rgba(39, 90, 159, .38);
    transform: translateY(-2px);
}

.button--small {
    min-height: 38px;
    padding-inline: 16px;
    font-size: .86rem;
}

.icon-button,
.menu-toggle {
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .04);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    gap: 4px;
    border-radius: 10px;
    transition: border-color .2s ease, background .2s ease;
}

.menu-toggle span {
    width: 18px;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    border-color: rgba(70, 174, 227, .75);
    background: rgba(70, 174, 227, .08);
}

body.sidebar-open .site-header .menu-toggle {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

html.sidebar-open-persisted .site-header .menu-toggle {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background:
        linear-gradient(180deg, rgba(9, 20, 29, .42), rgba(9, 20, 29, .3)),
        rgba(9, 20, 29, .34);
    color: var(--white);
    backdrop-filter: blur(18px);
    transform: translateY(calc(-100% - 8px));
    opacity: 0;
    pointer-events: none;
    transition: left .34s var(--ease), width .34s var(--ease), box-shadow .2s ease, transform .34s var(--ease), opacity .24s ease;
}

.site-header.is-scrolled {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 32px);
    margin-inline: auto;
    min-height: var(--header-height);
    padding: 12px 0;
    gap: 10px;
}

.site-header__brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-link__logo {
    width: 164px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-left: auto;
    font-size: .9rem;
    font-weight: 700;
}

.primary-nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, .82);
    transition: color .2s ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--white);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transform-origin: center;
    transition: opacity .2s ease, transform .2s ease;
}

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

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

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: var(--sidebar-width);
    background:
        linear-gradient(145deg, rgba(70, 174, 227, .08), transparent 34%),
        var(--steel-950);
    color: var(--white);
    transform: translateX(-101%);
    transition: transform .34s var(--ease), visibility .34s var(--ease);
    box-shadow: 24px 0 55px rgba(0, 0, 0, .25);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.sidebar-open .sidebar {
    transform: translateX(0);
    visibility: visible;
}

html.sidebar-open-persisted .sidebar {
    transform: translateX(0);
    visibility: visible;
    transition: none;
}

.sidebar__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    gap: 28px;
}

.sidebar__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sidebar__logo {
    width: 190px;
}

.sidebar__close {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
}

.sidebar__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}

.sidebar__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar__eyebrow {
    margin: 10px 0 -10px;
    color: var(--brand-blue-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

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

.sidebar__nav-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar__nav-item {
    display: grid;
    gap: 6px;
}

.sidebar__nav-parent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sidebar__nav-parent.is-active {
    border-bottom-color: rgba(70, 174, 227, .46);
}

.sidebar__nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    transition: color .2s ease, padding-left .2s ease;
}

.sidebar__nav-link--parent {
    color: rgba(255, 255, 255, .86);
    font-size: 1.05rem;
    font-weight: 700;
    gap: 12px;
}

.sidebar__nav-link--parent.is-active {
    color: var(--white);
}

.sidebar__nav-link--child {
    min-height: 42px;
    padding-left: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-bottom-color: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    font-weight: 600;
}

.sidebar__nav-link--child.is-active {
    color: var(--white);
}

.sidebar__nav-children {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
}

.sidebar__nav-children[hidden] {
    display: none;
}

.sidebar__nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .74);
    cursor: pointer;
    transition: color .2s ease;
}

.sidebar__nav-toggle:hover,
.sidebar__nav-toggle:focus-visible,
.sidebar__nav-toggle[aria-expanded="true"] {
    color: var(--white);
}

.sidebar__nav-toggle-icon {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.sidebar__nav-toggle[aria-expanded="true"] .sidebar__nav-toggle-icon {
    transform: rotate(225deg);
}

.sidebar__nav-link:hover,
.sidebar__nav-link:focus-visible {
    padding-left: 8px;
    color: var(--white);
}

.sidebar__nav-link--child:hover,
.sidebar__nav-link--child:focus-visible {
    padding-left: 20px;
}

.sidebar__panel {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .045);
}

.sidebar__panel-title {
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 700;
}

.sidebar__panel p:not(.sidebar__panel-title) {
    color: rgba(255, 255, 255, .74);
    font-size: .95rem;
}

.sidebar__contact {
    display: grid;
    gap: 8px;
    margin-top: auto;
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
}

.sidebar__contact a {
    color: var(--brand-blue-light);
    font-weight: 700;
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(4, 9, 13, .62);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

html.sidebar-open-persisted .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
    transition: none;
}

.main-content,
.site-footer {
    transition: margin-left .34s var(--ease);
}

@media (min-width: 901px) {
    .site-header .menu-toggle {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-header__brand-group {
        position: absolute;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
    }

    body.sidebar-open .site-header__brand-group,
    html.sidebar-open-persisted .site-header__brand-group {
        left: 24px;
    }

    body.sidebar-open .site-header {
        left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

    html.sidebar-open-persisted .site-header {
        left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        transition: none;
    }

    body.sidebar-open .main-content,
    body.sidebar-open .site-footer {
        margin-left: var(--sidebar-width);
    }

    html.sidebar-open-persisted .main-content,
    html.sidebar-open-persisted .site-footer {
        margin-left: var(--sidebar-width);
        transition: none;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .site-header__inner {
        padding-left: 0;
    }
}

.hero {
    --hero-zoom: 0;
    --hero-fade: 0;
    position: relative;
    display: grid;
    min-height: 100svh;
    min-height: 100vh;
    padding-top: 0;
    overflow: hidden;
    background-image: url("../images/hero_backdrop.jpg");
    background-position: center center;
    background-size: cover;
    color: var(--white);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    content: "";
    transform: scale(calc(1.03 + var(--hero-zoom)));
    transform-origin: center center;
    transition: transform .12s linear;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 16, 24, .92);
    content: "";
    opacity: var(--hero-fade);
    pointer-events: none;
    transition: opacity .12s linear;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(7, 16, 24, .93), rgba(7, 16, 24, .74) 45%, rgba(7, 16, 24, .88)),
        radial-gradient(circle at 50% 34%, rgba(39, 90, 159, .24), transparent 28%);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    min-height: 100vh;
    width: min(calc(100% - 48px), 980px);
    margin-inline: auto;
    padding: 84px 0 128px;
    text-align: center;
}

.hero__content > .hero__logo,
.hero__content > .hero__kicker,
.hero__content > h1,
.hero__content > .hero__intro,
.hero__content > .button {
    opacity: 0;
    transform: translateY(32px);
    animation: hero-content-reveal 1.05s var(--ease) forwards;
}

.hero__content > .hero__logo {
    animation-delay: .18s;
}

.hero__content > .hero__kicker {
    animation-delay: .42s;
}

.hero__content > h1 {
    animation-delay: .66s;
}

.hero__content > .hero__intro {
    animation-delay: .9s;
}

.hero__content > .button {
    animation-delay: 1.14s;
}

.hero__logo {
    width: min(400px, 54vw);
    margin-bottom: 20px;
}

.hero__kicker {
    margin-bottom: 14px;
    color: var(--brand-blue-light);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero__intro {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(.98rem, 1.35vw, 1.1rem);
    line-height: 1.55;
}

.hero__scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    transform: translateX(-50%);
    transition: opacity .22s ease, transform .22s ease;
    animation: hero-scroll-indicator-pulse 1.8s ease-in-out infinite;
}

.hero__scroll-indicator:hover,
.hero__scroll-indicator:focus-visible {
    color: var(--brand-blue-light);
}

.hero__scroll-indicator-icon {
    width: 18px;
    height: 18px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

html.has-scrolled .hero__scroll-indicator {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
}

@keyframes hero-scroll-indicator-pulse {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

@keyframes hero-content-reveal {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__content > .hero__logo,
    .hero__content > .hero__kicker,
    .hero__content > h1,
    .hero__content > .hero__intro,
    .hero__content > .button {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero__scroll-indicator {
        opacity: 1;
        transform: translateX(-50%);
        animation: none;
        transition: none;
    }
}

.image-ribbon {
    position: relative;
    z-index: 3;
    margin-top: -82px;
    padding: 0 0 42px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0, var(--steel-950) 74px, var(--steel-950) 100%);
    touch-action: pan-y;
}

.image-ribbon__track {
    display: flex;
    width: max-content;
    gap: 22px;
    padding-left: 22px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.image-ribbon.is-dragging {
    cursor: grabbing;
}

.image-ribbon:not(.is-dragging) {
    cursor: grab;
}

.image-ribbon__item {
    width: clamp(300px, 31vw, 520px);
    height: clamp(190px, 18vw, 285px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: var(--steel-800);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: translateY(68px);
    transition: opacity .55s ease, transform .7s var(--ease);
}

.image-ribbon__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.image-ribbon__trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: grab;
}

.image-ribbon__trigger:active {
    cursor: grabbing;
}

.image-ribbon__trigger img {
    transition: transform .45s var(--ease), filter .45s ease;
}

.image-ribbon__trigger:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.image-ribbon.image-ribbon--section {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

html.has-scrolled .image-ribbon__item {
    opacity: 1;
    transform: translateY(0);
}

.image-ribbon__item:nth-child(1) { transition-delay: .04s; }
.image-ribbon__item:nth-child(2) { transition-delay: .1s; }
.image-ribbon__item:nth-child(3) { transition-delay: .16s; }
.image-ribbon__item:nth-child(4) { transition-delay: .22s; }
.image-ribbon__item:nth-child(5) { transition-delay: .28s; }
.image-ribbon__item:nth-child(6) { transition-delay: .34s; }
.image-ribbon__item:nth-child(7) { transition-delay: .4s; }
.image-ribbon__item:nth-child(8) { transition-delay: .46s; }
.image-ribbon__item:nth-child(9) { transition-delay: .52s; }
.image-ribbon__item:nth-child(10) { transition-delay: .58s; }

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(18px, 4vw, 48px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.image-viewer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.image-viewer__backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(70, 174, 227, .22), transparent 32%),
        linear-gradient(145deg, rgba(3, 8, 13, .96), rgba(7, 16, 24, .9));
    cursor: zoom-out;
}

.image-viewer__frame {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
    width: min(1440px, calc(100vw - (clamp(18px, 4vw, 48px) * 2)));
    width: min(1440px, calc(100svw - (clamp(18px, 4vw, 48px) * 2)));
    max-width: 100%;
    height: min(calc(100vh - (clamp(18px, 4vw, 48px) * 2)), calc(100svh - (clamp(18px, 4vw, 48px) * 2)));
    max-height: 100%;
    margin: 0;
    outline: 0;
    transform: translateY(18px) scale(.98);
    transition: transform .32s var(--ease);
}

.image-viewer.is-open .image-viewer__frame {
    transform: translateY(0) scale(1);
}

.image-viewer__media {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
}

.image-viewer__media.is-zoomed {
    cursor: grab;
}

.image-viewer__media.is-dragging {
    cursor: grabbing;
}

.image-viewer__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-width: 0;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
    transform: translate3d(var(--viewer-pan-x, 0px), var(--viewer-pan-y, 0px), 0) scale(var(--viewer-scale, 1));
    transform-origin: center center;
    transition: transform .12s ease-out;
    will-change: transform;
}

.image-viewer__media.is-dragging .image-viewer__image {
    transition: none;
}

.image-viewer__caption {
    justify-self: center;
    max-width: min(760px, 100%);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(7, 16, 24, .72);
    color: rgba(255, 255, 255, .86);
    font-size: .92rem;
    line-height: 1.35;
    text-align: center;
    backdrop-filter: blur(14px);
}

.image-viewer__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(7, 16, 24, .72);
    color: var(--white);
    cursor: pointer;
    transform: translate(38%, -38%);
    backdrop-filter: blur(14px);
}

.image-viewer__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.image-viewer__close span:first-child {
    transform: rotate(45deg);
}

.image-viewer__close span:last-child {
    transform: rotate(-45deg);
}

.image-viewer__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(7, 16, 24, .72);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
}

.image-viewer__nav[hidden] {
    display: none;
}

.image-viewer__nav--prev {
    left: clamp(8px, 1.8vw, 18px);
}

.image-viewer__nav--next {
    right: clamp(8px, 1.8vw, 18px);
}

.image-viewer__nav span {
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.image-viewer__nav--prev span {
    transform: rotate(-135deg);
}

.image-viewer__nav--next span {
    transform: rotate(45deg);
}

.image-viewer__nav:hover,
.image-viewer__nav:focus-visible {
    border-color: rgba(70, 174, 227, .7);
    background: rgba(14, 31, 44, .88);
}

.about {
    padding-top: 72px;
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
    gap: clamp(42px, 6vw, 90px);
    align-items: start;
}

.about__copy {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.about__copy p:not(.section-label) {
    max-width: 830px;
    color: rgba(255, 255, 255, .8);
    font-size: 1.08rem;
}

.formwork-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(229, 234, 239, .96)),
        var(--concrete-100);
    color: var(--ink);
    box-shadow: var(--shadow-card);
}

.formwork-card h3 {
    color: var(--steel-950);
}

.formwork-card p:not(.section-label) {
    color: #334155;
}

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

.formwork-images__item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .16));
    box-shadow: 0 20px 42px rgba(15, 23, 42, .16);
}

.formwork-images__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.formwork-images__item figcaption {
    padding: 12px 14px 14px;
    color: #53667c;
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.projects {
    --projects-parallax: 0px;
    position: relative;
    overflow: hidden;
    padding-top: 54px;
    background: linear-gradient(180deg, rgba(7, 16, 24, .58), rgba(7, 16, 24, .68));
    color: var(--white);
}

.projects::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 16, 24, .36), rgba(7, 16, 24, .18) 28%, rgba(7, 16, 24, .44)),
        linear-gradient(90deg, rgba(7, 16, 24, .52), rgba(7, 16, 24, .14) 56%, rgba(7, 16, 24, .42));
    content: "";
    pointer-events: none;
}

.projects::after {
    position: absolute;
    inset: -14% 0;
    z-index: 0;
    background-image: url("../images/concrete_bg.jpg");
    background-position: center center;
    background-repeat: repeat;
    content: "";
    opacity: .82;
    pointer-events: none;
    transform: translate3d(0, var(--projects-parallax), 0) scale(1.08);
    transition: none;
    will-change: transform;
}

.projects > .section-shell {
    position: relative;
    z-index: 2;
}

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

.section-heading-row p,
.section-intro {
    max-width: 820px;
    color: var(--muted);
    font-size: 1.14rem;
}

.projects .section-heading-row p {
    color: rgba(255, 255, 255, .78);
}

.projects .section-intro {
    color: rgba(255, 255, 255, .78);
}

.projects .section-label--blue {
    color: var(--brand-blue-light);
}

.project-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .04);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.project-card:hover {
    border-color: rgba(70, 174, 227, .48);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)),
        rgba(70, 174, 227, .04);
    transform: translateY(-5px);
}

.project-card__media {
    display: block;
    position: relative;
    width: 100%;
    height: 225px;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: var(--steel-800);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    cursor: pointer;
    appearance: none;
}

.project-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 1s ease, transform 3.8s ease;
}

.project-card__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.project-card:hover .project-card__image.is-active {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.project-card__body {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    gap: 8px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(9, 20, 29, .42), rgba(9, 20, 29, .3)),
        rgba(9, 20, 29, .34);
    border-top: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.project-card h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-ibm-plex-sans);
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    letter-spacing: 0;
    line-height: 1.2;
}

.project-card p {
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    line-height: 1.55;
}

.contact h2 {
    color: #121a2d;
}

.projects h2 {
    color: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.project-card__location {
    margin: 0;
    color: var(--brand-blue-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.location-map {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 70vh, 920px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #d5e0eb;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: clamp(420px, 70vh, 920px);
    border: 0;
}

.contact {
    padding-top: 78px;
    background: var(--section-dark-bg);
    color: var(--white);
}

.contact-panel {
    display: grid;
    gap: 34px;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid #cfdbea;
    border-radius: var(--radius-md);
    background:
        linear-gradient(120deg, rgba(39, 90, 159, .08), rgba(255, 255, 255, .62) 42%, rgba(255, 255, 255, .96)),
        var(--white);
}

.contact-panel__intro {
    max-width: 720px;
}

.contact-panel__intro p:not(.section-label) {
    max-width: 42rem;
    color: #4b5a6b;
}

.contact-panel__content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 26px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 22px;
}

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

.contact-form__field {
    display: grid;
    gap: 8px;
    color: #1f2937;
    font-size: .96rem;
    font-weight: 600;
}

.contact-form__field span {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.contact-form__field em {
    color: #64748b;
    font-style: normal;
    font-weight: 500;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #c7d5e5;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    color: var(--steel-950);
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: #7c8791;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: rgba(39, 90, 159, .6);
    box-shadow: var(--focus-ring);
    outline: none;
}

.contact-form__field input[aria-invalid="true"],
.contact-form__field textarea[aria-invalid="true"] {
    border-color: #c0392b;
    background: #fff8f7;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid #cfdbea;
    border-radius: 14px;
    background: rgba(241, 245, 249, .72);
    color: #1f2937;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.55;
}

.contact-form__consent input {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .2rem;
    accent-color: var(--brand-blue-dark);
}

.contact-form__consent span {
    display: block;
}

.contact-form__error {
    color: #b42318;
    font-size: .84rem;
    font-weight: 600;
}

.contact-form__notice {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: .95rem;
    line-height: 1.45;
}

.contact-form__notice--success {
    border: 1px solid rgba(10, 122, 62, .16);
    background: #edf9f1;
    color: #0d5b32;
}

.contact-form__notice--error {
    border: 1px solid rgba(180, 35, 24, .16);
    background: #fff3f2;
    color: #8a1c12;
}

.contact-form__debug {
    display: block;
    margin-top: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .8rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
    color: #6f1b14;
}

.contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
}

.contact-form__actions p {
    margin: 0;
    color: #4b5a6b;
    font-size: .94rem;
}

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

.contact-details {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid #d5e0eb;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(39, 90, 159, .08), rgba(255, 255, 255, .98)),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-details__label {
    margin: 0;
    color: var(--brand-blue-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-panel address,
.contact-details address {
    display: grid;
    gap: 8px;
    color: #334155;
}

.contact-panel address strong,
.contact-details address strong {
    color: var(--steel-950);
}

.contact-panel address a,
.contact-details address a {
    width: fit-content;
    color: var(--brand-blue-dark);
    font-weight: 600;
}

.contact-details__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-details__button-secondary {
    border-color: rgba(39, 90, 159, .16);
    background: #ffffff;
    color: var(--brand-blue-dark);
    box-shadow: none;
}

.contact-details__button-secondary:hover,
.contact-details__button-secondary:focus-visible {
    background: #edf4fb;
    color: var(--brand-blue-dark);
    box-shadow: none;
}

.site-footer {
    position: relative;
    padding: 48px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--section-dark-bg);
    color: #d8e5f4;
    overflow: hidden;
}

.site-footer__layout,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__brand strong {
    display: block;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.3rem;
}

.site-footer__logo {
    display: block;
    width: min(100%, 220px);
    margin-bottom: 14px;
}

.site-footer__brand > p {
    max-width: 34ch;
    color: rgba(216, 229, 244, .9);
}

.site-footer__address {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    font-style: normal;
}

.site-footer__address span,
.site-footer__address a {
    color: #f5f9ff;
}

.site-footer__eyebrow {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .76);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

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

.site-footer__nav a {
    color: #f5f9ff;
}

.site-footer__column a {
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.site-footer__social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.site-footer__social-card {
    display: grid;
    gap: 10px;
    align-content: start;
    justify-items: start;
    min-height: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    color: var(--white);
    text-decoration: none;
    transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}

.site-footer__social-card:hover,
.site-footer__social-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(70, 174, 227, .44);
    background: rgba(255, 255, 255, .08);
}

.site-footer__social-card img {
    width: min(100%, 176px);
    aspect-ratio: 1;
    border-radius: 14px;
    background: var(--white);
    object-fit: cover;
    padding: 10px;
    justify-self: center;
}

.site-footer__social-label {
    color: var(--white);
    font-weight: 700;
}

.site-footer__social-handle {
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
}

.site-footer__bottom {
    padding-top: 18px;
    color: rgba(216, 229, 244, .76);
    font-size: .94rem;
}

.site-footer__copyright {
    margin: 0;
}

.site-footer__cookie-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(245, 249, 255, .88);
    font: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
    cursor: pointer;
}

body.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    padding: 0 0 18px;
}

.cookie-consent__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 28px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(7, 16, 24, .98), rgba(15, 28, 43, .96)),
        var(--section-dark-bg);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.cookie-consent__copy {
    display: grid;
    gap: 8px;
    max-width: 60ch;
}

.cookie-consent__copy h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    line-height: 1.05;
}

.cookie-consent__copy p {
    margin: 0;
    color: rgba(216, 229, 244, .9);
    line-height: 1.65;
}

.cookie-consent__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-consent__button-secondary {
    border-color: rgba(255, 255, 255, .16);
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.cookie-consent__button-secondary:hover,
.cookie-consent__button-secondary:focus-visible {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    box-shadow: none;
}

.cookie-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}

.cookie-consent[hidden],
.cookie-consent-modal[hidden],
.location-map__frame[hidden] {
    display: none !important;
}

.cookie-consent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 24, .72);
}

.cookie-consent-modal__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);
    padding: 28px;
    overflow: auto;
    border: 1px solid #cfdbea;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.cookie-consent-modal__header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.cookie-consent-modal__header h2 {
    margin: 0;
    color: var(--steel-950);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.02;
}

.cookie-consent-modal__header p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.cookie-consent-modal__body {
    display: grid;
    gap: 14px;
}

.cookie-consent-option {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid #d7e2ec;
    border-radius: 18px;
    background: #f8fbfe;
    color: #1f2937;
    cursor: pointer;
}

.cookie-consent-option--fixed {
    cursor: default;
    background: #eef4fb;
}

.cookie-consent-option strong {
    display: block;
    color: var(--steel-950);
    font-size: 1rem;
}

.cookie-consent-option p {
    margin: 6px 0 0;
    color: #4b5a6b;
    line-height: 1.55;
}

.cookie-consent-option input {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .25rem;
    accent-color: var(--brand-blue-dark);
}

.cookie-consent-option__status {
    color: var(--brand-blue-dark);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-consent-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.location-map__embed {
    position: relative;
    display: grid;
    min-height: clamp(420px, 70vh, 920px);
    background: #d5e0eb;
}

.location-map__frame {
    min-height: inherit;
}

.location-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-map__embed[data-embeds-allowed="true"] .location-map__placeholder {
    display: none;
}

.location-map__embed[data-embeds-allowed="true"] .location-map__frame {
    display: block;
}

.location-map__placeholder {
    display: grid;
    align-content: end;
    gap: 12px;
    min-height: inherit;
    padding: clamp(24px, 4vw, 48px);
    background:
        linear-gradient(180deg, rgba(7, 16, 24, .18), rgba(7, 16, 24, .82)),
        linear-gradient(140deg, rgba(39, 90, 159, .55), rgba(7, 16, 24, .9));
    color: var(--white);
}

.location-map__placeholder h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: .96;
}

.location-map__placeholder p {
    max-width: 44ch;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.65;
}

.location-map__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

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

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

    .site-footer__column:last-child {
        grid-column: 1 / -1;
    }

    .cookie-consent__inner {
        padding: 18px 20px;
    }
}

@media (max-width: 980px) {
    .primary-nav {
        display: none;
    }

    .site-header .button {
        margin-left: auto;
    }

    .brand-link__logo {
        width: 150px;
    }

    .site-header__inner {
        width: min(calc(100% - 28px), 1040px);
        gap: 12px;
    }

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

    .about__copy {
        position: static;
        top: auto;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 62px;
    }

    .sidebar {
        right: 0;
        width: 100%;
        transform: translateX(-101%);
        visibility: hidden;
    }

    body.sidebar-open .sidebar {
        visibility: visible;
    }

    html.sidebar-open-persisted .sidebar {
        visibility: visible;
    }

    body.sidebar-open .sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    html.sidebar-open-persisted .sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .sidebar__inner {
        padding: 24px;
    }

    .sidebar__logo {
        width: 210px;
    }

    .sidebar__nav-link--parent {
        min-height: 60px;
        font-size: 1.28rem;
    }

    .sidebar__nav-link--child {
        min-height: 46px;
        font-size: 1.02rem;
    }

    .section {
        padding: 78px 0;
    }

    .projects {
        padding-top: 40px;
    }

    .hero {
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero__content {
        min-height: 100svh;
        min-height: 100vh;
        padding: 74px 0 118px;
    }

    .image-ribbon {
        margin-top: -60px;
    }

    .contact-panel__content {
        grid-template-columns: 1fr;
    }

    .contact-details {
        position: static;
    }

    .site-footer__bottom {
        padding-top: 16px;
    }

    .site-footer__layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .site-footer__column:last-child {
        grid-column: auto;
    }

    .site-footer__brand > p {
        max-width: none;
    }

    .site-footer__copyright {
        text-align: left;
    }

    .cookie-consent {
        padding: 0 0 12px;
    }

    .cookie-consent__actions,
    .cookie-consent-modal__actions {
        width: 100%;
    }

    .cookie-consent__actions .button,
    .cookie-consent-modal__actions .button {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-modal__panel {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

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

    .site-header__inner {
        width: min(calc(100% - 24px), 1040px);
        padding-inline: 0;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
    }

    .brand-link__logo {
        width: 138px;
    }

    .site-header .button {
        display: none;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    h2 {
        font-size: clamp(2.55rem, 12vw, 3.45rem);
    }

    .hero {
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero__logo {
        width: min(280px, 70vw);
    }

    .hero__intro {
        max-width: 30rem;
        font-size: .96rem;
    }

    .hero__scroll-indicator {
        bottom: 18px;
        width: 26px;
        height: 26px;
    }

    .image-ribbon__track {
        gap: 14px;
        padding-left: 14px;
        animation-duration: 56s;
    }

    .image-ribbon__item {
        width: 290px;
        height: 188px;
    }

    .image-viewer {
        padding: 14px;
    }

    .image-viewer__frame {
        gap: 12px;
        width: calc(100vw - 28px);
        width: calc(100svw - 28px);
        height: calc(100vh - 28px);
        height: calc(100svh - 28px);
    }

    .image-viewer__image {
        border-radius: var(--radius-sm);
    }

    .image-viewer__close {
        top: 10px;
        right: 10px;
        transform: none;
    }

    .image-viewer__nav {
        width: 46px;
        height: 46px;
    }

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

    .formwork-images {
        grid-template-columns: 1fr;
    }

    .project-card__media {
        height: 220px;
    }

    .contact-panel {
        padding: 26px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__field--full {
        grid-column: auto;
    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer__nav,
    .site-footer__social-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent__inner {
        gap: 16px 18px;
    }

    .cookie-consent-option {
        padding: 16px;
    }
}

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

    .image-ribbon__track {
        transform: none !important;
    }

    .image-viewer,
    .image-viewer__frame,
    .image-ribbon__trigger img {
        transition-duration: .01ms !important;
    }
}

body.inner-page .site-header {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.mini-hero {
    --hero-zoom: 0;
    --hero-fade: 0;
    position: relative;
    display: grid;
    min-height: clamp(360px, 48vh, 560px);
    padding-top: var(--header-height);
    overflow: hidden;
    background-image: url("../images/hero_backdrop.jpg");
    background-position: center center;
    background-size: cover;
    color: var(--white);
    isolation: isolate;
}

.mini-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    content: "";
    transform: scale(calc(1.03 + var(--hero-zoom)));
    transform-origin: center center;
    transition: transform .12s linear;
}

.mini-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 16, 24, .92);
    content: "";
    opacity: var(--hero-fade);
    pointer-events: none;
    transition: opacity .12s linear;
}

.mini-hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 16, 24, .94), rgba(7, 16, 24, .72) 54%, rgba(7, 16, 24, .88)),
        radial-gradient(circle at 74% 34%, rgba(70, 174, 227, .2), transparent 28%);
}

.mini-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: inherit;
    padding: 92px 0 78px;
}

.mini-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: .86;
}

.design-capabilities {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--concrete-50), #ffffff 52%, var(--concrete-100));
}

.design-capabilities:not(.design-capabilities--parallax)::before {
    position: absolute;
    top: -160px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(70, 174, 227, .16), transparent 68%);
    content: "";
    pointer-events: none;
}

.design-capabilities--parallax {
    --projects-parallax: 0px;
    background: linear-gradient(180deg, rgba(7, 16, 24, .58), rgba(7, 16, 24, .68));
    color: var(--white);
}

.design-capabilities--parallax::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    background:
        linear-gradient(180deg, rgba(7, 16, 24, .36), rgba(7, 16, 24, .18) 28%, rgba(7, 16, 24, .44)),
        linear-gradient(90deg, rgba(7, 16, 24, .52), rgba(7, 16, 24, .14) 56%, rgba(7, 16, 24, .42));
    content: "";
    pointer-events: none;
}

.design-capabilities--parallax::after {
    position: absolute;
    inset: -14% 0;
    z-index: 0;
    background-image: url("../images/concrete_bg.jpg");
    background-position: center center;
    background-repeat: repeat;
    content: "";
    opacity: .82;
    pointer-events: none;
    transform: translate3d(0, var(--projects-parallax), 0) scale(1.08);
    transition: none;
    will-change: transform;
}

.design-capabilities--parallax > .section-shell {
    position: relative;
    z-index: 2;
}

.design-capabilities.design-capabilities--parallax h2 {
    color: var(--white);
}

.design-capabilities h2 {
    color: var(--steel-950);
}

.capabilities-card {
    position: relative;
    width: min(100%, 1120px);
    margin: 0;
    padding: 10px 0 10px 36px;
    overflow: visible;
    border-left: 7px solid var(--brand-blue-light);
    background: transparent;
    box-shadow: none;
}

.capabilities-card::before {
    display: none;
}

.capabilities-card::after {
    display: none;
}

.capabilities-card p {
    position: relative;
    max-width: none;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.68;
}

.capabilities-card--feature {
    display: grid;
    gap: 30px;
}

.capabilities-card--feature h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 4.4rem;
    letter-spacing: 0;
    line-height: .95;
}

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

.capabilities-card__body p {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .capabilities-card {
        padding-left: 28px;
    }

    .capabilities-card__body {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .mini-hero {
        min-height: 340px;
    }

    .mini-hero__content {
        padding: 82px 0 54px;
    }

    .mini-hero h1 {
        font-size: clamp(3.2rem, 22vw, 5.2rem);
    }

    .manufacturing-page .mini-hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: .9;
    }

    .capabilities-card {
        padding-left: 22px;
    }

    .capabilities-card--feature h2 {
        font-size: 3rem;
    }
}

.legal-hero__lede {
    max-width: 48rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 1.02rem;
    line-height: 1.7;
}

.legal-overview__card {
    gap: 28px;
}

.legal-overview__header {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 16px 24px;
}

.legal-overview__meta {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.legal-overview__body {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .9fr);
    gap: 28px;
}

.legal-overview__copy {
    display: grid;
    gap: 18px;
}

.legal-overview__copy p {
    margin: 0;
}

.legal-quicklinks {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.legal-quicklinks__title {
    margin: 0;
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-quicklinks__grid {
    display: grid;
    gap: 10px;
}

.legal-quicklinks a {
    color: #f5f9ff;
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.legal-policies {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--concrete-50), #ffffff 32%, var(--concrete-100));
}

.legal-policies::before {
    position: absolute;
    top: -120px;
    left: -100px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(39, 90, 159, .1), transparent 70%);
    content: "";
    pointer-events: none;
}

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

.legal-policies__header {
    max-width: 760px;
    margin-bottom: 34px;
}

.legal-policies__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.legal-policy-card {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 28px;
    border: 1px solid #d7e2ec;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(39, 90, 159, .05), rgba(255, 255, 255, .96)),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.legal-policy-card__eyebrow {
    margin: 0;
    color: var(--brand-blue-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-policy-card h3 {
    margin: 0;
    color: var(--steel-950);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: .96;
}

.legal-policy-card__summary {
    margin: 0;
    color: var(--steel-950);
    font-weight: 600;
}

.legal-policy-card__document {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0;
    align-items: baseline;
}

.legal-policy-card__document a {
    color: var(--brand-blue-dark);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.legal-policy-card__document span {
    color: #64748b;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.legal-policy-card p,
.legal-policy-card li {
    color: #334155;
    line-height: 1.75;
}

.legal-policy-card p {
    margin: 0;
}

.legal-policy-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.legal-contact {
    background:
        linear-gradient(180deg, rgba(7, 16, 24, .94), rgba(7, 16, 24, .88)),
        var(--section-dark-bg);
    color: #d8e5f4;
}

.legal-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: start;
}

.legal-contact__copy h2 {
    color: var(--white);
}

.legal-contact__copy p:not(.section-label) {
    max-width: 62ch;
    color: rgba(216, 229, 244, .9);
    line-height: 1.72;
}

.legal-contact__panel {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.legal-contact__label {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-contact__panel address {
    display: grid;
    gap: 8px;
    font-style: normal;
}

.legal-contact__panel address strong,
.legal-contact__panel address span,
.legal-contact__panel address a {
    color: #f5f9ff;
}

.legal-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-contact__button-secondary {
    border-color: rgba(255, 255, 255, .16);
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.legal-contact__button-secondary:hover,
.legal-contact__button-secondary:focus-visible {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    box-shadow: none;
}

@media (max-width: 980px) {
    .legal-overview__body,
    .legal-policies__grid,
    .legal-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .legal-policy-card,
    .legal-quicklinks,
    .legal-contact__panel {
        padding: 22px;
    }

    .legal-policy-card h3 {
        font-size: 1.8rem;
    }
}

.design-process {
    position: relative;
    overflow: hidden;
}

.design-process::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), transparent 78%);
    pointer-events: none;
}

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

.design-process__header {
    max-width: 760px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.design-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}

.process-card--linked::before {
    position: absolute;
    top: 50%;
    right: -22px;
    z-index: 2;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, rgba(70, 174, 227, .24), rgba(70, 174, 227, .92));
    box-shadow: 0 0 16px rgba(70, 174, 227, .22);
    content: "";
    pointer-events: none;
    transform: translateY(-50%);
}

.process-card--linked::after {
    position: absolute;
    top: 50%;
    right: -22px;
    z-index: 3;
    width: 18px;
    height: 18px;
    border-top: 3px solid rgba(70, 174, 227, .92);
    border-right: 3px solid rgba(70, 174, 227, .92);
    background: linear-gradient(135deg, rgba(70, 174, 227, .14), rgba(7, 16, 24, 0));
    box-shadow: 10px -10px 24px rgba(70, 174, 227, .18);
    content: "";
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
}

.process-card:hover {
    border-color: rgba(70, 174, 227, .48);
    background: rgba(255, 255, 255, .075);
    transform: translateY(-5px);
}

.process-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.24 / 1;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: var(--steel-800);
    cursor: zoom-in;
}

.process-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .55s ease, transform 2.1s ease, filter .3s ease;
}

.process-card__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.process-card:hover .process-card__image.is-active {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.process-card__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.process-card__number {
    width: fit-content;
    padding: 5px 10px;
    border: 1px solid rgba(70, 174, 227, .34);
    border-radius: 999px;
    color: var(--brand-blue-light);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1;
}

.process-card h3 {
    margin: 0;
    color: var(--white);
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.02rem, 1.45vw, 1.24rem);
    letter-spacing: 0;
    line-height: 1.25;
}

@media (max-width: 1180px) {
    .design-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .design-process__grid {
        grid-template-columns: 1fr;
    }

    .process-card--linked::before {
        top: auto;
        right: 50%;
        bottom: -22px;
        width: 2px;
        height: 26px;
        background: linear-gradient(180deg, rgba(70, 174, 227, .24), rgba(70, 174, 227, .92));
        transform: translateX(50%);
    }

    .process-card--linked::after {
        top: auto;
        right: 50%;
        bottom: -22px;
        transform: translateX(50%) rotate(135deg);
    }

    .process-card__body {
        padding: 20px;
    }
}

.manufacturing-overview__card {
    max-width: 1180px;
}

.manufacturing-overview__body {
    max-width: 980px;
}

.manufacturing-overview__body p {
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.72;
}

.manufacturing-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.manufacturing-process-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    min-height: 300px;
    padding: 0 26px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(70, 174, 227, .14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}

.manufacturing-process-card__media {
    position: relative;
    display: block;
    width: calc(100% + 52px);
    aspect-ratio: 1.2 / 1;
    margin: 0 -26px 18px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    background: var(--steel-800);
    cursor: zoom-in;
}

.manufacturing-process-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .55s ease, transform 2.1s ease, filter .3s ease;
}

.manufacturing-process-card__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.manufacturing-process-card:hover .manufacturing-process-card__image.is-active {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.manufacturing-process-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue-light), rgba(70, 174, 227, .08));
    content: "";
}

.manufacturing-process-card::after {
    display: none;
}

.manufacturing-process-card:hover {
    border-color: rgba(70, 174, 227, .48);
    background:
        linear-gradient(145deg, rgba(70, 174, 227, .18), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
    transform: translateY(-5px);
}

.manufacturing-process-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 10px;
}

.manufacturing-process-card h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 3.4vw, 3.5rem);
    line-height: .9;
}

.manufacturing-process-card p {
    margin: 0;
    max-width: 19rem;
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .manufacturing-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .manufacturing-overview__body p {
        font-size: 1rem;
        line-height: 1.64;
    }

    .manufacturing-process__grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-process-card {
        min-height: 250px;
        padding: 0 24px 24px;
    }

    .manufacturing-process-card__media {
        width: calc(100% + 48px);
        margin: 0 -24px 16px;
    }
}

.products-page .mini-hero h1 {
    max-width: 980px;
    font-size: clamp(3.4rem, 8.8vw, 8.2rem);
}

.products-overview__card {
    max-width: 1180px;
}

.products-page .products-overview.section {
    padding: 28px 0;
}

.products-page .products-overview .section-shell {
    display: flex;
    align-items: center;
    min-height: clamp(120px, 16vh, 180px);
}

.products-page .products-overview__card {
    width: 100%;
}

.products-overview__intro {
    display: grid;
    gap: 30px;
}

.products-overview__body {
    max-width: 940px;
}

.products-overview__body p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.06rem, 1.45vw, 1.24rem);
    line-height: 1.72;
}

.product-tabs {
    display: block;
    margin: 0;
}

.product-tabs__content-wrap {
    position: relative;
    overflow: visible;
    --product-tab-stroke: rgba(70, 174, 227, .62);
    isolation: isolate;
}

.product-tabs__surface {
    position: relative;
    isolation: isolate;
}

.product-tabs__header {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--section-dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.product-tabs__dock-wrap {
    position: sticky;
    top: var(--header-height);
    z-index: 4;
    margin: 0;
    overflow: visible;
    width: 100%;
    background: var(--section-dark-bg);
    border-bottom: 1px solid var(--product-tab-stroke);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .28),
        0 1px 0 rgba(255, 255, 255, .05) inset;
    backdrop-filter: blur(18px);
    isolation: isolate;
}

.product-tabs__dock-wrap::before {
    content: none;
}

.product-tabs__dock-wrap::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, 0));
    content: "";
    pointer-events: none;
    z-index: 3;
}

.product-tabs__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.product-tabs__intro {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 0 18px;
    pointer-events: none;
}

.product-tabs__dock {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin-top: 0;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 0;
}

.product-tabs__heading {
    margin: 0;
    color: rgba(255, 255, 255, .96);
    font-family: var(--font-barlow-condensed);
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.product-tabs__label {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

.product-tabs__list {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 28px 0 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 0;
}

.product-tabs__list::-webkit-scrollbar {
    display: none;
}

.product-tab-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 18px;
    border-width: 1px 1px 0;
    border-style: solid;
    border-color: var(--product-tab-stroke);
    border-radius: 22px 22px 0 0;
    background-color: var(--steel-850);
    background-image: none;
    color: var(--white);
    cursor: pointer;
    flex: 0 0 auto;
    width: max-content;
    min-width: 0;
    scroll-snap-align: start;
    text-align: left;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.product-tab-card:hover {
    border-color: var(--product-tab-stroke);
    background-color: var(--steel-800);
    background-image: none;
}

.product-tab-card:focus-visible {
    border-color: var(--product-tab-stroke);
    background-color: var(--steel-850);
    background-image: none;
    box-shadow: none;
}

.product-tab-card.is-active {
    border-color: var(--product-tab-stroke);
    border-bottom: 0;
    background:
        linear-gradient(180deg, rgba(70, 174, 227, .2), rgba(70, 174, 227, .08)),
        var(--steel-800);
    opacity: 1;
}

.product-tab-card.is-active:focus-visible {
    box-shadow: none;
}

.product-tab-card__number {
    display: none;
}

.product-tab-card__title {
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-barlow-condensed);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: uppercase;
}

.product-tab-card.is-active .product-tab-card__title {
    color: var(--white);
}

.product-tab-card__meta {
    display: none;
}

.product-tab-panels {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
    padding-top: clamp(26px, 4vw, 52px);
}

.products-tab-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
    background: var(--section-dark-bg);
}

.products-tab-content::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .58), transparent 82%);
    pointer-events: none;
}

.product-tab-panel {
    display: grid;
    gap: clamp(24px, 3.5vw, 38px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-tab-panel[hidden] {
    display: none;
}

.product-tab-panel__intro {
    max-width: 760px;
}

.product-tab-panel__intro h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: .86;
}

.product-tab-panel__intro p:not(.section-label) {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.62;
}

.product-tab-panel__empty {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.6;
}

.product-tab-sections {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
}

.product-tab-section {
    display: grid;
    gap: 18px;
}

.product-tab-section__header {
    max-width: 760px;
}

.product-tab-section__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: .9;
}

.product-tab-section__description {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(.98rem, 1.12vw, 1.08rem);
    line-height: 1.62;
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .04);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.product-card:hover {
    border-color: rgba(70, 174, 227, .48);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)),
        rgba(70, 174, 227, .04);
    transform: translateY(-5px);
}

.product-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.18 / 1;
    padding: 0;
    border: 0;
    background: var(--steel-800);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    cursor: zoom-in;
}

.product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .55s ease, transform 2.1s ease, filter .3s ease;
}

.product-card__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover .product-card__image.is-active {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.product-card__body {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.product-card__eyebrow {
    color: var(--brand-blue-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-ibm-plex-sans);
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    letter-spacing: 0;
    line-height: 1.2;
}

.product-card__description {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    line-height: 1.55;
}

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

.download-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(70, 174, 227, .11), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .04);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.download-card::before {
    display: none;
}

.download-card:hover {
    border-color: rgba(70, 174, 227, .5);
    background:
        linear-gradient(145deg, rgba(70, 174, 227, .16), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)),
        rgba(70, 174, 227, .04);
    transform: translateY(-5px);
}

.download-card__topline,
.download-card__body,
.download-card__actions {
    position: relative;
    z-index: 1;
}

.download-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 0;
}

.download-card__type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(70, 174, 227, .14);
    color: var(--brand-blue-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.download-card__meta {
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.download-card__body {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px 20px 24px;
}

.download-card h4 {
    margin: 0;
    color: var(--white);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(1.8rem, 2.4vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: .94;
    text-transform: uppercase;
}

.download-card p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    line-height: 1.55;
}

.download-card__actions {
    padding: 0 20px 20px;
}

.download-card__link,
.download-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.download-card__link {
    border: 1px solid rgba(70, 174, 227, .46);
    background: linear-gradient(180deg, #2f66af, var(--brand-blue));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(39, 90, 159, .24);
    transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}

.download-card__link:hover,
.download-card__link:focus-visible {
    background: linear-gradient(180deg, #3674c2, var(--brand-blue-dark));
    box-shadow: 0 16px 32px rgba(39, 90, 159, .34);
    transform: translateY(-2px);
}

.download-card__status {
    border: 1px dashed rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .58);
}

@media (max-width: 1240px) {
    .product-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .products-page .products-overview.section {
        padding: 22px 0;
    }

    .products-page .products-overview .section-shell {
        min-height: clamp(100px, 14vh, 150px);
    }

    .product-tabs__dock-wrap {
        top: var(--header-height);
    }

    .product-tabs__inner {
        width: min(calc(100% - 28px), 1040px);
    }

    .product-tab-panels {
        width: min(calc(100% - 28px), 1040px);
        padding-top: 22px;
    }

    .product-tabs__list {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding: 0 0 0 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-padding-left: 0;
    }

    .product-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .product-tabs__dock {
        gap: 10px;
        padding-left: 0;
        padding-top: 22px;
    }

    .product-tab-card {
        min-height: 40px;
        border-radius: 20px 20px 0 0;
        padding: 8px 10px;
        flex: 0 0 auto;
        width: max-content;
        min-width: 0;
        scroll-snap-align: start;
    }

    .product-tab-card__title {
        font-size: clamp(.84rem, 2.85vw, .98rem);
        line-height: 1.05;
    }

    .product-tab-panel {
        border-radius: 22px;
    }

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

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

@media (max-width: 520px) {
    .products-page .mini-hero h1 {
        font-size: clamp(3rem, 17vw, 4.6rem);
    }

    .product-tabs__dock {
        gap: 8px;
    }

    .product-tab-panels {
        width: calc(100% - 28px);
    }

    .product-tab-card {
        width: max-content;
        min-height: 38px;
        padding: 7px 9px;
    }

    .product-tab-card__title {
        font-size: .82rem;
    }

    .product-card-grid {
        grid-template-columns: 1fr;
    }

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