:root {
    color-scheme: light;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body.wm-landing {
    --wm-navy: #071827;
    --wm-navy-soft: #10283a;
    --wm-graphite: #1b2d3c;
    --wm-ink: #122433;
    --wm-copy: #405363;
    --wm-muted: #647583;
    --wm-line: #dce3e8;
    --wm-mist: #f3f6f8;
    --wm-paper: #ffffff;
    --wm-accent: #c4451a;
    --wm-accent-dark: #9f3511;
    --wm-accent-bright: #ff7a3d;
    --wm-accent-soft: #fff0e8;
    --wm-shadow: 0 24px 70px rgba(7, 24, 39, 0.12);
    --wm-radius: 18px;
    margin: 0;
    overflow-x: clip;
    background: var(--wm-paper);
    color: var(--wm-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

.wm-landing section[id] {
    scroll-margin-top: 90px;
}

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

.wm-landing a {
    text-underline-offset: 0.22em;
}

.wm-landing ::selection {
    background: var(--wm-accent);
    color: var(--wm-paper);
}

.wm-landing :focus-visible {
    border-radius: 5px;
    outline: 3px solid var(--wm-accent);
    outline-offset: 3px;
}

.wm-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    min-height: 44px;
    padding: 10px 18px;
    transform: translateY(-140%);
    border-radius: 6px;
    background: var(--wm-paper);
    box-shadow: var(--wm-shadow);
    color: var(--wm-navy);
    font-weight: 700;
    transition: transform 180ms ease-out;
}

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

.wm-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(7, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.wm-navbar {
    min-height: 78px;
    padding: 8px 0;
}

.wm-brand {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0;
}

.wm-brand img {
    width: 132px;
    height: auto;
}

.wm-nav-list {
    gap: 2px;
}

.wm-nav-list .nav-link,
.wm-mobile-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 13px !important;
    color: var(--wm-ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    transition: color 180ms ease-out;
}

.wm-nav-list .nav-link:hover,
.wm-nav-list .nav-link:focus-visible {
    color: var(--wm-accent);
}

.wm-menu-button {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--wm-line);
    border-radius: 50%;
    background: var(--wm-paper);
    color: var(--wm-navy);
    transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.wm-menu-button:hover {
    border-color: var(--wm-accent);
    background: var(--wm-accent-soft);
}

.wm-mobile-nav {
    --bs-offcanvas-width: min(88vw, 390px);
    border: 0;
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-mobile-nav .offcanvas-header {
    min-height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wm-mobile-nav .offcanvas-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.wm-mobile-nav .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.wm-mobile-nav .nav-link {
    min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
}

.wm-button {
    display: inline-flex;
    min-width: 44px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
}

.wm-button svg {
    flex: 0 0 auto;
    transition: transform 180ms ease-out;
}

.wm-button--header {
    min-height: 44px;
    padding: 10px 18px;
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-button--primary {
    background: var(--wm-accent);
    box-shadow: 0 14px 30px rgba(196, 69, 26, 0.22);
    color: var(--wm-paper);
}

.wm-button--ghost {
    border-color: rgba(7, 24, 39, 0.2);
    background: transparent;
    color: var(--wm-navy);
}

.wm-button--dark {
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-button--light {
    background: var(--wm-paper);
    color: var(--wm-navy);
}

.wm-button--outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--wm-paper);
}

.wm-button--outline-light:hover {
    border-color: var(--wm-paper);
    background: var(--wm-paper);
    color: var(--wm-navy);
}

.wm-hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 78px);
    align-items: center;
    overflow: hidden;
    padding: clamp(76px, 8vw, 124px) 0 clamp(70px, 8vw, 112px);
    background: var(--wm-mist);
}

.wm-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: clamp(5px, 0.55vw, 9px);
    background: var(--wm-accent);
    content: "";
}

.wm-hero-grid-pattern,
.wm-about-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(7, 24, 39, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 24, 39, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.wm-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
    align-items: center;
    gap: clamp(42px, 6vw, 94px);
}

.wm-hero-copy {
    position: relative;
    z-index: 2;
}

.wm-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 22px;
    color: var(--wm-accent);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wm-eyebrow > span {
    width: 30px;
    height: 2px;
    flex: 0 0 30px;
    background: currentColor;
}

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

.wm-hero h1 {
    max-width: 9.6ch;
    margin: 0;
    color: var(--wm-navy);
    font-size: clamp(3.15rem, 6.1vw, 6.35rem);
    font-weight: 780;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.wm-hero h1 em {
    color: var(--wm-accent);
    font-style: normal;
    font-weight: inherit;
}

.wm-hero-lead {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--wm-copy);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.68;
}

.wm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.wm-hero-proof {
    display: grid;
    max-width: 620px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 52px;
    border-top: 1px solid var(--wm-line);
}

.wm-hero-proof > div {
    padding: 21px 20px 0 0;
}

.wm-hero-proof > div + div {
    padding-left: 20px;
    border-left: 1px solid var(--wm-line);
}

.wm-hero-proof strong,
.wm-hero-proof span {
    display: block;
}

.wm-hero-proof strong {
    color: var(--wm-navy);
    font-size: clamp(1.8rem, 2.5vw, 2.65rem);
    font-variant-numeric: tabular-nums;
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 1;
}

.wm-hero-proof span {
    margin-top: 7px;
    color: var(--wm-muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.wm-hero-visual {
    position: relative;
    min-height: clamp(500px, 52vw, 650px);
}

.wm-hero-figure {
    position: absolute;
    inset: 22px 0 54px 42px;
    margin: 0;
    overflow: hidden;
    background: var(--wm-navy-soft);
    box-shadow: var(--wm-shadow);
    clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}

.wm-hero-figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 39, 0.02) 42%, rgba(7, 24, 39, 0.72) 100%);
    content: "";
}

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

.wm-hero-label {
    position: absolute;
    right: 24px;
    bottom: 0;
    z-index: 2;
    min-width: 255px;
    padding: 19px 22px;
    border-left: 4px solid var(--wm-accent-bright);
    background: var(--wm-navy);
    box-shadow: 0 18px 36px rgba(7, 24, 39, 0.25);
    color: var(--wm-paper);
}

.wm-hero-label span,
.wm-hero-label strong {
    display: block;
}

.wm-hero-label span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wm-hero-label strong {
    margin-top: 3px;
    font-size: 1rem;
    font-weight: 750;
}

.wm-hero-corner {
    position: absolute;
    top: 0;
    right: -22px;
    width: 98px;
    height: 98px;
    border-top: 2px solid var(--wm-accent);
    border-right: 2px solid var(--wm-accent);
}

.wm-industry-strip {
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-industry-strip .container {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wm-industry-strip span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wm-industry-strip i {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--wm-accent-bright);
}

.wm-section {
    padding: clamp(82px, 9vw, 138px) 0;
}

.wm-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 58px;
}

.wm-section-heading h2,
.wm-specialists-copy h2,
.wm-about-heading h2,
.wm-paths-heading h2,
.wm-repse h2,
.wm-contact h2 {
    margin: 0;
    color: var(--wm-navy);
    font-size: clamp(2.35rem, 4.6vw, 4.7rem);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 1.02;
}

.wm-section-heading h2 {
    max-width: 13ch;
}

.wm-section-heading > p {
    max-width: 470px;
    margin: 0 0 4px;
    color: var(--wm-copy);
    font-size: 1.03rem;
}

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

.wm-service-card {
    position: relative;
    display: flex;
    min-height: 325px;
    grid-column: span 4;
    flex-direction: column;
    overflow: hidden;
    padding: 31px;
    border: 1px solid var(--wm-line);
    border-radius: var(--wm-radius);
    background: var(--wm-paper);
    transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
}

.wm-service-card--image {
    grid-column: span 7;
    padding: 0;
    background: var(--wm-mist);
}

.wm-service-card--dark {
    grid-column: span 5;
    border-color: var(--wm-navy);
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-service-card--accent {
    border-top: 5px solid var(--wm-accent);
}

.wm-service-number {
    color: var(--wm-accent);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.wm-service-card--dark .wm-service-number {
    color: var(--wm-accent-bright);
}

.wm-service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 34px 0 auto;
    place-items: center;
    border: 1px solid var(--wm-line);
    border-radius: 50%;
    color: var(--wm-accent);
}

.wm-service-card--dark .wm-service-icon {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--wm-accent-bright);
}

.wm-service-card h3 {
    margin: 26px 0 12px;
    color: var(--wm-navy);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.14;
}

.wm-service-card--dark h3 {
    color: var(--wm-paper);
}

.wm-service-card p {
    margin: 0;
    color: var(--wm-copy);
    font-size: 0.95rem;
}

.wm-service-card--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.wm-service-media {
    position: relative;
    height: 310px;
    overflow: hidden;
}

.wm-service-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 24, 39, 0.68));
    content: "";
}

