:root {
    --ink: #07111d;
    --ink-2: #0b1a2a;
    --ink-3: #12263a;
    --blue: #16b8f3;
    --blue-2: #63dbff;
    --blue-dark: #0579b2;
    --paper: #f4f7f8;
    --paper-2: #e9f0f3;
    --white: #ffffff;
    --text: #132231;
    --muted: #657482;
    --line: rgba(12, 35, 53, 0.14);
    --line-light: rgba(255, 255, 255, 0.14);
    --success: #34d399;
    --danger: #ef6b73;
    --container: 1320px;
    --header-height: 116px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --shadow: 0 28px 70px rgba(5, 17, 29, 0.14);
}

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

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

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

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

h1,
h2,
h3,
.hero-stat strong,
.editorial-marker span,
.trust-band strong {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

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

.section {
    padding: 132px 0;
}

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

.section-soft {
    background: var(--paper-2);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--blue-dark);
    transform: translateY(-150%);
}

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

.scroll-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
}

.site-noise {
    position: fixed;
    z-index: 999;
    inset: 0;
    pointer-events: none;
    opacity: .045;
    background-image: radial-gradient(circle, rgba(5, 17, 29, .8) 0 .55px, transparent .7px);
    background-size: 4px 4px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

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

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 10px 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button b {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    place-items: center;
    font-size: 17px;
    transition: transform .35s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover b {
    transform: rotate(45deg);
}

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

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

.button-primary:hover {
    background: var(--blue-2);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
    background: rgba(7, 17, 29, .34);
    backdrop-filter: blur(10px);
}

.button-ghost b {
    background: rgba(255, 255, 255, .12);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(7, 17, 29, .72);
}

.button-outline {
    border-color: var(--line);
}

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

.button-outline:hover {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

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

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
}

.text-link span {
    color: var(--blue-dark);
    font-size: 18px;
    transition: transform .3s var(--ease);
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

.text-link.light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
}

.text-link.light span {
    color: var(--blue);
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal[data-delay="1"] {
    transition-delay: .08s;
}

.reveal[data-delay="2"] {
    transition-delay: .16s;
}

.reveal[data-delay="3"] {
    transition-delay: .24s;
}

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

/* Header */
.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
}

.site-header.is-fixed {
    position: fixed;
    animation: header-in .45s var(--ease) both;
}

@keyframes header-in {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.utility-bar {
    height: 34px;
    border-bottom: 1px solid var(--line-light);
    background: rgba(4, 13, 22, .45);
}

.utility-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.utility-inner p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(52, 211, 153, .12);
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.utility-links a {
    opacity: .78;
    transition: opacity .25s ease;
}

.utility-links a:hover {
    opacity: 1;
}

.nav-shell {
    border-bottom: 1px solid var(--line-light);
    transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-fixed .utility-bar {
    display: none;
}

.site-header.is-fixed .nav-shell {
    background: rgba(7, 17, 29, .92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.nav-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 34px;
}

.brand {
    flex: 0 0 270px;
}

.brand img {
    width: 270px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.primary-nav > a,
.nav-dropdown > button {
    position: relative;
    padding: 31px 0 28px;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
}

.primary-nav > a::after,
.nav-dropdown > button::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-dropdown > button.is-active::after,
.nav-dropdown:hover > button::after,
.nav-dropdown > button[aria-expanded="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button span {
    margin-left: 4px;
    color: var(--blue);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 4px);
    left: -28px;
    width: 320px;
    padding: 10px;
    visibility: hidden;
    border-top: 2px solid var(--blue);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.dropdown-panel a {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    padding: 15px 13px;
    color: var(--text);
    transition: color .25s ease, background .25s ease;
}

.dropdown-panel a + a {
    border-top: 1px solid var(--line);
}

.dropdown-panel a span {
    color: var(--blue-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
}

.dropdown-panel a strong {
    font-size: 13px;
}

.dropdown-panel a:hover {
    color: var(--blue-dark);
    background: var(--paper);
}

.nav-cta {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 16px;
    margin-left: 2px;
    padding: 0 6px 0 16px;
    color: var(--ink);
    background: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.nav-cta b {
    display: grid;
    width: 32px;
    height: 32px;
    color: var(--white);
    background: var(--ink);
    place-items: center;
    transition: transform .3s var(--ease);
}

.nav-cta:hover b {
    transform: rotate(45deg);
}

.menu-toggle {
    display: none;
}

/* Home hero */
.hero {
    position: relative;
    min-height: 880px;
    height: 100svh;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.hero-media,
.hero-frame,
.hero-shade,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-frame {
    opacity: 0;
    transform: scale(1.045);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-frame.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(4, 12, 21, .98) 0%, rgba(4, 12, 21, .86) 39%, rgba(4, 12, 21, .22) 75%, rgba(4, 12, 21, .5) 100%),
        linear-gradient(0deg, rgba(4, 12, 21, .9) 0%, transparent 36%);
}

.hero-grid,
.page-hero-grid,
.cta-grid {
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    height: calc(100% - 140px);
    min-height: 700px;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
    gap: 80px;
    padding-top: 144px;
}

.hero-copy {
    max-width: 900px;
}

.hero-eyebrow {
    color: var(--blue-2);
    animation: hero-up .8s .15s var(--ease) both;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(58px, 6.25vw, 104px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .91;
    animation: hero-up .9s .24s var(--ease) both;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .78);
}

.hero-lead {
    max-width: 665px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.75;
    animation: hero-up .9s .34s var(--ease) both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: hero-up .9s .43s var(--ease) both;
}

@keyframes hero-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-aside {
    align-self: end;
    padding-bottom: 40px;
    animation: hero-up .9s .52s var(--ease) both;
}

.system-card {
    padding: 22px;
    border: 1px solid var(--line-light);
    background: rgba(5, 16, 27, .68);
    backdrop-filter: blur(14px);
}

.system-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.system-card-head span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.system-card-head b {
    color: var(--blue-2);
}

.system-rings {
    position: relative;
    display: grid;
    height: 150px;
    place-items: center;
}

.system-rings span {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(99, 219, 255, .18);
    border-radius: 50%;
}

.system-rings span:nth-child(2) {
    width: 88px;
    height: 88px;
    border-color: rgba(99, 219, 255, .34);
}

.system-rings span:nth-child(3) {
    width: 52px;
    height: 52px;
    border-color: var(--blue);
}

.system-rings i {
    width: 12px;
    height: 12px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 28px var(--blue);
}

.system-rings::after {
    position: absolute;
    width: 120px;
    height: 120px;
    border-top: 1px solid var(--blue);
    border-radius: 50%;
    content: "";
    animation: spin 5s linear infinite;
}

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

.system-card > p {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.hero-foot {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 140px;
    grid-template-columns: repeat(3, 1fr) 190px;
    border-top: 1px solid var(--line-light);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 34px;
    border-right: 1px solid var(--line-light);
}

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

.hero-stat strong {
    font-size: 34px;
    font-weight: 600;
}

.hero-stat span {
    max-width: 80px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.45;
    text-transform: uppercase;
}

.scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
}

.scroll-cue i::after {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 3px;
    height: 8px;
    border-radius: 4px;
    content: "";
    background: var(--blue);
    transform: translateX(-50%);
    animation: scroll-dot 1.8s infinite;
}

@keyframes scroll-dot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    25% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* Shared headings */
.section-heading {
    max-width: 760px;
    margin-bottom: 68px;
}

.section-heading h2,
.split-heading h2,
.editorial-copy h2,
.about-teaser-copy h2,
.precision-sticky h2,
.home-contact-copy h2,
.contact-details h2,
.contact-form-head h2,
.cta-inner h2,
.mission-card h2 {
    margin-bottom: 24px;
    font-size: clamp(40px, 4.2vw, 67px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.section-heading.is-light .eyebrow {
    color: var(--blue-2);
}

.section-heading.is-light h2 {
    color: var(--white);
}

.section-lead {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.section-heading.is-light .section-lead {
    color: rgba(255, 255, 255, .58);
}

.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 66px;
}

.split-heading .section-heading {
    margin-bottom: 0;
}

/* Statement */
.statement {
    background: var(--paper);
}

.statement-grid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 340px;
    gap: 70px;
    align-items: start;
}

.statement-grid h2 {
    margin: 0;
    font-size: clamp(42px, 4.7vw, 72px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.statement-copy p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
}

/* Services */
.services-section {
    padding: 132px 0 148px;
    overflow: hidden;
}

.services-section::before {
    position: absolute;
    top: 0;
    right: -16vw;
    width: 55vw;
    height: 55vw;
    border: 1px solid rgba(22, 184, 243, .12);
    border-radius: 50%;
    content: "";
}

.services-stack {
    position: relative;
    border-top: 1px solid var(--line-light);
}

.service-panel {
    position: relative;
    display: grid;
    min-height: 245px;
    grid-template-columns: 90px 280px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 38px;
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
    transition: background .45s var(--ease);
}

.service-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s var(--ease);
}

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

.service-number,
.service-image,
.service-copy,
.service-arrow {
    position: relative;
    z-index: 1;
}

.service-number {
    align-self: start;
    padding-top: 44px;
    color: var(--blue-2);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.service-panel:hover .service-number {
    color: var(--ink);
}

.service-image {
    height: 180px;
    overflow: hidden;
    transform: rotate(-2deg) scale(.94);
    transition: transform .5s var(--ease);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75);
    transition: filter .5s ease, transform .7s var(--ease);
}

.service-panel:hover .service-image {
    transform: rotate(0) scale(1);
}

.service-panel:hover .service-image img {
    filter: saturate(1);
    transform: scale(1.05);
}

.service-copy {
    padding: 38px 0;
}

.service-copy small {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-copy strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(32px, 3.2vw, 50px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1;
}

.service-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

.service-panel:hover .service-copy small,
.service-panel:hover .service-copy p {
    color: rgba(7, 17, 29, .72);
}

.service-panel:hover .service-copy strong,
.service-panel:hover .service-arrow {
    color: var(--ink);
}

.service-arrow {
    display: grid;
    width: 58px;
    height: 58px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    place-items: center;
    font-size: 25px;
    transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}

.service-panel:hover .service-arrow {
    background: var(--white);
    transform: rotate(45deg);
}

/* Featured projects */
.projects-feature {
    background: var(--paper);
}

.featured-projects {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 20px;
}

.featured-project {
    min-height: 320px;
}

.featured-project:first-child {
    grid-row: span 2;
    min-height: 660px;
}

.featured-project a {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--ink);
}

.featured-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s ease, transform .8s var(--ease);
}

.featured-project a::after {
    position: absolute;
    inset: 40% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(4, 12, 21, .88));
}

.featured-project span {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 25px;
    left: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
}

.featured-project b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    letter-spacing: -.025em;
}

.featured-project small {
    max-width: 180px;
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-align: right;
    text-transform: uppercase;
}

.featured-project a:hover img {
    opacity: .78;
    transform: scale(1.045);
}

/* Precision / values */
.precision-section {
    padding: 150px 0;
}

.precision-line {
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 1px;
    height: 100%;
    background: var(--line-light);
}

.precision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 105px;
}

.precision-sticky {
    position: sticky;
    top: 160px;
    align-self: start;
}

.precision-sticky .eyebrow {
    color: var(--blue-2);
}

.precision-sticky h2 {
    max-width: 540px;
}

.precision-sticky > p:not(.eyebrow) {
    max-width: 500px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
}

.precision-meter {
    width: 100%;
    height: 2px;
    margin-top: 56px;
    background: rgba(255, 255, 255, .12);
}

.precision-meter span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
}

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

.value-item {
    display: grid;
    min-height: 190px;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid var(--line-light);
}

.value-item > span {
    color: var(--blue-2);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
}

.value-item h3 {
    margin-bottom: 13px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.value-item p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

/* About */
.about-teaser {
    background: var(--paper);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 100px;
}

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

.about-teaser-media > img {
    width: calc(100% - 70px);
    height: 650px;
    object-fit: cover;
    filter: saturate(.68);
}

.experience-badge {
    position: absolute;
    right: 0;
    bottom: 46px;
    display: flex;
    width: 255px;
    height: 190px;
    align-items: flex-end;
    gap: 16px;
    padding: 28px;
    color: var(--ink);
    background: var(--blue);
}

.experience-badge strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 58px;
    letter-spacing: -.08em;
    line-height: .85;
}

.experience-badge span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-teaser-copy > p:not(.eyebrow) {
    max-width: 590px;
    color: var(--muted);
    font-size: 17px;
}

.about-teaser-copy .text-link {
    margin-top: 20px;
}

/* Process */
.process-section {
    background: var(--white);
}

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

.process-card {
    position: relative;
    min-height: 330px;
    padding: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    transition: color .4s var(--ease), background .4s var(--ease);
}

.process-card > span {
    color: var(--blue-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.process-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 58px 0 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.process-icon::before,
.process-icon::after,
.process-icon i {
    position: absolute;
    content: "";
    background: var(--blue-dark);
}

.process-icon::before {
    top: 50%;
    left: 14px;
    width: 34px;
    height: 1px;
}

.process-icon::after {
    top: 14px;
    left: 50%;
    width: 1px;
    height: 34px;
}

.process-icon i {
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.process-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.03em;
}

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

.process-card:hover {
    color: var(--white);
    background: var(--ink);
}

.process-card:hover p {
    color: rgba(255, 255, 255, .6);
}

.process-card:hover .process-icon {
    border-color: rgba(255, 255, 255, .2);
}

.process-card:hover .process-icon::before,
.process-card:hover .process-icon::after,
.process-card:hover .process-icon i {
    background: var(--blue);
}

/* References */
.references-section {
    padding: 84px 0 94px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    overflow: hidden;
}

.references-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.references-head .eyebrow,
.references-head > p {
    margin: 0;
}

.references-head > p:last-child {
    color: var(--muted);
    font-size: 14px;
}

.reference-window {
    overflow: hidden;
}

.reference-track {
    display: flex;
    width: max-content;
    animation: logo-scroll 30s linear infinite;
}

.reference-window:hover .reference-track {
    animation-play-state: paused;
}

@keyframes logo-scroll {
    to { transform: translateX(-50%); }
}

.reference-logo {
    display: grid;
    width: 260px;
    height: 115px;
    margin-right: 16px;
    border: 1px solid var(--line);
    background: var(--white);
    place-items: center;
}

.reference-logo img {
    width: 75%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .3s ease, opacity .3s ease;
}

.reference-logo:hover img {
    filter: none;
    opacity: 1;
}

/* Home contact / forms */
.home-contact {
    padding: 140px 0;
}

.home-contact::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44%;
    height: 100%;
    content: "";
    opacity: .25;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 64px 64px;
}

.home-contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
}

.home-contact-copy .eyebrow {
    color: var(--blue-2);
}

.home-contact-copy > p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(255, 255, 255, .58);
}

.direct-contact {
    margin-top: 56px;
    border-top: 1px solid var(--line-light);
}

.direct-contact a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line-light);
}

.direct-contact span {
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.direct-contact strong {
    font-size: 13px;
}

.quote-form-wrap {
    position: relative;
}

.quote-form {
    padding: 38px;
    color: var(--text);
    background: var(--white);
}

.quote-form.is-compact,
.quote-form-wrap.is-compact .quote-form {
    padding: 38px;
}

.field {
    position: relative;
    margin-bottom: 20px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #546471;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #c9d3d9;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    transition: border-color .25s ease, background .25s ease;
}

.field input,
.field select {
    height: 48px;
}

.field textarea {
    min-height: 110px;
    padding: 12px 0;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-dark);
    background: rgba(22, 184, 243, .035);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9ba7af;
}

.form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
}

