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

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

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

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

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --navy-950: #03283d;
    --navy-900: #053753;
    --navy-800: #074a6b;
    --blue-600: #0878a6;
    --orange-500: #ff7919;
    --orange-400: #ff922e;
    --amber-400: #ffb228;
    --cream-100: #f5f2ec;
    --cream-50: #faf9f6;
    --white: #ffffff;
    --ink: #0a2c3d;
    --muted: #5e6f78;
    --line: rgba(7, 58, 86, .15);
    --container: 1240px;
    --header-height: 88px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--ink);
    background: var(--cream-50);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

svg {
    display: block;
}

::selection {
    color: var(--white);
    background: var(--orange-500);
}

:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 4px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.svg-sprite symbol,
.svg-sprite path,
.svg-sprite rect,
.svg-sprite circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-950);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

.section {
    position: relative;
    padding-block: 132px;
}

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

.eyebrow > span:not(.eyebrow-line) {
    color: var(--orange-500);
}

.eyebrow-line {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.section-heading h2,
.process-head h2,
.commitment-copy h2,
.contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .98;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 78px;
}

.section-heading--split > p,
.projects-intro > p {
    max-width: 450px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 16px;
}

.button {
    display: inline-flex;
    min-height: 58px;
    gap: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .035em;
    line-height: 1;
    transition: color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

.button svg,
.header-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .35s var(--ease);
}

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

.button:hover svg,
.header-cta:hover svg {
    transform: translate(3px, -3px);
}

.button--primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    box-shadow: 0 14px 35px rgba(255, 121, 25, .18);
}

.button--primary:hover {
    box-shadow: 0 18px 44px rgba(255, 121, 25, .32);
}

.button--navy {
    color: var(--white);
    background: var(--navy-900);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 600;
}

.text-link-icon {
    display: grid;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    place-items: center;
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}

.text-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.text-link:hover .text-link-icon {
    color: var(--navy-950);
    border-color: var(--orange-500);
    background: var(--orange-500);
    transform: translateX(4px);
}

.text-link--dark {
    color: var(--ink);
}

.text-link--dark .text-link-icon {
    border-color: rgba(7, 58, 86, .3);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: height .4s var(--ease), color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
    height: 74px;
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 35px rgba(4, 40, 61, .07);
    backdrop-filter: blur(16px);
}

.site-header--solid {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
}

.brand {
    position: relative;
    z-index: 2;
    display: block;
    width: 190px;
    height: 52px;
}

.menu-open .brand {
    z-index: 103;
}

.brand-logo {
    position: absolute;
    inset: 0 auto 0 0;
    width: 190px;
    height: 52px;
    object-fit: contain;
    object-position: left center;
    transition: opacity .25s ease;
}

.brand-logo--dark,
.site-header.is-scrolled .brand-logo--light,
.menu-open .brand-logo--light {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark,
.menu-open .brand-logo--dark {
    opacity: 1;
}

.site-header--solid .brand-logo--light {
    opacity: 0;
}

.site-header--solid .brand-logo--dark {
    opacity: 1;
}

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

.desktop-nav a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .045em;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--orange-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

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

.header-cta {
    display: flex;
    height: 42px;
    gap: 16px;
    align-items: center;
    margin-left: 38px;
    padding: 0 17px;
    color: var(--navy-950);
    background: var(--orange-500);
    font-size: 11px;
    font-weight: 700;
}

.menu-toggle {
    position: relative;
    z-index: 102;
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
}

.menu-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, transform .3s ease;
}

.menu-toggle .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) scale(.7);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(.7);
}

.menu-toggle[aria-expanded="true"] .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
}

.mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 45px) max(28px, 8vw) 38px;
    overflow-x: hidden;
    overflow-y: hidden;
    color: var(--ink);
    background:
        linear-gradient(rgba(7, 58, 86, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 58, 86, .06) 1px, transparent 1px),
        var(--cream-50);
    background-size: 44px 44px;
    opacity: 0;
    overscroll-behavior: none;
    pointer-events: none;
    transform: translateY(-16px);
    transition: visibility .4s, opacity .35s ease, transform .45s var(--ease);
}

