:root {
    --ink: #161719;
    --ink-soft: #24262a;
    --paper: #f4f1eb;
    --paper-bright: #fbfaf7;
    --white: #fff;
    --red: #e33d40;
    --red-dark: #b82127;
    --sand: #d8d0c3;
    --muted: #696a6c;
    --line: rgba(22, 23, 25, 0.14);
    --line-dark: rgba(255, 255, 255, 0.16);
    --container: 1220px;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(22, 23, 25, 0.14);
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-bright);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3 {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.03;
}

h1 {
    max-width: 900px;
    margin-bottom: 26px;
    font-size: clamp(3.25rem, 7vw, 6.7rem);
    font-weight: 650;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    font-weight: 650;
    letter-spacing: -0.04em;
}

h3 {
    font-weight: 650;
    letter-spacing: -0.02em;
}

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

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

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(10, 11, 12, 0.86), rgba(10, 11, 12, 0));
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(18, 19, 21, 0.94);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand img {
    width: 44px;
    height: 44px;
}

.brand strong {
    color: var(--red);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.primary-navigation a {
    position: relative;
    padding-block: 14px;
}

.primary-navigation a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 12px 17px !important;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
    border-color: var(--red);
    background: var(--red);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    display: flex;
    min-height: 820px;
    height: 100svh;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

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

.hero-media {
    background-image: url("../images/generated/hero-cross-industry.webp");
    background-position: center center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(12, 13, 14, 0.96) 0%, rgba(12, 13, 14, 0.78) 36%, rgba(12, 13, 14, 0.27) 67%, rgba(12, 13, 14, 0.15) 100%),
        linear-gradient(180deg, rgba(12, 13, 14, 0.18) 30%, rgba(12, 13, 14, 0.86) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    padding-top: 118px;
    padding-bottom: 56px;
    flex-direction: column;
    justify-content: center;
}

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

.eyebrow {
    margin-bottom: 22px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-summary {
    max-width: 770px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.12rem, 1.8vw, 1.45rem);
    line-height: 1.55;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-summary {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

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

.button-primary:hover {
    background: var(--red-dark);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.hero-note {
    position: absolute;
    right: 0;
    bottom: 54px;
    display: grid;
    max-width: 390px;
    padding: 22px 24px;
    grid-template-columns: auto 1fr;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(15, 16, 18, 0.62);
    backdrop-filter: blur(18px);
}

.hero-note-number {
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 800;
}

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

.hero-note strong {
    margin-bottom: 3px;
    font-size: 0.98rem;
}

.hero-note div span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
    line-height: 1.5;
}

.proof-strip {
    color: var(--white);
    background: var(--red);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
    min-height: 120px;
    padding: 27px 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-grid > div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

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

.proof-grid span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.proof-grid strong {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.section {
    padding-block: clamp(90px, 10vw, 150px);
}

.section-intro {
    background:
        radial-gradient(circle at 0 0, rgba(227, 61, 64, 0.08), transparent 30%),
        var(--paper-bright);
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2fr);
    gap: 60px;
}

.section-kicker {
    display: flex;
    padding-top: 14px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-index {
    color: var(--red);
}

.intro-content {
    max-width: 920px;
}

.lead {
    color: #35373a;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.intro-content > p:not(.lead) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.04rem;
}

.tag-list {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #454649;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-dark {
    color: var(--white);
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        var(--ink);
    background-size: 64px 64px;
}

.section-heading {
    display: grid;
    margin-bottom: 66px;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2 {
    max-width: 800px;
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.64);
}

.section-heading-dark > p {
    color: var(--muted);
}

.offer-pillars {
    display: grid;
    margin-bottom: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pillar {
    position: relative;
    min-height: 540px;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.pillar::after {
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.pillar-accent {
    background: var(--red);
}

.pillar-accent::after {
    border-color: rgba(255, 255, 255, 0.23);
}

.pillar-label {
    display: block;
    margin-bottom: 54px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pillar h3 {
    max-width: 600px;
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.pillar ul {
    position: relative;
    z-index: 1;
    display: grid;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.pillar li {
    padding-block: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
}

.pillar a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pillar a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.capability-card {
    min-height: 300px;
    padding: 32px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(22, 23, 25, 0.82);
    transition: background 180ms ease, transform 180ms ease;
}

.capability-card:hover {
    z-index: 1;
    background: var(--ink-soft);
    transform: translateY(-4px);
}

.capability-card > span {
    display: block;
    margin-bottom: 70px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 850;
}

.capability-card h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.capability-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
}

.industries {
    background: var(--paper);
}

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

.industry-card {
    position: relative;
    min-height: 500px;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.industry-card::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 11, 13, 0.2) 0%,
            rgba(10, 11, 13, 0.32) 22%,
            rgba(10, 11, 13, 0.68) 42%,
            rgba(10, 11, 13, 0.9) 62%,
            rgba(10, 11, 13, 0.97) 82%,
            rgba(10, 11, 13, 0.99) 100%
        ),
        linear-gradient(90deg, rgba(10, 11, 13, 0.28), transparent 72%);
    content: "";
    pointer-events: none;
}

.industry-card:hover img {
    transform: scale(1.045);
}

.industry-card-featured {
    grid-column: span 2;
}

.industry-card-featured img {
    object-position: 56% center;
}

.industry-card-content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
}

.industry-card-content > span {
    display: block;
    margin-bottom: 12px;
    color: #ffc2c3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.industry-card-content h3 {
    max-width: 720px;
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.industry-card-content p {
    max-width: 610px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.process-section {
    color: var(--white);
    background: var(--red);
}

.process-heading {
    display: grid;
    margin-bottom: 64px;
    grid-template-columns: 0.6fr 2fr;
    gap: 60px;
}

.process-heading .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.process-heading h2 {
    max-width: 900px;
}

.process {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    list-style: none;
}

.process li {
    position: relative;
    min-height: 275px;
    padding: 30px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.process li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.process li::before {
    position: absolute;
    top: -5px;
    left: 23px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    content: "";
}

.process li > span {
    display: block;
    margin-bottom: 62px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 800;
}

.process h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.process p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

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

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

.case-card {
    --case-image-height: 270px;

    display: grid;
    min-height: 620px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    grid-template-rows: var(--case-image-height) 1fr;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.case-card > img {
    height: var(--case-image-height);
    width: 100%;
    min-height: 0;
    object-fit: cover;
}

.case-card-body {
    position: relative;
    z-index: 1;
    padding: 34px;
    color: var(--ink);
    background: var(--white);
}

.case-sector {
    display: block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.case-card h3 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.case-card p {
    color: var(--muted);
}

.case-card dl {
    display: grid;
    margin: 0;
    gap: 16px;
}

.case-card dl > div {
    display: grid;
    padding-top: 14px;
    grid-template-columns: 115px 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
}

.case-card dt {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-card dd {
    margin: 0;
    color: var(--muted);
}

.client-section {
    padding-block: 76px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.client-heading {
    display: grid;
    margin-bottom: 50px;
    grid-template-columns: 1.5fr 0.8fr;
    align-items: end;
    gap: 60px;
}

.client-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.client-heading > p {
    margin-bottom: 0;
    color: var(--muted);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
}

.client-logos img {
    width: 100%;
    aspect-ratio: 1;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 50%;
    filter: grayscale(1);
    object-fit: contain;
    transition: border-color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.client-logos img:hover {
    border-color: var(--red);
    filter: grayscale(0);
    transform: translateY(-3px);
}

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

.why-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.5fr);
    gap: 90px;
}

.why-heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.why-heading h2 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.why-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    gap: 8px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.principle-grid article {
    min-height: 320px;
    padding: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle-grid span {
    display: block;
    margin-bottom: 86px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 850;
}

.principle-grid h3 {
    margin-bottom: 14px;
    font-size: 1.65rem;
}

.principle-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-section {
    position: relative;
    padding-block: clamp(90px, 11vw, 160px);
    color: var(--white);
    background:
        radial-gradient(circle at 15% 15%, rgba(227, 61, 64, 0.22), transparent 33%),
        var(--ink);
    overflow: hidden;
}

.contact-section::after {
    position: absolute;
    right: -180px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.25fr);
    gap: 90px;
}

.contact-copy {
    padding-top: 14px;
}

.contact-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.contact-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.05rem;
}

.contact-copy > a {
    display: inline-block;
    margin-top: 18px;
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-underline-offset: 6px;
}

.contact-form {
    position: relative;
    display: grid;
    padding: clamp(28px, 5vw, 54px);
    gap: 22px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

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

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

.field label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 0;
    color: var(--white);
    background: transparent;
    outline: none;
}

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

.field textarea {
    min-height: 130px;
    padding-top: 12px;
    resize: vertical;
}

.field select {
    color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-bottom-color: var(--red);
    box-shadow: 0 1px 0 var(--red);
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.turnstile-container {
    display: flex;
    min-height: 65px;
    align-items: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

.turnstile-container iframe {
    max-width: 100%;
}

.button-submit {
    justify-self: start;
    margin-top: 4px;
    cursor: pointer;
}

.button-submit:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.8rem;
}

.form-note a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-underline-offset: 3px;
}

.form-status {
    min-height: 1.4em;
    margin: -8px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
}

.form-status.is-success {
    color: #9de3b1;
}

.form-status.is-error {
    color: #ffb6b8;
}

.site-footer {
    padding-top: 76px;
    color: rgba(255, 255, 255, 0.68);
    background: #0d0e0f;
}

.footer-top {
    display: flex;
    padding-bottom: 44px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid var(--line-dark);
}

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

.footer-top > p {
    max-width: 510px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.footer-addresses {
    display: grid;
    padding-block: 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-addresses address {
    font-style: normal;
}

.footer-addresses strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    font-size: 0.78rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.back-to-top {
    position: fixed;
    z-index: 50;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(22, 23, 25, 0.88);
    opacity: 0;
    place-items: center;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
    backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
}

.legal-main {
    background: var(--paper-bright);
}

.legal-hero {
    padding: 190px 0 90px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(227, 61, 64, 0.24), transparent 31%),
        var(--ink);
}

.legal-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 8vw, 7.2rem);
}

.legal-hero > .container > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.12rem;
}

.legal-section {
    padding-block: clamp(80px, 10vw, 140px);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.8fr);
    gap: clamp(50px, 9vw, 120px);
}

.legal-aside {
    position: sticky;
    top: 130px;
    align-self: start;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.legal-aside p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.82rem;
}

.legal-aside a {
    color: var(--red);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin: 72px 0 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 28px 0 10px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.legal-content p,
.legal-content li {
    color: #515256;
}

.legal-content ul {
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-footer {
    padding-top: 0;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1080px) {
    .nav-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        width: min(420px, 100%);
        height: 100svh;
        padding: 110px 34px 40px;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        background: rgba(15, 16, 18, 0.98);
        box-shadow: -30px 0 80px rgba(0, 0, 0, 0.3);
        transform: translateX(105%);
        transition: transform 220ms ease;
    }

    .primary-navigation.is-open {
        transform: translateX(0);
    }

    .primary-navigation a {
        padding-block: 16px;
        border-bottom: 1px solid var(--line-dark);
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 18px;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.42) !important;
    }

    .nav-toggle {
        position: relative;
        z-index: 2;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        min-height: 780px;
    }

    .hero-note {
        position: static;
        margin-top: 54px;
        align-self: flex-end;
    }

    .section-heading,
    .client-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .industry-card-featured {
        grid-column: span 2;
    }

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

    .process li:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.28);
    }

    .client-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

    .header-inner {
        min-height: 72px;
    }

    .brand {
        font-size: 0.68rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

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

    .hero-media {
        background-position: 56% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(12, 13, 14, 0.93), rgba(12, 13, 14, 0.66)),
            linear-gradient(180deg, rgba(12, 13, 14, 0.15), rgba(12, 13, 14, 0.88));
    }

    .hero-inner {
        padding-top: 132px;
        padding-bottom: 48px;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.65rem);
    }

    h2 {
        font-size: clamp(2.4rem, 12vw, 3.65rem);
    }

    .hero-note {
        max-width: 100%;
        margin-top: 48px;
        align-self: stretch;
    }

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

    .proof-grid > div,
    .proof-grid > div:last-child {
        min-height: 92px;
        padding: 21px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
        border-left: 0;
    }

    .proof-grid > div:last-child {
        border-bottom: 0;
    }

    .split-intro,
    .section-heading,
    .process-heading,
    .why-layout,
    .contact-layout,
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-kicker {
        max-width: none;
    }

    .offer-pillars,
    .capability-grid,
    .industry-grid,
    .case-grid,
    .principle-grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 0;
        padding: 32px 26px;
    }

    .pillar-label {
        margin-bottom: 40px;
    }

    .capability-card {
        min-height: 260px;
        padding: 28px;
    }

    .capability-card > span {
        margin-bottom: 50px;
    }

    .industry-card,
    .industry-card-featured {
        min-height: 480px;
        grid-column: auto;
    }

    .industry-card-content {
        padding: 28px;
    }

    .process {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .process li,
    .process li:first-child,
    .process li:nth-child(4) {
        min-height: 0;
        padding: 27px 0 27px 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        border-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.28);
    }

    .process li::before {
        top: 25px;
        left: -5px;
    }

    .process li > span {
        margin-bottom: 18px;
    }

    .case-card {
        --case-image-height: 230px;

        min-height: 0;
        grid-template-rows: var(--case-image-height) auto;
    }

    .case-card-body {
        padding: 28px;
    }

    .case-card dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

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

    .why-heading {
        position: static;
    }

    .legal-aside {
        position: static;
    }

    .principle-grid article {
        min-height: 270px;
        padding: 28px;
    }

    .principle-grid span {
        margin-bottom: 62px;
    }

    .form-row,
    .footer-addresses {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        padding-block: 26px;
    }

    .footer-bottom div {
        gap: 12px 20px;
    }
}

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

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

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