/* Design philosophy: Blue-chip precision — Swiss editorial composition, a white foundation, Andaziar Cobalt (#1824D5), cool gray (#6C717B), and restrained motion. */
:root {
    --cobalt: #1824d5;
    --cobalt-deep: #0e147f;
    --cobalt-soft: #eef0ff;
    --ink: #11162d;
    --navy: #0a1235;
    --slate: #6c717b;
    --mist: #f3f5f8;
    --line: #dfe3eb;
    --white: #ffffff;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --shadow-soft: 0 18px 50px rgba(12, 21, 65, 0.08);
    --shadow-card: 0 16px 34px rgba(10, 18, 53, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

    body.modal-open {
        padding-right: 0 !important;
    }

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

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

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

    button:focus-visible, a:focus-visible {
        outline: 3px solid rgba(24, 36, 213, 0.28);
        outline-offset: 4px;
    }

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

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--white);
    transition: opacity 500ms var(--ease-out), visibility 500ms;
}

    .site-loader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-mark {
    display: flex;
    gap: 5px;
    align-items: end;
    height: 30px;
}

    .loader-mark span {
        display: block;
        width: 6px;
        background: var(--cobalt);
        animation: loadBars 850ms var(--ease-in-out) infinite alternate;
    }

        .loader-mark span:nth-child(1) {
            height: 19px;
            animation-delay: 0ms;
        }

        .loader-mark span:nth-child(2) {
            height: 30px;
            animation-delay: 130ms;
        }

        .loader-mark span:nth-child(3) {
            height: 23px;
            animation-delay: 260ms;
        }

@keyframes loadBars {
    to {
        transform: translateY(-6px);
        opacity: .52;
    }
}

.utility-bar {
    position: relative;
    z-index: 20;
    padding: 8px 0;
    background: var(--navy);
    color: rgba(255,255,255,.7);
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

    .utility-bar a {
        color: rgba(255,255,255,.78);
        transition: color 180ms var(--ease-out);
    }

        .utility-bar a:hover {
            color: var(--white);
        }

#mainNav {
    position: absolute;
    z-index: 100;
    top: 31px;
    right: 0;
    left: 0;
    /*background: transparent;*/
    background: rgba(255,255,255,.93);
    transition: background 250ms var(--ease-out), box-shadow 250ms var(--ease-out), padding 250ms var(--ease-out);
}

    #mainNav.is-scrolled {
        position: fixed;
        top: 0;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
       /* background: rgba(255,255,255,.93);*/
        backdrop-filter: blur(18px);
        box-shadow: 0 8px 25px rgba(10,18,53,.07);
    }

        #mainNav.is-scrolled .nav-link {
            color: var(--ink);
        }

        #mainNav.is-scrolled .navbar-toggler-icon {
            filter: none;
        }

.navbar-brand {
    min-width: 250px;
    color: var(--navy);
}

.brand-logo {
    width: 102px;
    height: auto;
    object-fit: contain;
}

.brand-divider {
    display: inline-block;
    width: 1px;
    height: 25px;
    margin: 0 14px;
    background: currentColor;
    opacity: .42;
}

.brand-caption {
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: .08em;
}

    .brand-caption strong {
        font-weight: 800;
    }

.nav-link {
    position: relative;
    padding: 8px 0 !important;
    color: rgba(255,255,255,.82);
    color: var(--cobalt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    transition: color 180ms var(--ease-out);
}

    .nav-link::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--cobalt);
        content: '';
        transition: width 220ms var(--ease-out);
    }

    .nav-link:hover, .nav-link.active {
       /* color: var(--white);*/
    }

#mainNav.is-scrolled .nav-link:hover, #mainNav.is-scrolled .nav-link.active {
    color: var(--cobalt);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 18px;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

#mainNav.is-scrolled .navbar-toggler {
    color: var(--ink);
}

.btn {
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
}

    .btn:active {
        transform: scale(.97);
    }

.btn-cobalt {
    background: var(--cobalt);
    border-color: var(--cobalt);
    color: var(--white);
}

    .btn-cobalt:hover {
        background: var(--cobalt-deep);
        border-color: var(--cobalt-deep);
        color: var(--white);
        box-shadow: 0 10px 24px rgba(24,36,213,.25);
        transform: translateY(-2px);
    }