.mobile-menu::after {
    position: absolute;
    z-index: 0;
    right: -50px;
    bottom: -75px;
    width: 270px;
    height: 270px;
    border: 55px solid rgba(255, 121, 25, .14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu nav {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 0;
    flex-direction: column;
    flex: 0 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(7, 58, 86, .22) transparent;
    scrollbar-width: thin;
    touch-action: pan-y;
}

.mobile-menu nav a {
    display: flex;
    gap: 20px;
    align-items: baseline;
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 8vw, 58px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.mobile-menu nav span {
    color: var(--orange-500);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.mobile-menu-contact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    margin-top: 27px;
    padding-top: 21px;
    flex: 0 0 auto;
    border-top: 1px solid var(--line);
}

.mobile-menu-contact-label {
    grid-column: 1 / -1;
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mobile-menu-contact a,
.mobile-menu-contact p {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    margin: 0;
}

.mobile-menu-contact p {
    grid-column: 1 / -1;
}

.mobile-menu-contact small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mobile-menu-contact strong {
    overflow-wrap: anywhere;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

/* Hero */
.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero-orb {
    position: absolute;
    top: -300px;
    left: 28%;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.hero-orb::before,
.hero-orb::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.hero-orb::before {
    inset: 75px;
}

.hero-orb::after {
    inset: 155px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 820px;
    grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
    gap: 5vw;
    align-items: center;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 112px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
    padding-bottom: 10px;
}

.mobile-only {
    display: none;
}

.hero-eyebrow {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .62);
    opacity: 0;
    animation: fade-up .8s .12s var(--ease) forwards;
}

.hero h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(52px, 5.6vw, 82px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .95;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding-right: .12em;
}

.hero-line > span {
    display: block;
    transform: translateY(110%);
    animation: line-reveal .9s var(--ease) forwards;
}

.hero-line:nth-child(1) > span {
    animation-delay: .2s;
}

.hero-line:nth-child(2) > span {
    animation-delay: .3s;
}

.hero-line:nth-child(3) > span {
    animation-delay: .4s;
}

.hero-line--accent {
    color: var(--orange-500);
}

.hero-description {
    max-width: 560px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    opacity: 0;
    animation: fade-up .9s .55s var(--ease) forwards;
}

.hero-actions {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 38px;
    opacity: 0;
    animation: fade-up .9s .68s var(--ease) forwards;
}

.hero-visual {
    position: relative;
    height: min(68vh, 610px);
    min-height: 500px;
    opacity: 0;
    transform: translateX(45px);
    animation: visual-reveal 1.1s .25s var(--ease) forwards;
}

.hero-image-wrap {
    position: absolute;
    z-index: 1;
    inset: 0 0 0 5%;
    overflow: hidden;
    background: var(--navy-800);
    clip-path: polygon(15% 0, 100% 0, 100% 84%, 84% 100%, 0 100%, 0 15%);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(4, 40, 61, .04) 25%, rgba(4, 40, 61, .54) 100%);
    content: "";
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.06);
    animation: hero-zoom 9s 1s var(--ease) forwards;
}

.hero-corner {
    position: absolute;
    z-index: 0;
    top: -14px;
    right: -14px;
    width: 58%;
    height: 48%;
    border-top: 2px solid var(--orange-500);
    border-right: 2px solid var(--orange-500);
}

.hero-corner::after {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 12px;
    height: 12px;
    background: var(--orange-500);
    content: "";
}

.hero-project-note {
    position: absolute;
    z-index: 4;
    right: -28px;
    bottom: 48px;
    display: flex;
    width: 235px;
    gap: 13px;
    align-items: center;
    padding: 17px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(3, 25, 38, .2);
    backdrop-filter: blur(12px);
}

.status-dot {
    position: relative;
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #22a86c;
}

.status-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(34, 168, 108, .35);
    border-radius: 50%;
    content: "";
    animation: pulse 2s infinite;
}

.hero-project-note small,
.hero-project-note strong {
    display: block;
}

.hero-project-note small {
    margin-bottom: 1px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-project-note strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.hero-seal {
    position: absolute;
    z-index: 3;
    bottom: -31px;
    left: -34px;
    display: grid;
    width: 116px;
    height: 116px;
    color: var(--white);
    border-radius: 50%;
    background: var(--orange-500);
    place-items: center;
}

.hero-seal svg {
    position: absolute;
    inset: 8px;
    width: 100px;
    height: 100px;
    overflow: visible;
    animation: spin 18s linear infinite;
}

.hero-seal text {
    fill: var(--navy-950);
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .8px;
}

.hero-seal .seal-ring {
    fill: none;
    stroke: rgba(3, 40, 61, .16);
    stroke-width: .75;
}

.hero-seal > span {
    color: var(--navy-950);
    font-family: "Space Grotesk", sans-serif;
    font-size: 35px;
    font-weight: 700;
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-bottom-inner {
    display: grid;
    height: 72px;
    grid-template-columns: repeat(4, auto) 1fr;
    gap: 34px;
    align-items: center;
}

.hero-bottom p {
    display: flex;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-bottom p span {
    color: var(--orange-500);
}

.scroll-cue {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-self: end;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 1px;
    height: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--orange-500);
    content: "";
    transform: translateY(-100%);
    animation: scroll-line 2s infinite;
}

/* Marquee */
.intro-strip {
    overflow: hidden;
    color: var(--navy-950);
    background: linear-gradient(90deg, var(--orange-500), var(--amber-400));
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    flex: none;
    align-items: center;
    animation: marquee 24s linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    width: max-content;
    min-width: 100vw;
    flex: 0 0 auto;
    gap: clamp(24px, 2.6vw, 52px);
    align-items: center;
    justify-content: space-around;
    padding: 20px clamp(16px, 2vw, 36px);
}

.marquee-group span {
    white-space: nowrap;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.marquee-group i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: var(--navy-950);
    transform: rotate(45deg);
}

/* About */
.about {
    overflow: hidden;
    background:
        radial-gradient(circle at 93% 12%, rgba(8, 120, 166, .08), transparent 20%),
        var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
    gap: 9vw;
    align-items: center;
}

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

.about-image-main {
    position: absolute;
    inset: 0 12% 0 0;
    overflow: hidden;
    clip-path: polygon(0 0, 87% 0, 100% 13%, 100% 100%, 0 100%);
}

.about-image-main::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(4, 40, 61, .27));
    content: "";
}

.about-image-main img,
.about-image-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-detail {
    position: absolute;
    right: 0;
    bottom: 48px;
    width: 42%;
    height: 210px;
    overflow: hidden;
    border: 9px solid var(--cream-50);
}

.about-image-detail img {
    object-position: center;
}

.about-badge {
    position: absolute;
    right: 4%;
    bottom: -22px;
    width: 174px;
    padding: 19px 20px;
    color: var(--white);
    background: var(--navy-900);
}

.about-badge::before {
    position: absolute;
    top: -8px;
    left: 0;
    width: 50px;
    height: 8px;
    background: var(--orange-500);
    content: "";
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
}

.about-badge span {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-content .lead {
    margin: 0 0 22px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.35;
}

.about-content > p:not(.lead) {
    margin: 0;
    color: var(--muted);
}

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

.value-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.value-item > span {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    color: var(--white);
    border-radius: 50%;
    background: var(--orange-500);
    place-items: center;
}

.value-item svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.value-item strong,
.value-item small {
    display: block;
}

.value-item strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.value-item small {
    color: var(--muted);
    font-size: 11px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 116px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle {
    min-height: 172px;
    padding: 32px 38px;
    border-right: 1px solid var(--line);
}

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

.principle strong,
.principle sup {
    color: var(--navy-900);
    font-family: "Space Grotesk", sans-serif;
}

.principle strong {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.principle sup {
    margin-left: 3px;
    color: var(--orange-500);
    font-size: 21px;
    font-weight: 600;
}

.principle > span {
    display: block;
    max-width: 215px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.5;
    text-transform: uppercase;
}

.principle--word strong {
    font-size: 41px;
}

/* Services */
.services {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.services::before {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
    background-size: 86px 86px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.services-shape {
    position: absolute;
    top: -260px;
    right: -170px;
    width: 610px;
    height: 610px;
    border: 115px solid rgba(8, 120, 166, .17);
    border-radius: 50%;
}

.services .container {
    position: relative;
    z-index: 2;
}

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

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

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.service-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 39px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background-color .45s var(--ease), transform .45s var(--ease);
}

.service-card::before {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 170px;
    height: 170px;
    border: 38px solid rgba(255, 255, 255, .025);
    border-radius: 50%;
    content: "";
    transition: border-color .4s ease, transform .6s var(--ease);
}

.service-card:hover {
    background: var(--navy-900);
}

.service-card:hover::before {
    border-color: rgba(255, 121, 25, .13);
    transform: scale(1.25);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.service-number {
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--orange-500);
    border: 1px solid rgba(255, 255, 255, .17);
    place-items: center;
    transition: color .4s ease, border-color .4s ease, background-color .4s ease;
}

.service-card:hover .service-icon {
    color: var(--navy-950);
    border-color: var(--orange-500);
    background: var(--orange-500);
}

.service-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin: 0 0 17px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.service-card > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.service-detail {
    position: absolute;
    right: 90px;
    bottom: 35px;
    left: 39px;
    padding-top: 15px;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.service-arrow {
    position: absolute;
    right: 38px;
    bottom: 29px;
    color: rgba(255, 255, 255, .36);
    transition: color .3s ease, transform .35s var(--ease);
}

.service-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.service-card:hover .service-arrow {
    color: var(--orange-500);
    transform: translate(3px, -3px);
}

/* Process */
.process {
    background:
        radial-gradient(circle at 8% 86%, rgba(255, 121, 25, .08), transparent 18%),
        var(--white);
}

.process-head {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 9vw;
    align-items: end;
}

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

.process-copy span {
    display: block;
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 85px;
}

.process-step {
    position: relative;
    padding: 0 35px 0 0;
    transition-delay: var(--delay, 0ms) !important;
}

.process-line {
    position: relative;
    height: 1px;
    margin-bottom: 30px;
    overflow: visible;
    background: var(--line);
}

.process-line::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 3px solid var(--cream-50);
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 0 1px rgba(255, 121, 25, .35);
    content: "";
}

.process-line span {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s var(--ease);
}

.process-step.is-visible .process-line span {
    transform: scaleX(1);
}

.process-number {
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.process-step h3 {
    margin: 18px 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.process-step p {
    max-width: 235px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Projects */
.projects {
    background: var(--cream-100);
}

.projects-intro .text-link {
    margin-top: 22px;
}

.project-grid {
    display: grid;
    grid-auto-rows: 335px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;
    overflow: hidden;
    min-height: 335px;
    cursor: pointer;
    color: var(--white);
    background: var(--navy-900);
}

.project-card-trigger {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.project-card-trigger:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: -7px;
}

.project-card--wide {
    grid-row: span 2;
}

.project-card--tall {
    min-height: 335px;
}

.project-card:nth-child(4) {
    grid-column: 1 / -1;
}

.project-image,
.project-overlay {
    position: absolute;
    inset: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .6s ease;
}

.project-card--wide .project-image img {
    object-position: center;
}

.project-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 40, 61, .08) 30%, rgba(3, 40, 61, .86) 100%);
    transition: background .5s ease;
}

.project-card:hover .project-image img {
    filter: saturate(.86);
    transform: scale(1.055);
}

.project-card:hover .project-overlay {
    background: linear-gradient(180deg, rgba(3, 40, 61, .03) 20%, rgba(3, 40, 61, .9) 100%);
}

.project-index {
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 28px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.project-index::after {
    display: inline-block;
    width: 29px;
    height: 1px;
    margin: 0 0 3px 8px;
    background: var(--orange-500);
    content: "";
}

.project-info {
    position: absolute;
    z-index: 2;
    right: 80px;
    bottom: 28px;
    left: 28px;
}

.project-info span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-info h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.project-link {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 26px;
    display: grid;
    width: 43px;
    height: 43px;
    color: var(--navy-950);
    background: var(--orange-500);
    place-items: center;
    transform: translate(7px, 7px);
    transition: transform .4s var(--ease);
}

.project-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.project-card:hover .project-link {
    transform: translate(0, 0);
}

.project-disclaimer {
    margin: 20px 0 0;
    color: #7b898f;
    font-size: 10px;
}

/* Commitment */
.commitment {
    overflow: hidden;
    background: var(--white);
}

.commitment::before {
    position: absolute;
    top: -150px;
    left: -140px;
    width: 370px;
    height: 370px;
    border: 70px solid rgba(8, 120, 166, .045);
    border-radius: 50%;
    content: "";
}

.commitment-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(480px, .95fr);
    gap: 11vw;
    align-items: center;
}

.commitment-copy h2 {
    max-width: 610px;
}

.commitment-copy > p {
    max-width: 540px;
    margin: 30px 0 34px;
    color: var(--muted);
}

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

.commitment-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 23px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.commitment-list article > span {
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.commitment-list h3 {
    margin: 0 0 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.035em;
}

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

/* Contact */
.contact {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.contact-pattern {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, black, transparent 72%);
}

.contact::after {
    position: absolute;
    right: -230px;
    bottom: -300px;
    width: 700px;
    height: 700px;
    border: 130px solid rgba(8, 120, 166, .16);
    border-radius: 50%;
    content: "";
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(470px, .72fr);
    gap: 10vw;
    align-items: center;
}

.eyebrow--orange {
    color: rgba(255, 255, 255, .58);
}

.contact-copy h2 {
    color: var(--white);
    font-size: clamp(51px, 6vw, 82px);
}

.contact-copy h2 em {
    color: var(--orange-500);
    font-style: normal;
}

.contact-copy > p {
    max-width: 520px;
    margin: 30px 0 38px;
    color: rgba(255, 255, 255, .58);
}

.contact-details {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.contact-details a {
    display: flex;
    gap: 13px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.contact-details svg {
    width: 22px;
    height: 22px;
    color: var(--orange-500);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-details small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .4);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-form {
    padding: 42px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 30px 80px rgba(2, 23, 35, .25);
}

.contact-form label {
    display: block;
    margin-bottom: 21px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(7, 58, 86, .22);
    border-radius: 0;
    outline: none;
    background: transparent;
    font-size: 13px;
    transition: border-color .25s ease;
}

.contact-form input,
.contact-form select {
    height: 43px;
}

.contact-form textarea {
    padding: 9px 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange-500);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa5aa;
}

.form-note {
    margin: 13px 0 0;
    color: #819096;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

/* Footer */
.site-footer {
    color: var(--ink);
    background: var(--cream-100);
}

.footer-main {
    position: relative;
    display: grid;
    min-height: 325px;
    grid-template-columns: 1.5fr .65fr .9fr;
    gap: 7vw;
    align-items: start;
    padding-block: 70px;
    overflow: hidden;
}

.footer-brand img {
    width: 218px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: var(--muted);
    transition: color .25s ease, transform .25s ease;
}

.footer-column a:hover {
    color: var(--orange-500);
    transform: translateX(3px);
}

.footer-column p {
    max-width: 210px;
    margin: 0;
    color: var(--muted);
}

.footer-mark {
    position: absolute;
    right: -30px;
    bottom: -126px;
    color: rgba(7, 58, 86, .035);
    font-family: "Space Grotesk", sans-serif;
    font-size: 390px;
    font-weight: 700;
    letter-spacing: -.12em;
    line-height: 1;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #77878e;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: flex;
    height: 52px;
    gap: 9px;
    align-items: center;
    padding: 0 18px;
    color: var(--white);
    border-radius: 30px;
    background: #1ca765;
    box-shadow: 0 12px 30px rgba(4, 40, 61, .22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 16px 36px rgba(4, 40, 61, .3);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* About page */
.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 76px) 0 0;
    background:
        radial-gradient(circle at 92% 14%, rgba(8, 120, 166, .09), transparent 20%),
        var(--cream-50);
}

.about-page-grid {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(7, 58, 86, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 58, 86, .06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 60%);
}

.about-page-hero-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .55fr);
    gap: 9vw;
    align-items: end;
    padding-bottom: 72px;
}

.page-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 52px;
    color: #819096;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.page-breadcrumb a {
    transition: color .25s ease;
}

.page-breadcrumb a:hover {
    color: var(--orange-500);
}

.page-breadcrumb span {
    color: var(--orange-500);
}

.page-breadcrumb strong {
    color: var(--navy-900);
    font-weight: 700;
}

.about-page-title-wrap .eyebrow {
    margin-bottom: 26px;
}

.about-page-title-wrap h1 {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 6.6vw, 94px);
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: .94;
}

.about-page-title-wrap h1 em {
    color: var(--orange-500);
    font-style: normal;
}

.about-page-lead {
    position: relative;
    padding: 28px 0 5px 33px;
    border-left: 1px solid var(--line);
}

.about-page-lead-mark {
    position: absolute;
    top: -42px;
    left: 25px;
    color: rgba(7, 58, 86, .07);
    font-family: "Space Grotesk", sans-serif;
    font-size: 108px;
    font-weight: 700;
    line-height: 1;
}

.about-page-lead p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.about-page-visual {
    position: relative;
    z-index: 2;
    height: 570px;
}

.about-page-visual::before {
    position: absolute;
    z-index: 2;
    top: -12px;
    right: 0;
    width: 32%;
    height: 12px;
    background: var(--orange-500);
    content: "";
}

.about-page-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 93% 100%, 0 100%);
}

.about-page-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 40, 61, .15), transparent 58%);
    content: "";
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
    transition: transform 1.2s var(--ease);
}