.wm-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease-out;
}

.wm-service-media .wm-service-number {
    position: absolute;
    right: 22px;
    bottom: 18px;
    z-index: 1;
    color: var(--wm-paper);
}

.wm-service-body {
    padding: 30px 32px 32px;
}

.wm-service-body h3 {
    margin-top: 0;
}

.wm-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: var(--wm-accent);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.wm-service-card--dark .wm-text-link {
    color: var(--wm-accent-bright);
}

.wm-specialists {
    background: var(--wm-mist);
}

.wm-specialists-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(56px, 8vw, 118px);
}

.wm-specialists-visual {
    position: relative;
    min-height: 690px;
}

.wm-specialists-photo {
    position: absolute;
    inset: 0 16% 48px 0;
    width: 84%;
    height: calc(100% - 48px);
    object-fit: cover;
    box-shadow: var(--wm-shadow);
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%);
}

.wm-specialists-illustration {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 44%;
    max-height: 370px;
    object-fit: contain;
    border: 10px solid var(--wm-paper);
    background: var(--wm-paper);
    box-shadow: 0 18px 45px rgba(7, 24, 39, 0.18);
}

.wm-vertical-label {
    position: absolute;
    top: 18px;
    right: 3px;
    color: var(--wm-muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.wm-specialists-copy h2 {
    max-width: 12ch;
}

.wm-section-lead {
    max-width: 640px;
    margin: 26px 0 0;
    color: var(--wm-copy);
    font-size: 1.05rem;
}

.wm-specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 35px 0 38px;
}

.wm-specialty-grid span {
    position: relative;
    min-height: 48px;
    padding: 13px 6px 11px 18px;
    border-bottom: 1px solid var(--wm-line);
    color: var(--wm-ink);
    font-size: 0.88rem;
    font-weight: 700;
}

.wm-specialty-grid span::before {
    position: absolute;
    top: 21px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wm-accent);
    content: "";
}