.btn-light:hover {
    color: var(--cobalt);
    box-shadow: 0 12px 25px rgba(0,0,0,.13);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: var(--navy);
    background: var(--white);
    transform: translateY(-2px);
}

.btn-arrow i, .text-link i {
    display: inline-block;
    transition: transform 180ms var(--ease-out);
}

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

.hero-section {
    min-height: 760px;
    padding: 104px 0 0;
    background: var(--navy);
}

.hero-frame {
    min-height: 655px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding: 120px 8% 80px 10%;
    color: var(--white);
    background: linear-gradient(145deg, #101969 0%, var(--cobalt-deep) 100%);
}

    .hero-copy::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 55%;
        background: rgba(255,255,255,.3);
        content: '';
    }

    .hero-copy::after {
        position: absolute;
        right: 13%;
        bottom: 9%;
        width: 86px;
        height: 86px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 50%;
        content: '';
    }

    .hero-copy h1 {
        margin: 28px 0 23px;
        max-width: 540px;
        font-size: clamp(3.3rem, 6vw, 6.8rem);
        font-weight: 800;
        letter-spacing: -.08em;
        line-height: .93;
    }

        .hero-copy h1 em, .display-heading em, .statement-heading em, .impact-heading em, .contact-heading em, .project-brief-card h3 em {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
            letter-spacing: -.04em;
        }

        .hero-copy h1 em {
            color: #d8dbff;
        }

.hero-lead {
    max-width: 445px;
    margin-bottom: 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.75;
}

.hero-signoff {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.signal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8f98ff;
    box-shadow: 0 0 0 5px rgba(143,152,255,.14);
}

.hero-signoff-rule {
    display: inline-block;
    width: 25px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.hero-visual {
    position: relative;
    min-height: 655px;
    overflow: hidden;
    background: #182642;
}

.hero-image-wrap, .hero-image {
    width: 100%;
    height: 100%;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
}

.hero-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 1400ms var(--ease-out);
}

.hero-section:hover .hero-image {
    transform: scale(1.11);
}

.hero-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,18,53,.58) 0%, transparent 47%, rgba(10,18,53,.06) 100%), linear-gradient(0deg, rgba(10,18,53,.28), transparent 50%);
}

.glass-card {
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0,0,0,.16);
}

.floating-brief-card {
    position: absolute;
    right: 7%;
    bottom: 8%;
    width: min(270px, 75%);
    padding: 19px 21px;
    color: var(--white);
    animation: floatCard 6s ease-in-out infinite;
}

    .floating-brief-card p {
        margin-top: 29px;
        font-family: 'DM Serif Display', Georgia, serif;
        font-size: 23px;
        line-height: 1.05;
    }

    .floating-brief-card .bi {
        font-size: 18px;
    }

@keyframes floatCard {
    0%,100% {
        transform: translateY(0);
    }

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

.mini-label {
    color: inherit;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.text-cobalt {
    color: var(--cobalt);
}

.hero-vertical-label {
    position: absolute;
    top: 8%;
    right: 20px;
    color: rgba(255,255,255,.75);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    top: 3%;
    right: -5%;
    width: 420px;
    height: 420px;
}

.hero-orbit-two {
    bottom: -30%;
    left: -12%;
    width: 610px;
    height: 610px;
    border-color: rgba(111,121,255,.17);
}

.hero-scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: calc(50% - 15px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

    .hero-scroll-cue i {
        font-size: 15px;
        writing-mode: horizontal-tb;
    }

.section-space {
    padding: 142px 0;
}

.section-space-sm {
    padding: 34px 0 136px;
}

.about-section {
    position: relative;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cobalt);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

    .section-kicker.light {
        color: rgba(255,255,255,.76);
    }

.kicker-index {
    color: var(--slate);
    font-size: 10px;
}

.section-kicker.light .kicker-index {
    color: rgba(255,255,255,.56);
}

.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: currentColor;
}

.display-heading {
    margin-top: 25px;
    color: var(--ink);
    font-size: clamp(2.9rem, 5.1vw, 5.7rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .98;
}

    .display-heading em {
        color: var(--cobalt);
    }

.lead-copy {
    max-width: 470px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.58;
}

.body-copy {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cobalt);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
}

    .text-link::after {
        width: 28px;
        height: 1px;
        background: currentColor;
        content: '';
        transition: width 180ms var(--ease-out);
    }

    .text-link:hover::after {
        width: 42px;
    }

.about-visual-grid {
    position: relative;
    min-height: 525px;
    margin-left: 5%;
}

.about-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 435px;
    overflow: hidden;
}

    .about-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 800ms var(--ease-out);
    }

    .about-image-main:hover img {
        transform: scale(1.05);
    }