.about-page-visual:hover .about-page-image img {
    transform: scale(1.025);
}

.about-page-image-label {
    position: absolute;
    z-index: 3;
    right: 6%;
    bottom: -34px;
    width: 264px;
    padding: 25px 28px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 22px 50px rgba(3, 40, 61, .2);
}

.about-page-image-label::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--orange-500);
    content: "";
}

.about-page-image-label small,
.about-page-image-label strong {
    display: block;
}

.about-page-image-label small {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .52);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-page-image-label strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.about-page-image-index {
    position: absolute;
    z-index: 3;
    bottom: 22px;
    left: 25px;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.about-story {
    padding-top: 168px;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(230px, .42fr) minmax(0, 1.2fr);
    gap: 9vw;
}

.about-story-aside {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    padding: 33px;
    color: var(--white);
    background: var(--navy-950);
}

.about-story-aside::after {
    position: absolute;
    right: -70px;
    bottom: -75px;
    width: 210px;
    height: 210px;
    border: 40px solid rgba(8, 120, 166, .18);
    border-radius: 50%;
    content: "";
}

.about-story-aside .eyebrow {
    color: rgba(255, 255, 255, .55);
}

.about-story-monogram {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--orange-500);
    font-family: "Space Grotesk", sans-serif;
    font-size: 210px;
    font-weight: 700;
    letter-spacing: -.12em;
    line-height: .8;
    transform: translate(-53%, -52%);
}

.about-story-aside > p {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 33px;
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.6;
    text-transform: uppercase;
}

.about-story-copy {
    align-self: center;
}

.about-story-copy h2,
.about-direction-head h2,
.about-values-head h2,
.about-collaboration-copy h2,
.about-cta h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.about-story-copy h2 {
    max-width: 820px;
}