.wm-about {
    position: relative;
    overflow: hidden;
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-about-grid {
    opacity: 0.52;
    background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}

.wm-about-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    gap: 36px 76px;
    align-items: end;
}

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

.wm-about-heading h2 {
    max-width: 14ch;
    color: var(--wm-paper);
}

.wm-about-heading > p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.03rem;
}

.wm-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.wm-proof-grid article {
    min-height: 260px;
    padding: 34px 32px 36px 0;
}

.wm-proof-grid article + article {
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.wm-proof-index {
    display: block;
    margin-bottom: 48px;
    color: var(--wm-accent-bright);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.wm-proof-grid strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 750;
}

.wm-proof-grid p {
    max-width: 330px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.wm-about-story {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(44px, 7vw, 100px);
    margin-top: 70px;
    padding: clamp(30px, 4vw, 56px);
    background: var(--wm-paper);
    color: var(--wm-ink);
}

.wm-about-illustrations {
    position: relative;
    display: grid;
    min-height: 340px;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    overflow: hidden;
    background: var(--wm-mist);
}

.wm-about-illustrations img {
    width: 112%;
    max-width: none;
    max-height: 340px;
    object-fit: contain;
}

.wm-about-illustrations img + img {
    margin-left: -18%;
}

.wm-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--wm-accent);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wm-about-story h3 {
    max-width: 13ch;
    margin: 0;
    color: var(--wm-navy);
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.wm-about-story p {
    max-width: 570px;
    margin: 24px 0 0;
    color: var(--wm-copy);
}

.wm-paths {
    background: var(--wm-paper);
}

.wm-paths-heading {
    margin-bottom: 44px;
}

.wm-paths-heading h2 {
    max-width: 12ch;
}

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

.wm-path-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: clamp(34px, 5vw, 62px);
    border-radius: var(--wm-radius);
}

.wm-path-card::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 230px;
    height: 230px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.12;
    content: "";
}