.about-note-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 54%;
    padding: 31px;
    background: var(--mist);
    box-shadow: var(--shadow-soft);
}

    .about-note-card p {
        margin: 21px 0 27px;
        max-width: 220px;
        color: var(--ink);
        font-family: 'DM Serif Display', Georgia, serif;
        font-size: 25px;
        line-height: 1.12;
    }

.note-rule {
    width: 100%;
    height: 1px;
    margin-bottom: 17px;
    background: var(--line);
}

.about-note-card .d-flex {
    color: var(--slate);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.about-note-card .bi {
    color: var(--cobalt);
    font-size: 22px;
}

.about-stamp {
    position: absolute;
    top: 26px;
    left: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border: 1px solid rgba(24,36,213,.3);
    border-radius: 50%;
    background: rgba(255,255,255,.78);
    color: var(--cobalt);
    transform: rotate(-12deg);
}

    .about-stamp span {
        font-size: 25px;
        font-weight: 800;
        letter-spacing: -.12em;
        line-height: 1;
    }

    .about-stamp small {
        margin-top: 5px;
        color: var(--slate);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .14em;
        line-height: 1.1;
        text-align: center;
        text-transform: uppercase;
    }

.about-stats-row {
    margin-top: 112px;
    padding-top: 29px;
    border-top: 1px solid var(--line);
}

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

    .inline-stat strong {
        color: var(--cobalt);
        font-size: clamp(2.35rem, 3.6vw, 4.2rem);
        font-weight: 800;
        letter-spacing: -.08em;
        line-height: 1;
    }

        .inline-stat strong::after {
            content: '+';
        }

    .inline-stat span {
        color: var(--slate);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .08em;
        line-height: 1.35;
        text-transform: uppercase;
    }

.services-section {
    background: var(--mist);
}

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

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 70px 62px minmax(0,1fr) 42px;
    gap: 22px;
    align-items: center;
    padding: 26px 8px;
    border-bottom: 1px solid var(--line);
    transition: background 250ms var(--ease-out), padding 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}

    .service-row:hover {
        padding-right: 21px;
        padding-left: 21px;
        background: var(--white);
        box-shadow: var(--shadow-soft);
    }

.service-index {
    align-self: start;
    padding-top: 4px;
    color: var(--cobalt);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(24,36,213,.2);
    border-radius: 50%;
    color: var(--cobalt);
    font-size: 20px;
    transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.service-row:hover .service-icon {
    background: var(--cobalt);
    color: var(--white);
    transform: rotate(-7deg);
}

.service-copy h3 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.service-copy p {
    max-width: 620px;
    margin: 0;
    color: var(--slate);
    font-size: 13px;
}

.service-arrow {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cobalt);
    transition: color 200ms var(--ease-out), background 200ms var(--ease-out), transform 200ms var(--ease-out);
}

    .service-arrow:hover {
        background: var(--cobalt);
        color: var(--white);
        transform: translate(2px,-2px);
    }

.statement-section {
    padding: 130px 0 145px;
    color: var(--white);
    background: var(--cobalt);
}

    .statement-section::before {
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, rgba(14,20,127,.95) 0%, rgba(24,36,213,.98) 57%, rgba(77,89,243,.88) 100%);
        content: '';
    }

.statement-watermark {
    position: absolute;
    right: -20px;
    bottom: -95px;
    color: rgba(255,255,255,.09);
    font-size: 31vw;
    font-weight: 800;
    letter-spacing: -.18em;
    line-height: 1;
}