.about-story-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 42px;
}

.about-story-columns p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.about-story-copy blockquote {
    position: relative;
    margin: 47px 0 0;
    padding: 24px 0 0 34px;
    color: var(--navy-900);
    border-top: 1px solid var(--line);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.45;
}

.about-story-copy blockquote::before {
    position: absolute;
    top: 23px;
    left: 0;
    color: var(--orange-500);
    content: "“";
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1;
}

.about-direction {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.about-direction-lines {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(90deg, black, transparent 85%);
}

.about-direction::after {
    position: absolute;
    top: -260px;
    right: -170px;
    width: 620px;
    height: 620px;
    border: 100px solid rgba(8, 120, 166, .14);
    border-radius: 50%;
    content: "";
}

.about-direction .container {
    position: relative;
    z-index: 2;
}

.about-direction-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .55fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 70px;
}

.about-direction-head .eyebrow {
    color: rgba(255, 255, 255, .55);
}

.about-direction-head h2 {
    color: var(--white);
}

.about-direction-head > p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.about-direction-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.direction-card {
    position: relative;
    min-height: 440px;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background-color .4s var(--ease);
}

.direction-card:hover {
    background: rgba(7, 74, 107, .48);
}

.direction-number {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.direction-card-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 72px;
    height: 72px;
}

.direction-card-icon i {
    position: absolute;
    border: 1px solid rgba(255, 121, 25, .65);
    border-radius: 50%;
}

.direction-card-icon i:nth-child(1) { inset: 0; }
.direction-card-icon i:nth-child(2) { inset: 12px; }
.direction-card-icon i:nth-child(3) { inset: 25px; background: var(--orange-500); }

.direction-card-icon--mission i {
    border-radius: 0;
    transform: rotate(45deg);
}

.direction-card-icon--mission i:nth-child(1) {
    inset: 5px;
}

.direction-card-icon--mission i:nth-child(2) {
    inset: 23px;
    background: var(--orange-500);
}

.direction-card h3 {
    margin: 105px 0 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 37px;
    font-weight: 500;
    letter-spacing: -.045em;
}

.direction-card > p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: 14px;
}

.direction-card ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.direction-card li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 0;
    color: rgba(255, 255, 255, .62);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

.direction-card li > span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: var(--navy-950);
    border-radius: 50%;
    background: var(--orange-500);
    place-items: center;
}

.direction-card li svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.about-values {
    background: var(--cream-100);
}

.about-values-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .55fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 70px;
}

.about-values-head .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -5px;
}

.about-values-head > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 14px;
}

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

.about-value-card {
    min-height: 320px;
    padding: 31px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .4s var(--ease), background-color .4s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.about-value-card:hover {
    color: var(--white);
    background: var(--navy-900);
}

.about-value-number {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.about-value-line {
    height: 1px;
    margin: 58px 0 35px;
    overflow: hidden;
    background: var(--line);
}

.about-value-line i {
    display: block;
    width: 36%;
    height: 100%;
    background: var(--orange-500);
    transition: width .5s var(--ease);
}

.about-value-card:hover .about-value-line {
    background: rgba(255, 255, 255, .18);
}

.about-value-card:hover .about-value-line i {
    width: 100%;
}

.about-value-card h3 {
    margin: 0 0 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    transition: color .4s ease;
}

.about-value-card:hover p {
    color: rgba(255, 255, 255, .58);
}

.about-collaboration {
    background: var(--white);
}

.about-collaboration-grid {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1fr);
    gap: 10vw;
    align-items: center;
}

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

.about-collaboration-image {
    position: absolute;
    inset: 0 10% 0 0;
    overflow: hidden;
    clip-path: polygon(0 0, 87% 0, 100% 12%, 100% 100%, 0 100%);
}

.about-collaboration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.about-collaboration-visual::before {
    position: absolute;
    z-index: 2;
    top: -13px;
    left: -13px;
    width: 45%;
    height: 43%;
    border-top: 2px solid var(--orange-500);
    border-left: 2px solid var(--orange-500);
    content: "";
}

.about-collaboration-stamp {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 43px;
    width: 180px;
    padding: 22px;
    color: var(--white);
    background: var(--navy-900);
}

.about-collaboration-stamp::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 7px;
    background: var(--orange-500);
    content: "";
}

.about-collaboration-stamp strong,
.about-collaboration-stamp span {
    display: block;
}

.about-collaboration-stamp strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
}

.about-collaboration-stamp span {
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-collaboration-copy > p {
    max-width: 620px;
    margin: 29px 0 40px;
    color: var(--muted);
}

.about-collaboration-points {
    border-top: 1px solid var(--line);
}

.about-collaboration-points > div {
    display: grid;
    grid-template-columns: 38px .65fr 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.about-collaboration-points span {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
}

.about-collaboration-points strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.about-collaboration-points p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.about-cta {
    position: relative;
    overflow: hidden;
    padding-block: 105px;
    color: var(--white);
    background: var(--navy-950);
}

.about-cta::before {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 66px 66px;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 70%);
}

.about-cta-shape {
    position: absolute;
    top: -220px;
    right: -170px;
    width: 550px;
    height: 550px;
    border: 105px solid rgba(255, 121, 25, .12);
    border-radius: 50%;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr .55fr;
    gap: 9vw;
    align-items: end;
}

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

.about-cta-action p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

/* Services page */
.services-page-hero {
    position: relative;
    min-height: 840px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.services-page-pattern {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(90deg, black, transparent 76%);
}

.services-page-hero::after {
    position: absolute;
    top: -330px;
    right: 24%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(255, 255, 255, .025),
        0 0 0 180px rgba(255, 255, 255, .018);
    content: "";
}

.services-page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 768px;
    grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr);
    gap: 7vw;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 95px;
}

.page-breadcrumb--dark {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .42);
}

.page-breadcrumb--dark strong {
    color: rgba(255, 255, 255, .76);
}

.services-page-hero-copy .hero-eyebrow {
    margin-bottom: 27px;
    opacity: 1;
    animation: none;
}

.services-page-hero-copy h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(56px, 6.2vw, 88px);
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: .95;
}

.services-page-hero-copy h1 em {
    color: var(--orange-500);
    font-style: normal;
}

.services-page-hero-copy > p {
    max-width: 585px;
    margin: 31px 0 36px;
    color: rgba(255, 255, 255, .6);
}

.services-page-hero-visual {
    position: relative;
    height: 570px;
}

.services-hero-image {
    position: absolute;
    overflow: hidden;
}

.services-hero-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 40, 61, .42));
    content: "";
}

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

.services-hero-image--main {
    top: 0;
    right: 0;
    width: 82%;
    height: 76%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
}

.services-hero-image--small {
    bottom: 0;
    left: 0;
    width: 48%;
    height: 42%;
    border: 8px solid var(--navy-950);
}

.services-hero-count {
    position: absolute;
    z-index: 3;
    right: 7%;
    bottom: 1px;
    display: flex;
    width: 210px;
    height: 117px;
    gap: 15px;
    align-items: center;
    padding: 20px;
    color: var(--navy-950);
    background: var(--orange-500);
}

.services-hero-count strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: 1;
}

.services-hero-count span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .11em;
    line-height: 1.5;
    text-transform: uppercase;
}

.services-hero-line {
    position: absolute;
    z-index: 4;
    top: -13px;
    right: -13px;
    width: 58%;
    height: 45%;
    border-top: 2px solid var(--orange-500);
    border-right: 2px solid var(--orange-500);
}

.services-hero-line::before {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 12px;
    height: 12px;
    background: var(--orange-500);
    content: "";
}