.wm-path-card--company {
    background: var(--wm-navy);
    color: var(--wm-paper);
}

.wm-path-card--talent {
    border: 1px solid #f0c8b7;
    background: var(--wm-accent-soft);
    color: var(--wm-navy);
}

.wm-path-card > span {
    color: var(--wm-accent-bright);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.wm-path-card--talent > span {
    color: var(--wm-accent);
}

.wm-path-card h3 {
    max-width: 14ch;
    margin: 30px 0 16px;
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.wm-path-card p {
    max-width: 470px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.7);
}

.wm-path-card--talent p {
    color: var(--wm-copy);
}

.wm-path-card .wm-button {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.wm-repse {
    padding: clamp(74px, 8vw, 116px) 0;
    background: var(--wm-accent);
    color: var(--wm-paper);
}

.wm-repse-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: clamp(48px, 8vw, 118px);
}

.wm-repse-mark {
    display: grid;
    min-height: 230px;
    place-items: center;
    padding: 32px;
    background: var(--wm-paper);
    box-shadow: 0 24px 60px rgba(94, 24, 4, 0.2);
    clip-path: polygon(0 0, 90% 0, 100% 16%, 100% 100%, 10% 100%, 0 84%);
}

.wm-repse-mark img {
    width: 100%;
    height: auto;
}

.wm-repse .wm-eyebrow {
    color: rgba(255, 255, 255, 0.83);
}

.wm-repse h2 {
    color: var(--wm-paper);
}

.wm-repse h2 strong {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    font-weight: inherit;
}

.wm-repse-copy > p:not(.wm-eyebrow) {
    max-width: 760px;
    margin: 25px 0 31px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
}

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

.wm-contact-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
    align-items: end;
    gap: 50px;
}

.wm-contact h2 {
    max-width: 10ch;
}

.wm-contact-direct {
    display: grid;
    gap: 10px;
}

.wm-contact-direct a {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--wm-line);
    color: var(--wm-navy);
    text-decoration: none;
}

.wm-contact-direct span,
.wm-contact-direct strong {
    display: block;
}