.form-footer p {
    max-width: 280px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.form-alert {
    margin-bottom: 16px;
    padding: 14px 18px;
    border-left: 3px solid var(--danger);
    color: var(--text);
    background: #fff;
    box-shadow: var(--shadow);
}

.form-alert.success {
    border-color: var(--success);
}

.form-alert p {
    margin: 0;
    font-size: 13px;
}

.form-alert p + p {
    margin-top: 5px;
}

/* Page hero */
.page-hero {
    position: relative;
    display: flex;
    min-height: 690px;
    align-items: flex-end;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.page-hero-media,
.page-hero-grid {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .52;
    filter: saturate(.74);
}

.page-hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(4, 12, 21, .96), rgba(4, 12, 21, .56) 64%, rgba(4, 12, 21, .55)),
        linear-gradient(0deg, rgba(4, 12, 21, .82), transparent 46%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    padding-top: 190px;
    padding-bottom: 78px;
}

.breadcrumbs {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 75px;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--blue-2);
}

.page-hero-copy {
    max-width: 920px;
}

.page-hero-copy .eyebrow {
    color: var(--blue-2);
}

.page-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(54px, 6.8vw, 104px);
    font-weight: 600;
    letter-spacing: -.068em;
    line-height: .93;
}

.page-hero-summary {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 18px;
}