.services-page-hero-bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.services-page-hero-bottom .container {
    display: grid;
    min-height: 72px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.services-page-hero-bottom span {
    overflow: hidden;
    padding-right: 14px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.services-page-hero-bottom i {
    margin-right: 9px;
    color: var(--orange-500);
    font-style: normal;
}

.service-catalog {
    background:
        radial-gradient(circle at 92% 8%, rgba(8, 120, 166, .075), transparent 17%),
        var(--cream-50);
}

.service-catalog-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .55fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 76px;
}

.service-catalog-head h2,
.service-assurance-head h2,
.service-page-cta h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.service-catalog-head > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 14px;
}

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

.service-catalog-card {
    display: grid;
    min-height: 510px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border: 1px solid var(--line);
    background: var(--white);
}

.service-catalog-card--reverse .service-catalog-image {
    order: 2;
}

.service-catalog-image {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: var(--navy-900);
}

.service-catalog-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(3, 40, 61, .45));
    content: "";
}

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

.service-catalog-card:hover .service-catalog-image img {
    filter: saturate(.9);
    transform: scale(1.04);
}

.service-catalog-image > span {
    position: absolute;
    z-index: 2;
    bottom: 27px;
    left: 30px;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: 1;
}

.service-catalog-image > span::before {
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 10px;
    background: var(--orange-500);
    content: "";
}

.service-catalog-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px clamp(38px, 5vw, 74px);
}

.service-catalog-icon {
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--orange-500);
    border: 1px solid var(--line);
    place-items: center;
}