.wm-contact-direct span {
    color: var(--wm-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.wm-contact-direct strong {
    text-align: right;
    font-size: 1rem;
    font-weight: 750;
}

.wm-office-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 62px;
}

.wm-office-card {
    min-height: 270px;
    padding: 30px;
    border: 1px solid var(--wm-line);
    border-radius: 12px;
    background: var(--wm-paper);
}

.wm-office-index {
    color: var(--wm-accent);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.wm-office-card h3 {
    margin: 46px 0 14px;
    color: var(--wm-navy);
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.wm-office-card address {
    margin: 0;
    color: var(--wm-copy);
    font-size: 0.9rem;
    font-style: normal;
}

.wm-contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 22px;
    padding: clamp(28px, 4vw, 48px);
    background: var(--wm-paper);
}

.wm-contact-cta span,
.wm-contact-cta strong {
    display: block;
}

.wm-contact-cta span {
    color: var(--wm-muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.wm-contact-cta strong {
    max-width: 620px;
    margin-top: 5px;
    color: var(--wm-navy);
    font-size: clamp(1.35rem, 2.3vw, 2.05rem);
    font-weight: 730;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.wm-footer {
    padding: 76px 0 24px;
    background: #04121e;
    color: var(--wm-paper);
}

.wm-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
    gap: 70px;
}

.wm-footer-brand img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.wm-footer-brand p {
    max-width: 410px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.58);
}

.wm-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.wm-footer-nav > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wm-footer-nav strong {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wm-footer-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 180ms ease-out;
}

.wm-footer-nav a:hover {
    color: var(--wm-accent-bright);
}

.wm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 64px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.73rem;
}

@media (hover: hover) {
    .wm-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 32px rgba(7, 24, 39, 0.18);
    }

    .wm-button:hover svg {
        transform: translateX(3px);
    }

    .wm-button--primary:hover {
        background: var(--wm-accent-dark);
        color: var(--wm-paper);
    }

    .wm-button--ghost:hover {
        border-color: var(--wm-navy);
        background: var(--wm-navy);
        color: var(--wm-paper);
    }

    .wm-button--dark:hover,
    .wm-button--header:hover {
        background: var(--wm-graphite);
        color: var(--wm-paper);
    }

    .wm-service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(196, 69, 26, 0.46);
        box-shadow: var(--wm-shadow);
    }

    .wm-service-card--image:hover .wm-service-media img {
        transform: scale(1.025);
    }
}

@keyframes wm-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wm-hero-copy > * {
    animation: wm-rise 520ms ease-out both;
}

.wm-hero-copy > :nth-child(2) {
    animation-delay: 60ms;
}

.wm-hero-copy > :nth-child(3) {
    animation-delay: 110ms;
}

.wm-hero-copy > :nth-child(4) {
    animation-delay: 160ms;
}

.wm-hero-copy > :nth-child(5) {
    animation-delay: 210ms;
}

.wm-hero-visual {
    animation: wm-rise 620ms 120ms ease-out both;
}

@media (max-width: 1199.98px) {
    .wm-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
        gap: 46px;
    }

    .wm-service-card {
        padding: 27px;
    }

    .wm-service-card--image {
        padding: 0;
    }

    .wm-specialists-visual {
        min-height: 620px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 74px;
    }

    .wm-navbar {
        min-height: 72px;
    }

    .wm-hero {
        min-height: auto;
        padding-top: 82px;
    }

    .wm-hero-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .wm-hero h1 {
        max-width: 11ch;
        font-size: clamp(3.6rem, 10vw, 6rem);
    }

    .wm-hero-lead {
        max-width: 720px;
    }

    .wm-hero-visual {
        width: min(100%, 760px);
        min-height: 620px;
        margin: 0 auto;
    }

    .wm-section-heading,
    .wm-about-heading,
    .wm-contact-top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .wm-section-heading > p,
    .wm-about-heading > p {
        max-width: 680px;
    }

    .wm-service-card,
    .wm-service-card--image,
    .wm-service-card--dark {
        grid-column: span 6;
    }

    .wm-specialists-layout {
        grid-template-columns: 1fr;
    }

    .wm-specialists-copy {
        grid-row: 1;
    }

    .wm-specialists-visual {
        width: min(100%, 700px);
        min-height: 650px;
        grid-row: 2;
    }

    .wm-specialists-copy h2 {
        max-width: 14ch;
    }

    .wm-about-heading .wm-eyebrow {
        grid-column: auto;
        margin-bottom: 0;
    }

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

    .wm-about-illustrations {
        min-height: 380px;
    }

    .wm-repse-layout {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
        gap: 48px;
    }

    .wm-contact-direct {
        max-width: 610px;
    }

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

    .wm-office-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

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