.statement-heading, .impact-heading, .contact-heading {
    margin-top: 26px;
    color: var(--white);
    font-size: clamp(3rem, 5.4vw, 6rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .96;
}

.impact-metric strong.counter-years::after {
    content: '+';
}
    .statement-heading em, .impact-heading em, .contact-heading em {
        color: #cdd1ff;
    }

.statement-copy {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.75;
}

.benefits-section {
    background: var(--white);
}

.benefit-card {
    position: relative;
    min-height: 280px;
    padding: 29px;
    border: 1px solid var(--line);
    transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

    .benefit-card:hover {
        border-color: rgba(24,36,213,.28);
        box-shadow: var(--shadow-soft);
        transform: translateY(-6px);
    }

.benefit-no {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #c3c8d3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.benefit-card > i {
    display: block;
    margin: 35px 0 24px;
    color: var(--cobalt);
    font-size: 34px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.benefit-card p {
    margin: 0;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.75;
}

.impact-section {
    position: relative;
    padding: 134px 0;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

    .impact-section::after {
        position: absolute;
        top: -300px;
        right: -220px;
        width: 650px;
        height: 650px;
        border: 1px solid rgba(103,113,255,.19);
        border-radius: 50%;
        content: '';
    }

.impact-copy {
    max-width: 430px;
    margin-top: 28px;
    color: rgba(255,255,255,.62);
    font-size: 15px;
}

.impact-grid {
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 1px solid rgba(255,255,255,.18);
}

.impact-metric {
    min-height: 210px;
    padding: 35px 30px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

    .impact-metric strong {
        display: block;
        color: #aeb4ff;
        font-size: clamp(3.7rem, 6.5vw, 6.8rem);
        font-weight: 800;
        letter-spacing: -.1em;
        line-height: .95;
    }

        .impact-metric strong::after {
            content: '+';
        }

    .impact-metric:last-child strong::after {
        content: '%';
    }

    .impact-metric span {
        display: block;
        margin-top: 20px;
        color: rgba(255,255,255,.57);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .13em;
        line-height: 1.4;
        text-transform: uppercase;
    }

.projects-section {
    background: var(--white);
}

.project-grid {
    align-items: stretch;
}

.project-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--navy);
}

.project-card-large {
    min-height: 560px;
}

.project-image, .project-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.project-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .project-image img {
        object-fit: cover;
        transition: transform 800ms var(--ease-out);
    }

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,10,31,.82) 0%, rgba(5,10,31,.1) 64%, transparent 100%);
    transition: background 300ms var(--ease-out);
}

.project-card:hover .project-overlay {
    background: linear-gradient(0deg, rgba(10,18,53,.94) 0%, rgba(10,18,53,.14) 70%, transparent 100%);
}