.service-catalog-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-catalog-kicker {
    margin-top: 29px;
    color: var(--blue-600);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-catalog-content h3 {
    margin: 10px 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(31px, 3.4vw, 48px);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: 1;
}

.service-catalog-content > p {
    max-width: 530px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.service-catalog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 27px;
}

.service-catalog-tags span {
    padding: 7px 10px;
    color: #60757f;
    border: 1px solid var(--line);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-modal-trigger {
    display: flex;
    width: fit-content;
    gap: 14px;
    align-items: center;
    margin-top: 31px;
    padding: 0;
    color: var(--ink);
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
}

.service-modal-trigger i {
    display: grid;
    width: 39px;
    height: 39px;
    color: var(--navy-950);
    border-radius: 50%;
    background: var(--orange-500);
    place-items: center;
    transition: transform .35s var(--ease);
}

.service-modal-trigger svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-modal-trigger:hover i {
    transform: translate(3px, -3px);
}

.service-assurance {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.service-assurance-pattern {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.service-assurance::after {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 440px;
    height: 440px;
    border: 85px solid rgba(8, 120, 166, .15);
    border-radius: 50%;
    content: "";
}

.service-assurance .container {
    position: relative;
    z-index: 2;
}

.service-assurance-head {
    margin-bottom: 65px;
}

.service-assurance-head .eyebrow {
    color: rgba(255, 255, 255, .54);
}

.service-assurance-head h2 {
    color: var(--white);
}

.service-assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.service-assurance-grid article {
    min-height: 285px;
    padding: 31px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.service-assurance-grid span {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
}

.service-assurance-grid h3 {
    margin: 72px 0 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.service-assurance-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
}

.service-page-cta {
    position: relative;
    overflow: hidden;
    padding-block: 105px;
    background: linear-gradient(105deg, var(--orange-500), var(--amber-400));
}

.service-page-cta::after {
    position: absolute;
    right: -80px;
    bottom: -190px;
    width: 420px;
    height: 420px;
    border: 80px solid rgba(3, 40, 61, .09);
    border-radius: 50%;
    content: "";
}

.service-page-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .55fr;
    gap: 9vw;
    align-items: end;
}

.service-page-cta .eyebrow {
    color: rgba(3, 40, 61, .62);
}

.service-page-cta h2 {
    color: var(--navy-950);
}

.service-page-cta-inner > div:last-child > p {
    margin: 0 0 25px;
    color: rgba(3, 40, 61, .7);
    font-size: 14px;
}

/* Service detail modal */
body.modal-open {
    overflow: hidden;
}

.service-modal {
    width: min(1180px, calc(100% - 42px));
    max-width: none;
    max-height: calc(100dvh - 42px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    border: 0;
    background: var(--white);
    box-shadow: 0 35px 100px rgba(2, 23, 35, .42);
}

.service-modal::backdrop {
    background: rgba(2, 26, 40, .82);
    backdrop-filter: blur(8px);
}

.service-modal[open] {
    animation: modal-in .45s var(--ease);
}

.service-modal-shell {
    position: relative;
    display: grid;
    height: min(760px, calc(100dvh - 42px));
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
}

.service-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: var(--navy-950);
    place-items: center;
    transition: color .25s ease, background-color .25s ease, transform .3s var(--ease);
}

.service-modal-close:hover {
    color: var(--navy-950);
    background: var(--orange-500);
    transform: rotate(90deg);
}

.service-modal-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.service-modal-image {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: var(--navy-900);
}

.service-modal-image img,
.service-modal-image-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-modal-image img {
    object-fit: cover;
}

.service-modal-image-overlay {
    background: linear-gradient(180deg, rgba(3, 40, 61, .08), rgba(3, 40, 61, .82));
}

.service-modal-image-number {
    position: absolute;
    z-index: 2;
    bottom: 44px;
    left: 38px;
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 92px;
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .8;
}

.service-modal-image-number::before {
    display: block;
    width: 48px;
    height: 5px;
    margin-bottom: 19px;
    background: var(--orange-500);
    content: "";
}

.service-modal-image-caption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 38px;
    color: rgba(255, 255, 255, .55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
}

.service-modal-content {
    padding: 55px clamp(38px, 4vw, 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.service-modal-heading > span {
    display: block;
    margin-top: 24px;
    color: var(--blue-600);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-modal-heading h2 {
    max-width: 650px;
    margin: 8px 0 17px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 4vw, 57px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.service-modal-heading > p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.service-modal-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    margin-top: 37px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.service-modal-detail-grid h3 {
    margin: 0 0 14px;
    color: var(--navy-900);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.service-modal-detail-grid ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-modal-detail-grid li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 9px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(7, 58, 86, .09);
    font-size: 11px;
}

.service-modal-detail-grid li > span {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--white);
    border-radius: 50%;
    background: var(--orange-500);
    place-items: center;
}

.service-modal-detail-grid li svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-modal-cta {
    margin-top: 35px;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(25px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Project detail modal */
.project-modal {
    width: min(1240px, calc(100% - 42px));
    max-width: none;
    max-height: calc(100dvh - 42px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    border: 0;
    background: var(--white);
    box-shadow: 0 35px 100px rgba(2, 23, 35, .44);
}

.project-modal::backdrop {
    background: rgba(2, 26, 40, .84);
    backdrop-filter: blur(9px);
}

.project-modal[open] {
    animation: modal-in .45s var(--ease);
}

.project-modal-shell {
    position: relative;
    display: grid;
    height: min(760px, calc(100dvh - 42px));
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
}

.project-modal-close {
    position: absolute;
    z-index: 6;
    top: 18px;
    right: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: var(--navy-950);
    cursor: pointer;
    place-items: center;
    transition: color .25s ease, background-color .25s ease, transform .3s var(--ease);
}

.project-modal-close:hover {
    color: var(--navy-950);
    background: var(--orange-500);
    transform: rotate(90deg);
}

.project-modal-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.project-modal-visual {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: var(--navy-900);
}

.project-modal-visual > img,
.project-modal-visual-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.project-modal-visual > img {
    object-fit: cover;
    transition: opacity .25s ease, transform .7s var(--ease);
}

.project-modal-visual > img.is-changing {
    opacity: .25;
    transform: scale(1.025);
}

.project-modal-visual-overlay {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(3, 40, 61, .04) 45%, rgba(3, 40, 61, .82));
}

.project-modal-index,
.project-modal-gallery-count {
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-weight: 700;
    letter-spacing: .13em;
}

.project-modal-index {
    top: 34px;
    left: 36px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
}

.project-modal-index::after {
    display: inline-block;
    width: 42px;
    height: 2px;
    margin: 0 0 4px 11px;
    background: var(--orange-500);
    content: "";
}

.project-modal-gallery-count {
    right: 35px;
    bottom: 31px;
    font-size: 9px;
}

.project-modal-content {
    padding: 57px clamp(35px, 4vw, 60px) 45px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.project-modal-kicker {
    color: var(--orange-500);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.project-modal-content h2 {
    margin: 10px 0 18px;
    color: var(--navy-950);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 4vw, 59px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .98;
}

.project-modal-content > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.project-modal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 29px 0 24px;
    padding: 19px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.project-modal-meta div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.project-modal-meta span {
    color: var(--orange-500);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.project-modal-meta strong {
    overflow: hidden;
    margin-top: 3px;
    color: var(--navy-900);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.project-modal-gallery button {
    position: relative;
    height: 92px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--navy-900);
    opacity: .66;
    transition: opacity .2s ease, border-color .2s ease, transform .25s var(--ease);
}

.project-modal-gallery button:hover,
.project-modal-gallery button.is-active {
    border-color: var(--orange-500);
    opacity: 1;
    transform: translateY(-2px);
}

.project-modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-modal-gallery button span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: grid;
    width: 24px;
    height: 24px;
    color: var(--white);
    background: rgba(3, 40, 61, .82);
    font-size: 8px;
    font-weight: 700;
    place-items: center;
}

.project-modal-cta {
    margin-top: 28px;
}

/* Contact page */
.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 75px) 0 105px;
    background:
        radial-gradient(circle at 88% 18%, rgba(8, 120, 166, .11), transparent 22%),
        var(--cream-50);
}

.contact-page-hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .48;
    background-image:
        linear-gradient(rgba(7, 58, 86, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 58, 86, .055) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.contact-page-hero::after {
    position: absolute;
    top: -300px;
    right: -130px;
    width: 660px;
    height: 660px;
    border: 105px solid rgba(8, 120, 166, .045);
    border-radius: 50%;
    content: "";
}

.contact-page-hero-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .52fr);
    gap: 8vw;
    align-items: end;
}

.contact-page-title-wrap h1 {
    max-width: 980px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(57px, 6.2vw, 88px);
    font-weight: 600;
    letter-spacing: -.068em;
    line-height: .96;
}

.contact-page-title-wrap h1 em {
    color: var(--orange-500);
    font-style: normal;
}

.contact-page-hero-note {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    padding: 29px;
    color: var(--white);
    border-top: 7px solid var(--orange-500);
    background: var(--navy-900);
}

.contact-page-pulse {
    position: relative;
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: #37c77a;
}

.contact-page-pulse::after {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(55, 199, 122, .45);
    border-radius: 50%;
    content: "";
    animation: pulse 2s infinite;
}

.contact-page-hero-note small {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-page-hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.contact-channel-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.contact-channel {
    position: relative;
    min-height: 205px;
    padding: 29px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .6);
    transition: color .4s var(--ease), background-color .4s var(--ease);
}

a.contact-channel:hover {
    color: var(--white);
    background: var(--navy-900);
}

.contact-channel-icon {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--orange-500);
    border: 1px solid var(--line);
    place-items: center;
    transition: border-color .4s ease;
}

a.contact-channel:hover .contact-channel-icon {
    border-color: rgba(255, 255, 255, .2);
}

.contact-channel-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-channel-label {
    display: block;
    margin-top: 32px;
    color: #7b8b92;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: color .4s ease;
}

a.contact-channel:hover .contact-channel-label {
    color: rgba(255, 255, 255, .47);
}

.contact-channel strong {
    display: block;
    max-width: 320px;
    margin-top: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.3;
}

.contact-channel > i {
    position: absolute;
    top: 30px;
    right: 29px;
    color: var(--orange-500);
    font-style: normal;
    transition: transform .35s var(--ease);
}

.contact-channel > i svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

a.contact-channel:hover > i {
    transform: translate(3px, -3px);
}

.contact-channel > .contact-channel-dot {
    top: auto;
    right: 29px;
    bottom: 30px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange-500);
}

.contact-page-form-section {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.contact-form-pattern {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, black, transparent 75%);
}

.contact-page-form-section::after {
    position: absolute;
    bottom: -260px;
    left: -190px;
    width: 610px;
    height: 610px;
    border: 115px solid rgba(8, 120, 166, .13);
    border-radius: 50%;
    content: "";
}

.contact-page-form-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(520px, .83fr);
    gap: 9vw;
    align-items: start;
}

.contact-form-intro {
    padding-top: 28px;
}

.contact-form-intro h2,
.contact-office-details h2,
.contact-faq h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.contact-form-intro h2 {
    color: var(--white);
}

.contact-form-intro > p {
    max-width: 520px;
    margin: 28px 0 43px;
    color: rgba(255, 255, 255, .55);
}

.contact-next-steps {
    max-width: 570px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-next-steps > h3 {
    margin: 25px 0 10px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-next-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-next-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-next-steps li > span {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 700;
}

.contact-next-steps strong,
.contact-next-steps p {
    display: block;
}

.contact-next-steps strong {
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.contact-next-steps p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 11px;
}

.contact-page-form {
    max-width: none;
    padding: 45px;
}

.contact-page-form-heading {
    margin-bottom: 35px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.contact-page-form-heading span,
.contact-page-form-heading strong {
    display: block;
}

.contact-page-form-heading span {
    color: var(--blue-600);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-page-form-heading strong {
    margin-top: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.contact-info-section {
    background:
        radial-gradient(circle at 8% 85%, rgba(255, 121, 25, .07), transparent 18%),
        var(--cream-100);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
    gap: 8vw;
    align-items: start;
}

.contact-office-card {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
    min-height: 520px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(4, 40, 61, .08);
}

.contact-office-map {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    color: var(--white);
    background:
        linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
        var(--navy-950);
    background-size: 45px 45px;
}

.contact-office-map > i {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact-office-map > i:nth-child(1) { width: 360px; height: 360px; }
.contact-office-map > i:nth-child(2) { width: 250px; height: 250px; }
.contact-office-map > i:nth-child(3) { width: 145px; height: 145px; }

.contact-office-map > span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 66px;
    height: 66px;
    color: var(--navy-950);
    border-radius: 50% 50% 50% 0;
    background: var(--orange-500);
    place-items: center;
    transform: translate(-50%, -70%) rotate(-45deg);
}

.contact-office-map > span svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    transform: rotate(45deg);
}

.contact-office-map > strong {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    letter-spacing: .28em;
    text-align: center;
}

.contact-office-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.contact-office-details h2 {
    font-size: clamp(37px, 4vw, 55px);
}

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

.contact-office-list > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.contact-office-list svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--orange-500);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-office-list small {
    display: block;
    margin-bottom: 3px;
    color: var(--navy-900);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-faq {
    padding-top: 12px;
}

.contact-faq h2 {
    font-size: clamp(38px, 4vw, 56px);
}

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

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

.contact-faq summary {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.015em;
    list-style: none;
}

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

.contact-faq summary svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--orange-500);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform .3s var(--ease);
}

.contact-faq details[open] summary svg {
    transform: rotate(180deg);
}

.contact-faq details > p {
    margin: -5px 35px 22px 0;
    color: var(--muted);
    font-size: 12px;
}

/* Reveal */
.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.js .reveal--left {
    transform: translateX(-38px);
}

.js .reveal--right {
    transform: translateX(38px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes line-reveal {
    to { transform: translateY(0); }
}

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

@keyframes visual-reveal {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-zoom {
    to { transform: scale(1); }
}

@keyframes marquee {
    to { transform: translate3d(-50%, 0, 0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: .45; transform: scale(.8); }
    50% { opacity: 0; transform: scale(1.55); }
}

@keyframes scroll-line {
    0% { transform: translateY(-100%); }
    50%, 100% { transform: translateY(100%); }
}

@media (max-width: 1120px) {
    :root {
        --header-height: 78px;
    }

    .desktop-nav {
        gap: 24px;
    }

    .header-cta {
        margin-left: 25px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr);
        gap: 3vw;
    }

    .hero h1 {
        font-size: clamp(51px, 6vw, 70px);
    }

    .hero-project-note {
        right: -12px;
    }

    .section-heading--split,
    .process-head {
        gap: 6vw;
    }

    .about-grid {
        gap: 6vw;
    }

    .contact-grid,
    .commitment-grid {
        gap: 6vw;
    }
}

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

    .section {
        padding-block: 100px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero,
    .hero-inner {
        min-height: 940px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        align-content: center;
        padding-top: 125px;
        padding-bottom: 110px;
    }

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

    .hero h1 {
        font-size: clamp(58px, 10vw, 84px);
    }

    .hero-description {
        max-width: 610px;
    }

    .hero-visual {
        width: 82%;
        height: 430px;
        min-height: 0;
        margin-left: auto;
    }

    .hero-seal {
        left: -54px;
    }

    .hero-bottom-inner {
        grid-template-columns: repeat(4, auto);
        justify-content: space-between;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading--split,
    .process-head {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 78px;
    }

    .about-visual {
        width: 86%;
    }

    .about-content {
        max-width: 650px;
    }

    .principles {
        margin-top: 85px;
    }

    .principle {
        padding: 27px 24px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 58px;
    }

    .commitment-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .commitment-copy {
        max-width: 670px;
    }

    .commitment-list {
        max-width: 700px;
    }

    .contact-form {
        max-width: 680px;
    }

    .project-modal-shell {
        grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    }

    .project-modal-content {
        padding-inline: 35px;
    }

    .footer-main {
        grid-template-columns: 1.4fr .7fr 1fr;
        gap: 5vw;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: calc(100% - 36px);
    }

    .section {
        padding-block: 78px;
    }

    .brand,
    .brand-logo {
        width: 158px;
        height: 46px;
    }

    .site-header.is-scrolled,
    .menu-open .site-header {
        height: 66px;
    }

    .mobile-menu {
        padding: calc(var(--header-height) + 25px) 22px 28px;
    }

    .mobile-menu nav a {
        gap: 15px;
        padding-block: 11px;
        font-size: clamp(31px, 9.5vw, 43px);
    }

    .mobile-menu-contact {
        gap: 14px 18px;
        margin-top: 22px;
        padding-top: 17px;
    }

    .mobile-menu-contact strong {
        font-size: 12px;
    }

    .hero,
    .hero-inner {
        min-height: 870px;
    }

    .hero-inner {
        display: block;
        padding-top: 116px;
        padding-bottom: 94px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 54px);
    }

    .hero-copy,
    .hero-line,
    .hero-description {
        width: 100%;
        max-width: 100%;
    }

    .hero-description {
        width: 92%;
    }

    .mobile-only {
        display: inline;
    }

    .hero-eyebrow {
        margin-bottom: 25px;
        font-size: 9px;
    }

    .hero-description {
        margin-top: 24px;
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 29px;
    }

    .hero-visual {
        width: 88%;
        height: 285px;
        margin-top: 47px;
    }

    .hero-image-wrap {
        left: 0;
    }

    .hero-project-note {
        right: 0;
        bottom: 23px;
        width: 190px;
        padding: 13px 15px;
    }

    .hero-project-note strong {
        font-size: 13px;
    }

    .hero-seal {
        bottom: -30px;
        left: -37px;
        width: 88px;
        height: 88px;
    }

    .hero-seal svg {
        inset: 6px;
        width: 76px;
        height: 76px;
    }

    .hero-seal text {
        font-size: 8.2px;
    }

    .hero-seal > span {
        font-size: 27px;
    }

    .hero-bottom-inner {
        height: 58px;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
        gap: 4px 25px;
    }

    .hero-bottom p:nth-child(3),
    .hero-bottom p:nth-child(4) {
        display: none;
    }

    .marquee-group {
        padding-block: 16px;
    }

    .section-heading h2,
    .process-head h2,
    .commitment-copy h2 {
        font-size: clamp(40px, 12vw, 55px);
    }

    .section-heading--split {
        margin-bottom: 48px;
    }

    .about-visual {
        width: 100%;
        height: 430px;
    }

    .about-image-main {
        right: 8%;
    }

    .about-image-detail {
        width: 43%;
        height: 145px;
        border-width: 6px;
    }

    .about-badge {
        right: 2%;
        width: 150px;
        padding: 15px;
    }

    .about-content .lead {
        font-size: 24px;
    }

    .principles {
        grid-template-columns: 1fr;
        margin-top: 70px;
    }

    .principle {
        min-height: 138px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .principle:last-child {
        border-bottom: 0;
    }

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

    .service-card {
        min-height: 365px;
        padding: 30px;
    }

    .service-card-top {
        margin-bottom: 38px;
    }

    .service-detail {
        right: 70px;
        bottom: 28px;
        left: 30px;
    }

    .service-arrow {
        right: 28px;
        bottom: 23px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 58px;
    }

    .process-step {
        padding-right: 0;
    }

    .process-step p {
        max-width: none;
    }

    .project-grid {
        display: flex;
        flex-direction: column;
    }

    .project-card,
    .project-card--wide,
    .project-card--tall {
        min-height: 420px;
    }

    .project-card:nth-child(even) {
        min-height: 330px;
    }

    .project-card:nth-child(4) {
        grid-column: auto;
    }

    .project-modal {
        width: 100%;
        height: 100dvh;
        max-height: none;
    }

    .project-modal-shell {
        height: 100dvh;
        grid-template-columns: 1fr;
        grid-template-rows: 300px 1fr;
        overflow-y: auto;
    }

    .project-modal-close {
        position: fixed;
        top: 14px;
        right: 14px;
    }

    .project-modal-visual {
        min-height: 300px;
    }

    .project-modal-index {
        top: 25px;
        left: 24px;
    }

    .project-modal-gallery-count {
        right: 23px;
        bottom: 21px;
    }

    .project-modal-content {
        padding: 33px 22px 48px;
        overflow: visible;
    }

    .project-modal-content h2 {
        font-size: 42px;
    }

    .project-modal-gallery button {
        height: 82px;
    }

    .project-modal-cta {
        width: 100%;
    }

    .commitment-list article {
        grid-template-columns: 34px 1fr;
        gap: 14px;
    }

    .contact-copy h2 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .contact-details {
        flex-direction: column;
        gap: 18px;
    }

    .contact-form {
        padding: 28px 22px;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 22px;
        padding-block: 55px;
    }

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

    .footer-mark {
        display: none;
    }

    .footer-bottom {
        min-height: 85px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 45px;
    }

    .hero-visual {
        height: 250px;
    }

    .project-card,
    .project-card--wide,
    .project-card--tall {
        min-height: 350px;
    }
}

@media (max-width: 1120px) {
    .about-page-hero-head,
    .about-direction-head,
    .about-values-head,
    .about-cta-inner {
        gap: 6vw;
    }

    .about-story-grid,
    .about-collaboration-grid {
        gap: 6vw;
    }
}

@media (max-width: 920px) {
    .about-page-hero {
        padding-top: calc(var(--header-height) + 58px);
    }

    .about-page-hero-head,
    .about-direction-head,
    .about-values-head,
    .about-cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-page-lead {
        max-width: 610px;
    }

    .about-page-visual {
        height: 500px;
    }

    .about-story-grid {
        grid-template-columns: minmax(210px, .4fr) minmax(0, 1fr);
        gap: 6vw;
    }

    .about-story-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-direction-grid {
        grid-template-columns: 1fr;
    }

    .direction-card {
        min-height: 390px;
    }

    .about-values-head .eyebrow {
        margin-bottom: -10px;
    }

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

    .about-collaboration-grid {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .about-collaboration-visual {
        width: 78%;
        height: 610px;
    }

    .about-collaboration-copy {
        max-width: 760px;
    }

    .about-cta-action {
        max-width: 560px;
    }
}

@media (max-width: 680px) {
    .about-page-hero {
        padding-top: calc(var(--header-height) + 42px);
    }

    .about-page-hero-head {
        padding-bottom: 50px;
    }

    .page-breadcrumb {
        margin-bottom: 37px;
    }

    .about-page-title-wrap h1 {
        font-size: clamp(48px, 14vw, 63px);
    }

    .about-page-lead {
        padding-left: 22px;
    }

    .about-page-lead-mark {
        left: 15px;
        font-size: 86px;
    }

    .about-page-visual {
        width: calc(100% + 18px);
        height: 390px;
    }

    .about-page-image {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
    }

    .about-page-image-label {
        right: 12px;
        bottom: -30px;
        width: 220px;
        padding: 20px 22px;
    }

    .about-page-image-label strong {
        font-size: 19px;
    }

    .about-story {
        padding-top: 125px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-story-aside {
        min-height: 270px;
    }

    .about-story-monogram {
        font-size: 150px;
    }

    .about-story-copy h2,
    .about-direction-head h2,
    .about-values-head h2,
    .about-collaboration-copy h2,
    .about-cta h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .about-story-columns {
        margin-top: 30px;
    }

    .about-story-copy blockquote {
        padding-left: 26px;
        font-size: 19px;
    }

    .about-direction-head,
    .about-values-head {
        margin-bottom: 48px;
    }

    .direction-card {
        min-height: 0;
        padding: 30px;
    }

    .direction-card-icon {
        top: 26px;
        right: 26px;
        width: 58px;
        height: 58px;
    }

    .direction-card h3 {
        margin-top: 90px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: 250px;
    }

    .about-value-line {
        margin: 40px 0 28px;
    }

    .about-collaboration-visual {
        width: 94%;
        height: 480px;
    }

    .about-collaboration-stamp {
        right: -6%;
        width: 160px;
    }

    .about-collaboration-points > div {
        grid-template-columns: 32px 1fr;
        gap: 5px 13px;
    }

    .about-collaboration-points p {
        grid-column: 2;
    }

    .about-cta {
        padding-block: 78px;
    }
}

@media (max-width: 1120px) {
    .services-page-hero-grid,
    .service-catalog-head,
    .service-page-cta-inner {
        gap: 6vw;
    }

    .services-page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
    }

    .service-catalog-content {
        padding-inline: 42px;
    }
}

@media (max-width: 920px) {
    .services-page-hero {
        min-height: 1080px;
    }

    .services-page-hero-grid {
        min-height: 1000px;
        grid-template-columns: 1fr;
        gap: 55px;
        align-content: center;
        padding-top: calc(var(--header-height) + 70px);
        padding-bottom: 125px;
    }

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

    .services-page-hero-visual {
        width: 80%;
        height: 480px;
        margin-left: auto;
    }

    .services-page-hero-bottom span {
        font-size: 8px;
    }

    .service-catalog-head,
    .service-page-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-catalog-card {
        min-height: 450px;
    }

    .service-catalog-content {
        padding: 42px 34px;
    }

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

    .service-modal-shell {
        grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
    }

    .service-modal-content {
        padding-inline: 38px;
    }

    .service-modal-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 680px) {
    .services-page-hero {
        min-height: 1000px;
    }

    .services-page-hero-grid {
        min-height: 930px;
        display: block;
        padding-top: 108px;
        padding-bottom: 105px;
    }

    .page-breadcrumb--dark {
        margin-bottom: 28px;
    }

    .services-page-hero-copy h1 {
        font-size: clamp(47px, 13.5vw, 61px);
    }

    .services-page-hero-copy > p {
        font-size: 14px;
    }

    .services-page-hero-visual {
        width: 94%;
        height: 390px;
        margin-top: 62px;
    }

    .services-hero-image--main {
        width: 88%;
    }

    .services-hero-image--small {
        width: 49%;
        border-width: 5px;
    }

    .services-hero-count {
        right: 0;
        width: 170px;
        height: 93px;
        padding: 15px;
    }

    .services-hero-count strong {
        font-size: 42px;
    }

    .services-page-hero-bottom .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 15px;
    }

    .services-page-hero-bottom span:nth-child(3),
    .services-page-hero-bottom span:nth-child(4) {
        display: none;
    }

    .service-catalog-head {
        margin-bottom: 48px;
    }

    .service-catalog-head h2,
    .service-assurance-head h2,
    .service-page-cta h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .service-catalog-list {
        gap: 20px;
    }

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

    .service-catalog-card--reverse .service-catalog-image {
        order: 0;
    }

    .service-catalog-image {
        min-height: 330px;
    }

    .service-catalog-content {
        padding: 35px 27px 40px;
    }

    .service-catalog-icon {
        width: 52px;
        height: 52px;
    }

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

    .service-assurance-grid article {
        min-height: 230px;
    }

    .service-assurance-grid h3 {
        margin-top: 50px;
    }

    .service-page-cta {
        padding-block: 78px;
    }

    .service-modal {
        width: 100%;
        height: 100dvh;
        max-height: none;
    }

    .service-modal-shell {
        height: 100dvh;
        grid-template-columns: 1fr;
        grid-template-rows: 230px 1fr;
        overflow-y: auto;
    }

    .service-modal-close {
        position: fixed;
        top: 14px;
        right: 14px;
    }

    .service-modal-image {
        min-height: 230px;
    }

    .service-modal-image-number {
        bottom: 32px;
        left: 25px;
        font-size: 66px;
    }

    .service-modal-image-caption {
        display: none;
    }

    .service-modal-content {
        padding: 31px 24px 45px;
        overflow: visible;
    }

    .service-modal-heading h2 {
        font-size: 40px;
    }

    .service-modal-detail-grid {
        margin-top: 28px;
    }

    .service-modal-cta {
        width: 100%;
    }
}

@media (max-width: 1120px) {
    .contact-page-hero-head,
    .contact-page-form-grid,
    .contact-info-grid {
        gap: 6vw;
    }

    .contact-page-form-grid {
        grid-template-columns: minmax(0, .7fr) minmax(480px, .85fr);
    }

    .contact-office-card {
        grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
    }
}

@media (max-width: 920px) {
    .contact-page-hero {
        padding-top: calc(var(--header-height) + 58px);
    }

    .contact-page-hero-head,
    .contact-page-form-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-page-hero-note {
        max-width: 620px;
    }

    .contact-channel-grid {
        margin-top: 62px;
    }

    .contact-page-form-grid {
        max-width: 760px;
    }

    .contact-form-intro {
        max-width: 670px;
    }

    .contact-office-card {
        max-width: 820px;
    }

    .contact-faq {
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .contact-page-hero {
        padding: calc(var(--header-height) + 42px) 0 76px;
    }

    .contact-page-title-wrap h1 {
        font-size: clamp(47px, 13vw, 61px);
    }

    .contact-page-hero-note {
        padding: 23px;
    }

    .contact-channel-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .contact-channel {
        min-height: 175px;
        padding: 24px;
    }

    .contact-channel-label {
        margin-top: 22px;
    }

    .contact-page-form-grid {
        gap: 48px;
    }

    .contact-form-intro h2,
    .contact-office-details h2,
    .contact-faq h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .contact-page-form {
        padding: 30px 22px;
    }

    .contact-page-form-heading strong {
        font-size: 24px;
    }

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

    .contact-office-map {
        min-height: 330px;
    }

    .contact-office-details {
        padding: 35px 26px;
    }

    .contact-faq-list {
        margin-top: 32px;
    }

    .contact-faq summary {
        font-size: 15px;
    }
}

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

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

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