.page-hero-index {
    align-self: end;
    color: rgba(255, 255, 255, .14);
    font-family: "Space Grotesk", sans-serif;
    font-size: 110px;
    font-weight: 700;
    letter-spacing: -.12em;
    line-height: .8;
}

.page-hero-index span {
    color: var(--blue);
}

/* Editorial pages */
.editorial-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 90px;
}

.editorial-marker {
    align-self: start;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.editorial-marker span {
    display: block;
    margin-bottom: 16px;
    color: var(--blue-dark);
    font-size: 68px;
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: 1;
}

.editorial-marker p {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.service-marker p {
    max-width: 160px;
}

.editorial-copy h2 {
    max-width: 930px;
}

.prose-columns {
    columns: 2;
    column-gap: 64px;
    margin-top: 46px;
}

.prose-columns p {
    break-inside: avoid;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 16px;
}

.values-section {
    padding: 132px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.value-card {
    min-height: 340px;
    padding: 34px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.value-card > span {
    display: block;
    margin-bottom: 115px;
    color: var(--blue-2);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.value-card p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

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

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mission-card {
    min-height: 530px;
    padding: 70px;
    border: 1px solid var(--line);
}

.mission-card + .mission-card {
    border-left: 0;
}

.mission-card h2 {
    font-size: clamp(38px, 3.6vw, 58px);
}

.mission-card > p:last-child {
    max-width: 540px;
    color: var(--muted);
}

.mission-card.is-accent {
    color: var(--ink);
    border-color: var(--blue);
    background: var(--blue);
}

.mission-card.is-accent .eyebrow,
.mission-card.is-accent > p:last-child {
    color: rgba(7, 17, 29, .72);
}

/* Service detail */
.benefits-section {
    padding: 132px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.benefit-card {
    min-height: 310px;
    padding: 32px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.benefit-card span {
    display: block;
    margin-bottom: 90px;
    color: var(--blue-2);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.service-detail {
    background: var(--paper);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.service-detail-media {
    position: relative;
    height: 680px;
}

.service-detail-media::before {
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -18px;
    width: 38%;
    height: 40%;
    border-top: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    content: "";
}

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

.service-detail-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    padding: 0;
    margin: 36px 0 42px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 14px 0 14px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 22px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
}

.service-gallery {
    background: var(--white);
}

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

.service-gallery-item {
    position: relative;
    height: 280px;
    padding: 0;
    border: 0;
    background: var(--ink);
    cursor: pointer;
    overflow: hidden;
}

.service-gallery-item:nth-child(2),
.service-gallery-item:nth-child(7) {
    grid-column: span 2;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .7s var(--ease);
}

.service-gallery-item > span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--blue);
    place-items: center;
    opacity: 0;
    transform: scale(.75);
    transition: opacity .3s ease, transform .3s var(--ease);
}

.service-gallery-item:hover img {
    opacity: .7;
    transform: scale(1.05);
}

.service-gallery-item:hover > span {
    opacity: 1;
    transform: scale(1);
}

/* Projects */
.projects-page {
    background: var(--paper);
}

.projects-intro {
    display: flex;
    justify-content: space-between;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -18px 0 50px;
}

.project-filters button {
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.project-filters button:hover,
.project-filters button.is-active {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

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

.project-card {
    min-width: 0;
}

.project-card.is-hidden {
    display: none;
}

.project-card > button {
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--white);
    cursor: pointer;
    text-align: left;
}

.project-media {
    display: block;
    height: 360px;
    background: var(--ink);
    overflow: hidden;
}

.project-card:nth-child(6n + 1) .project-media,
.project-card:nth-child(6n + 5) .project-media {
    height: 470px;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .7s var(--ease);
}

.project-meta {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
}

.project-meta > span {
    display: grid;
    gap: 4px;
}

.project-meta b {
    color: var(--blue-dark);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-meta > span {
    font-size: 13px;
    font-weight: 700;
}

.project-meta i {
    display: grid;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    font-style: normal;
    transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.project-card > button:hover .project-media img {
    opacity: .75;
    transform: scale(1.05);
}

.project-card > button:hover .project-meta i {
    color: var(--white);
    background: var(--ink);
    transform: rotate(45deg);
}

/* Lightbox */
.lightbox {
    position: fixed;
    width: min(92vw, 1180px);
    max-width: none;
    height: min(90vh, 820px);
    max-height: none;
    padding: 60px 80px;
    border: 0;
    color: var(--white);
    background: rgba(5, 13, 22, .96);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);
}

.lightbox figure {
    display: grid;
    height: 100%;
    grid-template-rows: 1fr auto;
    margin: 0;
}

.lightbox figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.lightbox figcaption {
    padding-top: 16px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    place-items: center;
}

.lightbox-close {
    top: 14px;
    right: 16px;
    font-size: 26px;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: 18px;
}

.lightbox-nav.next {
    right: 18px;
}

/* References page */
.references-editorial {
    margin-bottom: 90px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.reference-card {
    position: relative;
    display: grid;
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    place-items: center;
}

.reference-card > span {
    position: absolute;
    top: 20px;
    left: 22px;
    color: var(--blue-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
}

.reference-card img {
    width: 78%;
    max-height: 110px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter .3s ease, transform .4s var(--ease);
}

.reference-card p {
    position: absolute;
    right: 22px;
    bottom: 17px;
    left: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reference-card:hover img {
    filter: none;
    transform: scale(1.05);
}

.trust-band {
    padding: 80px 0;
}

.trust-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-band-grid > div {
    display: grid;
    gap: 8px;
    padding: 20px 42px;
    border-right: 1px solid var(--line-light);
}

.trust-band-grid > div:first-child {
    padding-left: 0;
}

.trust-band-grid > div:last-child {
    border-right: 0;
}

.trust-band strong {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -.05em;
}

.trust-band span {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Contact */
.contact-page {
    background: var(--paper);
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.contact-details > p:not(.eyebrow) {
    max-width: 570px;
    color: var(--muted);
}

.contact-cards {
    margin-top: 54px;
    border-top: 1px solid var(--line);
}

.contact-card {
    display: grid;
    min-height: 102px;
    grid-template-columns: 40px 1fr 44px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transition: padding .3s var(--ease), background .3s ease;
}

.contact-card:hover {
    padding-inline: 16px;
    background: var(--white);
}

.contact-card > span {
    color: var(--blue-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
}

.contact-card div {
    display: grid;
    gap: 4px;
}

.contact-card small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: 14px;
}

.contact-card i {
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    font-style: normal;
}

.contact-form-panel {
    padding: 58px;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.contact-form-head .eyebrow {
    color: var(--blue-2);
}

.contact-form-head h2 {
    margin-bottom: 40px;
    font-size: 38px;
}

.contact-form-panel .quote-form {
    padding: 0;
    color: var(--white);
    background: transparent;
}

.contact-form-panel .field label,
.contact-form-panel .form-footer p {
    color: rgba(255, 255, 255, .52);
}

.contact-form-panel .field input,
.contact-form-panel .field select,
.contact-form-panel .field textarea {
    border-color: rgba(255, 255, 255, .18);
    color: var(--white);
}

.contact-form-panel .field select {
    color-scheme: dark;
}

.contact-form-panel .field input:focus,
.contact-form-panel .field select:focus,
.contact-form-panel .field textarea:focus {
    border-color: var(--blue);
    background: rgba(22, 184, 243, .05);
}

.location-band {
    color: var(--white);
    background: var(--blue-dark);
}

.location-inner {
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.location-inner .eyebrow {
    color: var(--blue-2);
}

.location-inner h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: 1.08;
}

/* CTA */
.cta-section {
    position: relative;
    color: var(--white);
    background: var(--blue-dark);
    overflow: hidden;
}

.cta-grid {
    position: absolute;
    inset: 0;
    mask-image: linear-gradient(to left, black, transparent 70%);
}

.cta-inner {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.cta-inner > div {
    max-width: 830px;
}

.cta-inner .eyebrow {
    color: var(--blue-2);
}

.cta-inner h2 {
    margin-bottom: 18px;
}

.cta-inner p:last-child {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

/* Footer */
.site-footer {
    color: var(--white);
    background: #040b12;
}

.footer-marquee {
    padding: 27px 0;
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
}

.footer-marquee > div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    animation: footer-scroll 28s linear infinite;
}

@keyframes footer-scroll {
    to { transform: translateX(-50%); }
}

.footer-marquee span {
    color: rgba(255, 255, 255, .16);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(36px, 4.6vw, 72px);
    font-weight: 600;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.footer-marquee i {
    color: var(--blue);
    font-style: normal;
    font-size: 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .65fr .65fr 1fr;
    gap: 70px;
    padding-top: 88px;
    padding-bottom: 80px;
}

.footer-brand img {
    width: 300px;
    height: auto;
    margin-bottom: 32px;
}

.footer-brand p {
    max-width: 440px;
    color: rgba(255, 255, 255, .5);
}

.footer-brand .text-link {
    margin-top: 16px;
}

.footer-label {
    margin-bottom: 24px;
    color: var(--blue-2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-column,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column a,
.footer-contact a {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    transition: color .25s ease;
}

.footer-column a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact .footer-phone {
    margin-bottom: 4px;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.footer-contact a:last-child {
    margin-top: 14px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 26px;
    padding-bottom: 26px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-fab {
    position: fixed;
    z-index: 70;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 15px 7px 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    color: var(--white);
    background: rgba(7, 17, 29, .9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
}

.whatsapp-fab span {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--success);
    place-items: center;
    font-size: 9px;
    font-weight: 900;
}

.whatsapp-fab strong {
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.not-found {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 180px 0 100px;
    color: var(--white);
    background: var(--ink);
}

.not-found .eyebrow {
    color: var(--blue-2);
}

.not-found h1 {
    max-width: 820px;
    margin-bottom: 20px;
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: .92;
}

.not-found p:not(.eyebrow) {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .58);
}

@media (max-width: 1180px) {
    :root {
        --container: 1080px;
    }

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

    .brand {
        flex-basis: 220px;
    }

    .brand img {
        width: 220px;
    }

    .primary-nav {
        gap: 19px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding-left: 6px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 40px;
    }

    .statement-grid {
        grid-template-columns: 140px minmax(0, 1fr) 280px;
        gap: 40px;
    }

    .service-panel {
        grid-template-columns: 60px 230px minmax(0, 1fr) 58px;
        gap: 28px;
    }

    .about-teaser-grid,
    .service-detail-grid {
        gap: 60px;
    }

    .home-contact-grid,
    .contact-layout {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.25fr .65fr .65fr 1fr;
        gap: 38px;
    }
}

@media (max-width: 960px) {
    .section {
        padding: 96px 0;
    }

    .utility-bar {
        display: none;
    }

    .site-header {
        position: absolute;
    }

    .nav-inner {
        min-height: 78px;
    }

    .brand {
        flex-basis: auto;
        margin-right: auto;
    }

    .brand img {
        width: 235px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .menu-toggle-icon {
        position: relative;
        display: block;
        width: 34px;
        height: 34px;
        border: 1px solid var(--line-light);
        border-radius: 50%;
    }

    .menu-toggle-icon i {
        position: absolute;
        left: 9px;
        width: 14px;
        height: 1px;
        background: var(--white);
        transition: transform .25s ease, top .25s ease;
    }

    .menu-toggle-icon i:first-child {
        top: 13px;
    }

    .menu-toggle-icon i:last-child {
        top: 19px;
    }

    .menu-toggle[aria-expanded="true"] i:first-child {
        top: 16px;
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] i:last-child {
        top: 16px;
        transform: rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        display: flex;
        width: min(86vw, 430px);
        height: 100vh;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 110px 38px 40px;
        visibility: hidden;
        background: var(--ink);
        box-shadow: -30px 0 60px rgba(0, 0, 0, .25);
        opacity: 0;
        transform: translateX(100%);
        transition: visibility .4s, opacity .4s ease, transform .5s var(--ease);
    }

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

    .primary-nav > a,
    .nav-dropdown > button {
        width: 100%;
        padding: 17px 0;
        border-bottom: 1px solid var(--line-light);
        font-family: "Space Grotesk", sans-serif;
        font-size: 23px;
        letter-spacing: -.02em;
        text-align: left;
    }

    .primary-nav > a::after,
    .nav-dropdown > button::after {
        display: none;
    }

    .dropdown-panel {
        position: static;
        display: none;
        width: 100%;
        padding: 5px 0 12px;
        visibility: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .nav-dropdown.is-open .dropdown-panel {
        display: block;
    }

    .dropdown-panel a {
        padding: 12px 0;
        color: rgba(255, 255, 255, .72);
    }

    .dropdown-panel a + a {
        border-color: var(--line-light);
    }

    .dropdown-panel a:hover {
        color: var(--white);
        background: transparent;
    }

    .nav-cta {
        min-height: 42px;
        padding: 0 5px 0 15px;
    }

    .nav-cta span {
        display: inline;
    }

    .hero {
        min-height: 820px;
    }

    .hero-content {
        height: calc(100% - 120px);
        min-height: 660px;
        grid-template-columns: 1fr;
        padding-top: 110px;
    }

    .hero-copy {
        align-self: center;
    }

    .hero-aside {
        display: none;
    }

    .hero-foot {
        min-height: 120px;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stat {
        padding: 20px;
    }

    .scroll-cue {
        display: none;
    }

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

    .statement-copy {
        max-width: 620px;
        margin-left: auto;
    }

    .service-panel {
        min-height: 220px;
        grid-template-columns: 50px 190px minmax(0, 1fr) 50px;
        gap: 20px;
    }

    .service-copy p {
        font-size: 14px;
    }

    .featured-projects {
        grid-template-columns: 1fr 1fr;
    }

    .featured-project:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 520px;
    }

    .precision-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .precision-line {
        display: none;
    }

    .precision-sticky {
        position: static;
    }

    .about-teaser-grid,
    .service-detail-grid,
    .home-contact-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-teaser-copy {
        max-width: 720px;
    }

    .process-grid,
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .editorial-grid {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 50px;
    }

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

    .service-gallery-item:nth-child(2),
    .service-gallery-item:nth-child(7) {
        grid-column: auto;
    }

    .mission-card {
        min-height: 460px;
        padding: 45px;
    }

    .trust-band-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }

    .trust-band-grid > div:nth-child(2) {
        border-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--line-light);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .brand img {
        width: 205px;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle-label {
        display: none;
    }

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

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(4, 12, 21, .94), rgba(4, 12, 21, .55)),
            linear-gradient(0deg, rgba(4, 12, 21, .96), transparent 60%);
    }

    .hero-content {
        min-height: 660px;
        padding-top: 118px;
        padding-bottom: 120px;
    }

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

    .hero-lead {
        font-size: 16px;
    }

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

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

    .hero-foot {
        position: absolute;
        min-height: 92px;
    }

    .hero-stat {
        display: grid;
        gap: 1px;
        padding: 14px 10px;
    }

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

    .hero-stat strong {
        font-size: 24px;
    }

    .hero-stat span {
        font-size: 8px;
    }

    .section-heading h2,
    .split-heading h2,
    .editorial-copy h2,
    .about-teaser-copy h2,
    .precision-sticky h2,
    .home-contact-copy h2,
    .contact-details h2,
    .cta-inner h2,
    .mission-card h2 {
        font-size: clamp(36px, 11vw, 49px);
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 45px;
    }

    .service-panel {
        grid-template-columns: 34px 1fr 40px;
        gap: 14px;
        padding: 26px 0;
    }

    .service-image {
        grid-column: 2 / 4;
        grid-row: 1;
        height: 180px;
    }

    .service-number {
        grid-column: 1;
        grid-row: 2;
        padding-top: 7px;
    }

    .service-copy {
        grid-column: 2;
        grid-row: 2;
        padding: 0;
    }

    .service-copy strong {
        font-size: 29px;
    }

    .service-copy p {
        display: none;
    }

    .service-arrow {
        grid-column: 3;
        grid-row: 2;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .featured-projects {
        grid-template-columns: 1fr;
    }

    .featured-project,
    .featured-project:first-child {
        grid-column: auto;
        min-height: 390px;
    }

    .featured-project span {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-project small {
        text-align: left;
    }

    .about-teaser-media {
        min-height: 500px;
    }

    .about-teaser-media > img {
        width: calc(100% - 30px);
        height: 500px;
    }

    .experience-badge {
        width: 200px;
        height: 150px;
        padding: 22px;
    }

    .experience-badge strong {
        font-size: 46px;
    }

    .process-grid,
    .values-grid,
    .benefits-grid,
    .mission-grid,
    .project-grid,
    .reference-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .value-card,
    .benefit-card {
        min-height: 280px;
    }

    .value-card > span,
    .benefit-card span {
        margin-bottom: 70px;
    }

    .mission-card {
        min-height: auto;
        padding: 42px 28px;
    }

    .mission-card + .mission-card {
        border-top: 0;
        border-left: 1px solid var(--line);
    }

    .reference-logo {
        width: 220px;
    }

    .home-contact {
        padding: 90px 0;
    }

    .quote-form,
    .quote-form.is-compact,
    .quote-form-wrap.is-compact .quote-form {
        padding: 26px 20px;
    }

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

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

    .page-hero {
        min-height: 630px;
    }

    .page-hero-content {
        display: block;
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .breadcrumbs {
        margin-bottom: 80px;
    }

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

    .page-hero-summary {
        font-size: 16px;
    }

    .page-hero-index {
        display: none;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .editorial-marker {
        display: flex;
        align-items: flex-end;
        gap: 16px;
    }

    .editorial-marker span {
        margin: 0;
    }

    .prose-columns {
        columns: 1;
    }

    .service-detail-grid {
        gap: 48px;
    }

    .service-detail-media {
        height: 480px;
    }

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

    .service-gallery-grid {
        gap: 10px;
    }

    .service-gallery-item {
        height: 190px;
    }

    .project-media,
    .project-card:nth-child(6n + 1) .project-media,
    .project-card:nth-child(6n + 5) .project-media {
        height: 330px;
    }

    .contact-form-panel {
        padding: 38px 20px;
    }

    .contact-form-panel .quote-form {
        padding: 0;
    }

    .contact-card {
        grid-template-columns: 32px 1fr 38px;
        gap: 12px;
    }

    .location-inner,
    .cta-inner {
        min-height: 420px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        padding-block: 70px;
    }

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

    .trust-band-grid > div {
        padding: 18px;
    }

    .trust-band-grid > div:first-child {
        padding-left: 18px;
    }

    .trust-band strong {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 24px;
        padding-top: 65px;
    }

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

    .footer-brand img {
        width: 255px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-fab strong {
        display: none;
    }

    .whatsapp-fab {
        padding: 6px;
    }

    .lightbox {
        width: 96vw;
        height: 88vh;
        padding: 55px 18px 30px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 8px;
        transform: none;
    }

    .lightbox-nav.prev {
        left: 18px;
    }

    .lightbox-nav.next {
        right: 18px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