@media (max-width: 767.98px) {
    .wm-brand img {
        width: 116px;
    }

    .wm-hero {
        padding: 64px 0 72px;
    }

    .wm-hero::before {
        width: 5px;
    }

    .wm-eyebrow {
        font-size: 0.66rem;
    }

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

    .wm-hero-lead {
        margin-top: 24px;
    }

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

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

    .wm-hero-proof {
        margin-top: 40px;
    }

    .wm-hero-proof > div {
        padding-right: 9px;
    }

    .wm-hero-proof > div + div {
        padding-left: 10px;
    }

    .wm-hero-proof strong {
        font-size: 1.8rem;
    }

    .wm-hero-proof span {
        font-size: 0.65rem;
    }

    .wm-hero-visual {
        min-height: 510px;
    }

    .wm-hero-figure {
        inset: 12px 0 45px 18px;
    }

    .wm-hero-label {
        right: 12px;
        min-width: 220px;
    }

    .wm-hero-corner {
        display: none;
    }

    .wm-industry-strip .container {
        min-height: 96px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .wm-industry-strip span {
        font-size: 0.68rem;
    }

    .wm-industry-strip i {
        display: none;
    }

    .wm-section {
        padding: 78px 0;
    }

    .wm-section-heading {
        margin-bottom: 38px;
    }

    .wm-section-heading h2,
    .wm-specialists-copy h2,
    .wm-about-heading h2,
    .wm-paths-heading h2,
    .wm-repse h2,
    .wm-contact h2 {
        font-size: clamp(2.25rem, 10.5vw, 3.65rem);
    }

    .wm-service-card,
    .wm-service-card--image,
    .wm-service-card--dark {
        grid-column: 1 / -1;
    }

    .wm-service-card {
        min-height: 300px;
    }

    .wm-specialists-visual {
        min-height: 520px;
    }

    .wm-specialists-photo {
        right: 8%;
        width: 92%;
    }

    .wm-specialists-illustration {
        width: 38%;
        max-height: 270px;
        border-width: 7px;
    }

    .wm-vertical-label {
        display: none;
    }

    .wm-specialty-grid {
        grid-template-columns: 1fr;
    }

    .wm-proof-grid {
        grid-template-columns: 1fr;
    }

    .wm-proof-grid article {
        min-height: auto;
        padding: 28px 0;
    }

    .wm-proof-grid article + article {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.17);
        border-left: 0;
    }

    .wm-proof-index {
        margin-bottom: 22px;
    }

    .wm-about-story {
        margin-top: 54px;
    }

    .wm-about-illustrations {
        min-height: 300px;
    }

    .wm-paths-grid {
        grid-template-columns: 1fr;
    }

    .wm-path-card {
        min-height: 390px;
    }

    .wm-repse-layout {
        grid-template-columns: 1fr;
    }

    .wm-repse-mark {
        width: min(100%, 430px);
        min-height: 190px;
    }

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

    .wm-office-card:last-child {
        grid-column: auto;
    }

    .wm-office-card {
        min-height: auto;
    }

    .wm-office-card h3 {
        margin-top: 30px;
    }

    .wm-contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .wm-contact-cta .wm-button {
        width: 100%;
    }

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

    .wm-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479.98px) {
    .wm-hero-visual {
        min-height: 420px;
    }

    .wm-hero-label {
        right: 0;
        bottom: 4px;
        min-width: 0;
        max-width: calc(100% - 28px);
        padding: 15px 17px;
    }

    .wm-service-card,
    .wm-service-body {
        padding: 24px;
    }

    .wm-service-card--image {
        padding: 0;
    }

    .wm-service-media {
        height: 250px;
    }

    .wm-specialists-visual {
        min-height: 430px;
    }

    .wm-specialists-illustration {
        display: none;
    }

    .wm-specialists-photo {
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .wm-about-story {
        padding: 24px;
    }

    .wm-about-illustrations {
        min-height: 240px;
    }

    .wm-about-illustrations img {
        max-height: 250px;
    }

    .wm-contact-direct a {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .wm-contact-direct strong {
        text-align: left;
        overflow-wrap: anywhere;
    }
}

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

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