.project-meta {
    position: absolute;
    bottom: 27px;
    left: 29px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.project-category {
    color: #aab0ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.project-meta strong {
    margin-top: 6px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.project-open {
    position: absolute;
    top: 25px;
    right: 25px;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    color: var(--white);
    transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.project-card:hover .project-open {
    background: var(--white);
    color: var(--cobalt);
    transform: translate(3px,-3px);
}

.project-brief-card {
    height: 100%;
    min-height: 300px;
    padding: 36px;
    background: var(--mist);
}

    .project-brief-card h3 {
        margin: 23px 0 16px;
        font-size: 30px;
        font-weight: 800;
        letter-spacing: -.06em;
        line-height: 1.02;
    }

        .project-brief-card h3 em {
            color: var(--cobalt);
        }

    .project-brief-card p {
        max-width: 450px;
        margin-bottom: 25px;
        color: var(--slate);
        font-size: 13px;
    }

.contact-section {
    padding: 0 0 135px;
    background: var(--white);
}

.contact-panel {
    overflow: hidden;
    background: var(--cobalt);
}

.contact-copy {
    position: relative;
    padding: 73px 9% 70px;
    color: var(--white);
    background: linear-gradient(145deg, var(--cobalt-deep), var(--cobalt));
}

    .contact-copy::after {
        position: absolute;
        right: -80px;
        bottom: -115px;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 50%;
        content: '';
    }

    .contact-copy > p {
        max-width: 350px;
        color: rgba(255,255,255,.73);
        font-size: 15px;
    }

.contact-heading {
    font-size: clamp(3.7rem, 5.2vw, 6.1rem);
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

    .contact-detail-list a {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--white);
        transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
    }

        .contact-detail-list a:hover {
            color: #d6d9ff;
            transform: translateX(3px);
        }

    .contact-detail-list i {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        border: 1px solid rgba(255,255,255,.35);
        border-radius: 50%;
        font-size: 14px;
    }

    .contact-detail-list span {
        display: flex;
        flex-direction: column;
        font-size: 13px;
        font-weight: 700;
    }

    .contact-detail-list small {
        margin-bottom: 2px;
        color: rgba(255,255,255,.53);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

.contact-map-wrap {
    padding: 25px;
    background: var(--mist);
}

.map-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3px 5px 18px;
}

.map-coordinates {
    color: var(--slate);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.map-frame {
    position: relative;
    min-height: 415px;
    overflow: hidden;
    background: #d7dce4;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        min-height: 415px;
        border: 0;
        filter: grayscale(1) contrast(.9) opacity(.82);
    }

.map-location-card {
    position: absolute;
    bottom: 21px;
    left: 21px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 9px 25px rgba(10,18,53,.15);
    color: var(--ink);
    font-size: 11px;
    line-height: 1.45;
}

    .map-location-card i {
        color: var(--cobalt);
        font-size: 19px;
    }

    .map-location-card strong {
        font-size: 11px;
    }

.site-footer {
    padding: 72px 0 28px;
    background: #f6f7f9;
}

.footer-brand {
    color: var(--ink);
}

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

    .footer-brand .brand-divider {
        opacity: .25;
    }

    .footer-brand > span:last-child {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .1em;
        line-height: 1.55;
    }

    .footer-brand strong {
        font-weight: 800;
    }

.footer-note {
    max-width: 290px;
    color: var(--slate);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 21px;
    line-height: 1.2;
}

.footer-label {
    display: block;
    margin-bottom: 19px;
    color: var(--cobalt);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--slate);
    font-size: 12px;
}

    .footer-links a {
        transition: color 180ms var(--ease-out);
    }

        .footer-links a:hover {
            color: var(--cobalt);
        }

.footer-address {
    color: var(--slate);
    font-size: 12px;
    line-height: 1.65;
}

.social-row {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

    .social-row a {
        display: grid;
        width: 31px;
        height: 31px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--cobalt);
        font-size: 13px;
        transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
    }

        .social-row a:hover {
            background: var(--cobalt);
            color: var(--white);
            transform: translateY(-3px);
        }

.footer-bottom {
    color: #9298a3;
    border-top: 1px solid var(--line);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.back-to-top {
    position: fixed;
    z-index: 50;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--cobalt);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(24,36,213,.23);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 220ms var(--ease-out), visibility 220ms, transform 220ms var(--ease-out), background 180ms var(--ease-out);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--cobalt-deep);
        transform: translateY(-3px);
    }

.project-modal .modal-content {
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 25px 80px rgba(4,8,30,.32);
}

.project-modal .modal-header {
    padding: 23px 25px 17px;
}

.project-modal .modal-body {
    padding: 0 25px 26px;
}

.modal-project-image {
    width: 100%;
    max-height: 570px;
    object-fit: cover;
}

.project-modal h2 {
    margin: 17px 0 13px;
    color: var(--ink);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .98;
}

.project-modal p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.8;
}

.modal-counter {
    color: var(--slate);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.modal-nav {
    display: flex;
    gap: 8px;
}

    .modal-nav button {
        display: grid;
        width: 39px;
        height: 39px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: transparent;
        color: var(--cobalt);
        transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
    }

        .modal-nav button:hover {
            background: var(--cobalt);
            color: var(--white);
        }

/* Editorial refinements: cobalt is a signal, while white, mist, and ink carry the premium foundation. */
.display-heading em, .impact-heading em, .contact-heading em, .project-brief-card h3 em {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -.07em;
}

.impact-heading em, .contact-heading em, .project-brief-card h3 em {
    color: #aeb4ff;
}

.contact-panel {
    background: var(--mist);
}

.contact-copy {
    color: var(--ink);
    background: var(--mist);
}

    .contact-copy::after {
        border-color: rgba(24,36,213,.14);
    }

    .contact-copy .section-kicker.light {
        color: var(--cobalt);
    }

        .contact-copy .section-kicker.light .kicker-index {
            color: var(--slate);
        }

        .contact-copy .section-kicker.light .eyebrow-line {
            background: var(--cobalt) !important;
        }

    .contact-copy .contact-heading {
        color: var(--ink);
    }

        .contact-copy .contact-heading em {
            color: var(--cobalt);
        }

    .contact-copy > p {
        color: var(--slate);
    }

.contact-detail-list a {
    color: var(--ink);
}

    .contact-detail-list a:hover {
        color: var(--cobalt);
    }

.contact-detail-list i {
    border-color: rgba(24,36,213,.26);
    color: var(--cobalt);
}

.contact-detail-list small {
    color: var(--slate);
}

@media (max-width: 991.98px) {
    #mainNav {
        top: 30px;
    }

        #mainNav .navbar-collapse {
            margin-top: 13px;
            padding: 16px 20px 19px;
            background: rgba(10,18,53,.97);
        }

        #mainNav.is-scrolled .navbar-collapse {
            background: rgba(255,255,255,.97);
        }

        #mainNav .navbar-nav {
            align-items: flex-start !important;
            gap: 9px !important;
        }

        #mainNav .nav-link {
            padding: 4px 0 !important;
        }

        #mainNav .btn {
            margin-top: 8px;
        }

    .hero-section {
        min-height: auto;
        padding-top: 94px;
    }

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

    .hero-copy {
        min-height: 560px;
        padding: 100px 11% 70px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-scroll-cue {
        display: none;
    }

    .about-visual-grid {
        margin-left: 0;
    }

    .contact-copy {
        padding-right: 8%;
        padding-left: 8%;
    }

    .contact-map-wrap {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .utility-bar {
        display: none;
    }

    #mainNav {
        top: 0;
        padding-top: 16px !important;
    }

        #mainNav.is-scrolled {
            padding-top: 10px !important;
        }

    .navbar-brand {
        min-width: 0;
    }

    .brand-logo {
        width: 85px;
    }

    .brand-divider {
        margin: 0 9px;
    }

    .brand-caption {
        font-size: 8px;
    }

    .hero-section {
        padding-top: 78px;
    }

    .hero-copy {
        min-height: 560px;
        padding: 84px 9% 60px;
    }

        .hero-copy h1 {
            font-size: clamp(3rem, 15vw, 4.5rem);
        }

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

    .hero-visual {
        min-height: 420px;
    }

    .floating-brief-card {
        right: 6%;
        bottom: 7%;
    }

    .section-space {
        padding: 93px 0;
    }

    .section-space-sm {
        padding-bottom: 88px;
    }

    .display-heading {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .lead-copy {
        font-size: 17px;
    }

    .about-visual-grid {
        min-height: 440px;
        margin-top: 7px;
    }

    .about-image-main {
        width: 83%;
        height: 345px;
    }

    .about-note-card {
        width: 71%;
        padding: 23px;
    }

        .about-note-card p {
            font-size: 21px;
        }

    .about-stamp {
        top: 18px;
        left: 1%;
        width: 86px;
        height: 86px;
    }

        .about-stamp span {
            font-size: 21px;
        }

    .about-stats-row {
        margin-top: 72px;
    }

    .inline-stat {
        gap: 10px;
    }

        .inline-stat strong {
            font-size: 2.6rem;
        }

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

    .service-row {
        grid-template-columns: 34px 48px minmax(0,1fr);
        gap: 12px;
        padding: 20px 0;
    }

    .service-arrow {
        grid-column: 3;
        justify-self: end;
        width: 34px;
        height: 34px;
        margin-top: -31px;
    }

    .service-copy h3 {
        font-size: 18px;
    }

    .service-copy p {
        font-size: 12px;
        line-height: 1.6;
    }

    .statement-section, .impact-section {
        padding: 95px 0;
    }

    .statement-heading, .impact-heading, .contact-heading {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .statement-copy {
        font-size: 15px;
    }

    .benefit-card {
        min-height: auto;
    }

    .impact-metric {
        min-height: 165px;
        padding: 25px 17px;
    }

        .impact-metric strong {
            font-size: 3.4rem;
        }

        .impact-metric span {
            margin-top: 13px;
            font-size: 8px;
        }

    .project-card, .project-card-large {
        min-height: 380px;
    }

    .project-brief-card {
        min-height: 300px;
        padding: 28px;
    }

    .contact-section {
        padding-bottom: 90px;
    }

    .contact-copy {
        padding: 59px 8% 60px;
    }

    .map-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .map-frame, .map-frame iframe {
        min-height: 350px;
    }

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

    .footer-note {
        font-size: 19px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 9px !important;
    }

    .modal-project-image {
        max-height: 300px;
    }

    .project-modal .modal-body {
        padding: 0 18px 20px;
    }
}

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

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