:root {
    --azurite: #222b66;
    --azurite-dark: #171f50;
    --navy: #071a2b;
    --navy-soft: #0d2638;
    --graphite: #182429;
    --ink: #26343a;
    --muted: #58686f;
    --paper: #f5f4ef;
    --paper-light: #fbfaf7;
    --cool: #e9efef;
    --line: #c8d0d1;
    --line-dark: #3e5260;
    --white: #ffffff;
    --teal: #80b7bd;
    --amber: #e1ae5b;
    --error: #9f261f;
    --success: #24613d;
    --shell: 1180px;
    --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper-light);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

img,
video {
    height: auto;
}

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

a {
    color: var(--azurite);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--azurite-dark);
}

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

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

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

h1,
h2,
h3 {
    color: var(--graphite);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 4vw, 3rem);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

h3 {
    margin-bottom: 9px;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

p:last-child {
    margin-bottom: 0;
}

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--azurite);
    border: 2px solid var(--azurite);
    font-weight: 750;
    transform: translateY(-160%);
}

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

#main-content:focus {
    outline: none;
}

.section-label,
.section-kicker,
.footer-label {
    margin-bottom: 10px;
    color: var(--azurite);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-label--light {
    color: #c8d8e8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 32px;
    padding-block: 5px;
    color: var(--azurite);
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.text-link span {
    transition: transform 160ms ease;
}

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

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    background: var(--azurite);
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.site-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 155px;
}

.desktop-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 4px;
}

.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 84px;
    padding: 0 14px;
    color: #e6ebf4;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 2px;
    content: "";
    background: transparent;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
    background: var(--white);
}

.brand:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu > summary:focus-visible,
.site-footer a:focus-visible {
    outline-color: var(--white);
}

.mobile-menu {
    display: none;
}

/* Compact inquiry form */
.inquiry-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 396px;
    padding: 16px 18px 14px;
    background: rgb(255 255 255 / 98.5%);
    border: 1px solid rgb(255 255 255 / 78%);
    box-shadow: 0 22px 54px rgb(2 14 25 / 34%);
    scroll-margin-top: 20px;
}

.inquiry-panel::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 54px;
    height: 3px;
    content: "";
    background: var(--azurite);
}

.inquiry-panel__heading {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.inquiry-panel__heading h2 {
    margin-bottom: 3px;
    font-size: 1.4rem;
    letter-spacing: -0.025em;
}

.inquiry-panel__heading p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.inquiry-form {
    display: grid;
    gap: 6px;
}

.field {
    position: relative;
    display: grid;
}

.field label {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 11px;
    color: #33444b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1;
    pointer-events: none;
}

.field label span {
    color: var(--muted);
    font-weight: 550;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 19px 11px 4px;
    background: var(--white);
    color: var(--graphite);
    border: 1px solid #78878c;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.88rem;
    line-height: 1.25;
}

.field textarea {
    min-height: 70px;
    padding-top: 21px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #68767b;
    opacity: 1;
}

.field input:hover,
.field textarea:hover {
    border-color: var(--graphite);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--azurite);
}

.field input:focus-visible,
.field textarea:focus-visible {
    outline: 3px solid var(--azurite);
    outline-offset: 1px;
}

.field--error input,
.field--error textarea {
    border-color: var(--error);
}

.field__hint,
.field__error {
    margin: 2px 0 0;
    font-size: 0.69rem;
    line-height: 1.3;
}

.field__hint {
    color: var(--muted);
}

.field__error {
    color: var(--error);
    font-weight: 700;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 18px;
    background: var(--azurite);
    color: var(--white);
    border: 2px solid var(--azurite);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.button:hover {
    background: var(--azurite-dark);
    border-color: var(--azurite-dark);
}

.button:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--azurite);
}

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

.button--light:hover {
    background: #eef1f7;
    color: var(--azurite-dark);
    border-color: #eef1f7;
}

.form-privacy {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.3;
}

.form-privacy a {
    display: inline-block;
    padding: 5px 2px;
    margin: -5px -2px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin-bottom: 10px;
    padding: 9px 11px;
    border-left: 3px solid;
    font-size: 0.74rem;
}

.form-notice strong,
.form-notice span {
    display: block;
}

.form-notice ul {
    margin: 6px 0 0;
    padding-left: 17px;
}

.form-notice--success {
    background: #edf6f0;
    border-color: var(--success);
    color: #17482b;
}

.form-notice--error {
    background: #faefed;
    border-color: var(--error);
    color: #701b17;
}

.form-notice--error a {
    color: #701b17;
}

.direct-contact {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    margin-top: 9px;
    border-top: 1px solid var(--line);
}

.direct-contact > div {
    min-width: 0;
    padding: 8px 9px 0 0;
}

.direct-contact > div + div {
    padding-left: 13px;
    border-left: 1px solid var(--line);
}

.direct-contact span {
    display: block;
    margin-bottom: 1px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.direct-contact a {
    min-height: 34px;
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
    font-size: 0.84rem;
    font-weight: 750;
}

/* Homepage hero */
.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.home-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgb(5 19 32 / 16%) 0%, rgb(5 19 32 / 2%) 58%, rgb(5 19 32 / 16%) 100%);
    pointer-events: none;
}

.home-hero__art,
.home-hero__art img {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__art img {
    object-fit: cover;
    object-position: center;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: clamp(48px, 6vw, 78px);
    row-gap: 20px;
    padding-block: 38px;
}

.home-hero__intro {
    grid-column: 1;
    grid-row: 1;
    max-width: 650px;
}

.home-hero__intro h1 {
    max-width: 13.6em;
    margin-bottom: 17px;
    color: var(--white);
    font-size: clamp(2.55rem, 3.7vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
}

.home-hero__summary {
    max-width: 590px;
    margin-bottom: 0;
    color: #e5edf1;
    font-size: 1.03rem;
    line-height: 1.5;
}

.home-hero__credentials {
    grid-column: 1;
    grid-row: 2;
    max-width: 590px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgb(255 255 255 / 33%);
}

.home-hero__credentials p {
    margin: 0;
    color: #d4e0e7;
    font-size: 0.82rem;
    line-height: 1.45;
}

.home-hero__credentials p + p {
    padding-left: 20px;
    border-left: 1px solid rgb(255 255 255 / 25%);
}

.home-hero__credentials strong {
    color: var(--white);
    font-weight: 800;
}

.home-contact-prompt {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 350px;
    padding: 25px 26px 23px;
    background: #0a2233;
    color: var(--white);
    border: 1px solid rgb(255 255 255 / 28%);
    box-shadow: 0 18px 48px rgb(2 14 25 / 24%);
}

.home-contact-prompt::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 58px;
    height: 3px;
    content: "";
    background: var(--teal);
}

.home-contact-prompt__label {
    margin-bottom: 8px;
    color: #bfd4dd;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-contact-prompt h2 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 1.75rem;
    letter-spacing: -0.03em;
}

.home-contact-prompt > p:not(.home-contact-prompt__label) {
    margin-bottom: 17px;
    color: #d7e3e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.home-contact-prompt .button {
    width: 100%;
}

.home-contact-prompt .button span {
    margin-left: auto;
}

.home-contact-prompt__contact {
    display: grid;
    gap: 2px;
    margin-top: 17px;
    padding-top: 13px;
    border-top: 1px solid rgb(255 255 255 / 24%);
}

.home-contact-prompt__contact a {
    min-height: 32px;
    display: flex;
    align-items: center;
    width: fit-content;
    color: var(--white);
    font-size: 0.83rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.home-contact-prompt__contact a:hover {
    color: var(--white);
}

.home-contact-prompt a:focus-visible {
    outline-color: var(--white);
}

/* Find / Map / Measure */
.method {
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
}

.method__intro {
    position: relative;
    isolation: isolate;
    min-height: 176px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.method__intro::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 46%, rgb(245 244 239 / 96%) 56%, rgb(245 244 239 / 58%) 72%, rgb(245 244 239 / 10%) 100%);
    pointer-events: none;
}

.method__art,
.method__art img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.method__art {
    z-index: 0;
    width: min(58%, 820px);
    opacity: 0.62;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 18%) 20%, #000 54%);
    mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 18%) 20%, #000 54%);
}

.method__art img {
    width: 100%;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(0.82) contrast(0.92);
}

.method__intro-copy {
    position: relative;
    z-index: 2;
    padding-block: 37px 39px;
}

.method__intro-copy h2 {
    max-width: 700px;
    margin-bottom: 8px;
    color: var(--graphite);
    font-size: clamp(2.2rem, 3.6vw, 2.7rem);
    line-height: 1.03;
}

.method__intro-copy > p:last-child {
    max-width: 570px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9375rem;
}

.method__content {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.93fr);
    align-items: start;
    gap: clamp(38px, 5vw, 62px);
    padding-block: 42px 46px;
}

.method__list {
    border-top: 1px solid var(--graphite);
}

.method-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
    padding-block: 20px 21px;
    border-bottom: 1px solid var(--line);
}

.method-item__step {
    padding-top: 2px;
}

.method-item__step span,
.method-item__step strong {
    display: block;
}

.method-item__step span {
    margin-bottom: 4px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.method-item__step strong {
    color: var(--azurite);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.method-item h3 {
    margin-bottom: 7px;
    font-size: 1.18rem;
}

.method-item p {
    max-width: 600px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.method__visual {
    min-width: 0;
}

.method__visual figure {
    margin: 0;
}

.method__visual figure img {
    width: 100%;
    aspect-ratio: 610 / 278;
    object-fit: contain;
    background: #dfe6e8;
    border: 1px solid #aebabc;
}

.method__visual figcaption,
.ogi-evidence figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.42;
}

.method__support {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    margin-top: 17px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.method__support span {
    color: var(--azurite);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.method__support p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.method__visual .text-link {
    margin-top: 14px;
}

/* Homepage project inquiry */
.project-contact {
    background: var(--cool);
    border-bottom: 1px solid var(--line);
}

.project-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
    gap: clamp(50px, 7vw, 88px);
    padding-block: 52px 54px;
}

.project-contact__intro {
    max-width: 600px;
}

.project-contact__intro h2 {
    max-width: 12ch;
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 3.4vw, 2.65rem);
}

.project-contact__intro > p:last-of-type {
    max-width: 58ch;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.58;
}

.project-contact__facts {
    max-width: 570px;
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}

.project-contact__facts > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
}

.project-contact__facts dt {
    color: var(--azurite);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-contact__facts dd {
    margin: 0;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 650;
}

.project-contact .inquiry-panel {
    max-width: 430px;
    justify-self: end;
    border-color: #d2d9da;
    box-shadow: 0 16px 40px rgb(30 48 55 / 13%);
}

/* OGI */
.ogi-evidence {
    background: var(--navy);
    color: #dce6eb;
    border-bottom: 1px solid var(--line-dark);
}

.ogi-evidence__grid {
    display: grid;
    grid-template-columns: minmax(430px, 1.12fr) minmax(330px, 0.88fr);
    align-items: center;
    gap: clamp(42px, 6vw, 70px);
    padding-block: 50px 52px;
}

.ogi-evidence__media {
    width: 100%;
    max-width: 560px;
    margin: 0;
}

.media-frame {
    width: 100%;
    background: #000;
    border: 1px solid #586d78;
}

.media-frame video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
}

.ogi-evidence figcaption {
    color: #aebec7;
}

.ogi-evidence__copy h2 {
    max-width: 13ch;
    margin-bottom: 15px;
    color: var(--white);
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    line-height: 1.06;
}

.ogi-evidence__copy > p:not(.section-label) {
    margin-bottom: 0;
    color: #d2dee4;
    font-size: 0.9375rem;
    line-height: 1.58;
}

.technical-note {
    margin-top: 18px !important;
    padding-top: 15px;
    border-top: 1px solid var(--line-dark);
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.technical-note strong {
    color: var(--white);
}

/* Industries */
.industries-preview {
    padding-block: 52px 50px;
    background: var(--paper);
}

.industries-preview__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 28px;
}

.industries-preview__heading h2 {
    max-width: 28ch;
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 2.45rem);
}

.industries-preview__heading > p {
    max-width: 380px;
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 0.9375rem;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.industry-item {
    min-width: 0;
    padding: 23px 22px 25px;
}

.industry-item + .industry-item {
    border-left: 1px solid var(--line);
}

.industry-item > span {
    display: block;
    margin-bottom: 18px;
    color: var(--azurite);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.industry-item h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.industry-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.industries-preview__link {
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background: var(--azurite);
    color: #edf0f7;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) minmax(210px, 0.8fr) 190px;
    align-items: start;
    gap: 26px 46px;
    padding-block: 31px 21px;
}

.site-footer__brand {
    display: inline-block;
}

.site-footer__brand img {
    width: 166px;
}

.site-footer__identity p {
    max-width: 350px;
    margin: 12px 0 0;
    color: #cbd3e1;
    font-size: 0.78rem;
}

.footer-label {
    margin-bottom: 9px;
    color: #c1cae0;
    font-size: 0.64rem;
}

.site-footer__contact a {
    min-height: 30px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.site-footer__credential {
    justify-self: end;
}

.site-footer__credential img {
    width: 178px;
    padding: 6px;
    background: var(--white);
}

.site-footer__base {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 17px;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.site-footer__base p {
    margin: 0;
    color: #bcc6d8;
    font-size: 0.7rem;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 19px;
}

.site-footer__nav a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__nav a:hover {
    text-decoration: underline;
}

@media (max-width: 1080px) {
    .home-hero__grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        column-gap: 42px;
    }

    .home-hero__intro h1 {
        font-size: 2.55rem;
    }

    .method__content {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
        gap: 34px;
    }

    .method-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 17px;
    }

    .project-contact__grid {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 46px;
    }

    .project-contact .inquiry-panel {
        max-width: 410px;
    }

    .industry-item {
        padding-inline: 17px;
    }
}

@media (max-width: 900px) {
    .home-hero::before {
        background: linear-gradient(90deg, rgb(4 17 29 / 42%) 0%, rgb(4 17 29 / 19%) 100%);
    }

    .home-hero__grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 21px;
        padding-block: 39px 41px;
    }

    .home-hero__intro {
        grid-column: 1;
        grid-row: auto;
        max-width: 640px;
    }

    .home-contact-prompt {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
        max-width: 480px;
    }

    .home-hero__credentials {
        grid-column: 1;
        grid-row: auto;
        max-width: 640px;
    }

    .method__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .method__visual {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr);
        gap: 22px;
        align-items: start;
    }

    .method__support {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 0;
    }

    .method__visual .text-link {
        grid-column: 2;
        margin-top: -28px;
    }

    .project-contact__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-block: 47px 50px;
    }

    .project-contact__intro {
        max-width: 650px;
    }

    .project-contact .inquiry-panel {
        max-width: 520px;
        justify-self: start;
    }

    .ogi-evidence__grid {
        grid-template-columns: minmax(360px, 1.08fr) minmax(280px, 0.92fr);
        gap: 34px;
    }

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

    .industry-item:nth-child(3) {
        border-left: 0;
    }

    .industry-item:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__credential {
        justify-self: start;
    }

    .site-footer__base {
        grid-column: 1 / -1;
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    .home-hero__grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.8fr);
        grid-template-rows: auto auto;
        column-gap: 30px;
        row-gap: 25px;
    }

    .home-hero__intro {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .home-contact-prompt {
        grid-column: 1;
        grid-row: 2;
        max-width: none;
    }

    .home-hero__credentials {
        grid-column: 2;
        grid-row: 2;
        grid-template-columns: 1fr;
        align-self: stretch;
        align-content: center;
        gap: 13px;
        padding-top: 0;
        border-top: 0;
    }

    .home-hero__credentials p {
        padding-top: 13px;
        border-top: 1px solid rgb(255 255 255 / 30%);
    }

    .home-hero__credentials p + p {
        padding-left: 0;
        border-left: 0;
    }
}

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

    .site-header__inner {
        min-height: 68px;
    }

    .brand img {
        width: 137px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
        color: var(--white);
    }

    .mobile-menu summary {
        min-width: 86px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        cursor: pointer;
        list-style: none;
        color: var(--white);
        font-size: 0.82rem;
        font-weight: 750;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu__icon,
    .mobile-menu__icon::before,
    .mobile-menu__icon::after {
        width: 19px;
        height: 2px;
        display: block;
        background: var(--white);
    }

    .mobile-menu__icon {
        position: relative;
    }

    .mobile-menu__icon::before,
    .mobile-menu__icon::after {
        position: absolute;
        left: 0;
        content: "";
    }

    .mobile-menu__icon::before {
        top: -6px;
    }

    .mobile-menu__icon::after {
        top: 6px;
    }

    .mobile-menu[open] .mobile-menu__icon {
        background: transparent;
    }

    .mobile-menu[open] .mobile-menu__icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-menu[open] .mobile-menu__icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .mobile-menu nav {
        position: absolute;
        z-index: 20;
        top: calc(100% + 12px);
        right: 0;
        width: min(290px, calc(100vw - 32px));
        padding: 8px;
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: 0 15px 38px rgb(2 14 25 / 28%);
    }

    .mobile-menu nav a {
        display: block;
        min-height: 44px;
        padding: 11px 13px;
        color: var(--graphite);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-menu nav a[aria-current="page"] {
        background: #edf0f8;
        color: var(--azurite);
    }

    .mobile-menu nav a:focus-visible {
        outline-color: var(--azurite);
        outline-offset: -3px;
    }

    .field input,
    .field textarea {
        font-size: 1rem;
    }

    .text-link,
    .direct-contact a,
    .site-footer__contact a,
    .site-footer__nav a {
        min-height: 44px;
    }

    .home-hero__art img {
        object-position: 54% center;
    }

    .home-hero::before {
        background: linear-gradient(180deg, rgb(4 17 29 / 38%) 0%, rgb(4 17 29 / 30%) 48%, rgb(4 17 29 / 52%) 100%);
    }

    .home-hero__grid {
        gap: 19px;
        padding-block: 31px 35px;
    }

    .home-hero__intro h1 {
        max-width: 15em;
        margin-bottom: 14px;
        font-size: clamp(2.05rem, 9.2vw, 2.55rem);
        line-height: 1.04;
    }

    .home-hero__summary {
        font-size: 0.96rem;
    }

    .home-contact-prompt {
        max-width: none;
        padding: 22px 22px 20px;
    }

    .home-contact-prompt h2 {
        font-size: 1.65rem;
    }

    .home-contact-prompt__contact a {
        min-height: 44px;
    }

    .home-hero__credentials {
        grid-template-columns: 1fr;
        gap: 7px;
        padding-top: 12px;
    }

    .home-hero__credentials p + p {
        padding-left: 0;
        border-left: 0;
    }

    .method__intro {
        min-height: 210px;
    }

    .method__intro::after {
        background: linear-gradient(90deg, var(--paper) 0%, rgb(245 244 239 / 98%) 38%, rgb(245 244 239 / 88%) 58%, rgb(245 244 239 / 28%) 100%);
    }

    .method__art {
        width: 80%;
        opacity: 0.46;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 15%) 24%, #000 62%);
        mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 15%) 24%, #000 62%);
    }

    .method__art img {
        object-position: 62% center;
    }

    .method__intro-copy {
        padding-block: 34px 36px;
    }

    .method__intro-copy h2 {
        max-width: 11ch;
        font-size: 2.15rem;
    }

    .method__intro-copy > p:last-child {
        max-width: 330px;
    }

    .method__content {
        gap: 32px;
        padding-block: 32px 37px;
    }

    .method-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding-block: 18px;
    }

    .method-item h3 {
        font-size: 1.1rem;
    }

    .method__visual {
        display: block;
    }

    .method__support {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 14px;
        margin-top: 15px;
    }

    .method__visual .text-link {
        margin-top: 13px;
    }

    .project-contact__grid {
        gap: 28px;
        padding-block: 41px 44px;
    }

    .project-contact__intro h2 {
        font-size: 2.1rem;
    }

    .project-contact .inquiry-panel {
        max-width: none;
    }

    .ogi-evidence__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 39px 42px;
    }

    .ogi-evidence__copy {
        order: -1;
    }

    .ogi-evidence__copy h2 {
        max-width: 15ch;
        font-size: 2.05rem;
    }

    .ogi-evidence__media {
        max-width: none;
    }

    .industries-preview {
        padding-block: 41px 40px;
    }

    .industries-preview__heading {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .industries-preview__heading h2 {
        font-size: 2.05rem;
    }

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

    .industry-item {
        padding: 21px 0 22px;
    }

    .industry-item + .industry-item,
    .industry-item:nth-child(3),
    .industry-item:nth-child(n + 3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .industry-item > span {
        margin-bottom: 11px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 23px;
        padding-block: 28px 20px;
    }

    .site-footer__credential,
    .site-footer__base {
        grid-column: 1;
    }

    .site-footer__credential {
        justify-self: start;
    }

    .site-footer__base {
        display: grid;
        gap: 13px;
    }

    .site-footer__nav {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .inquiry-panel {
        padding: 15px 14px 13px;
    }

    .home-contact-prompt {
        padding-inline: 19px;
    }

    .direct-contact {
        grid-template-columns: 0.72fr 1.28fr;
    }

    .direct-contact > div + div {
        padding-left: 10px;
    }

    .method-item {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .method__support {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .project-contact__facts > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 350px) {
    .home-hero__intro h1 {
        font-size: 1.82rem;
    }

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

    .direct-contact > div + div {
        padding-left: 0;
        border-left: 0;
    }
}

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

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

@media print {
    .site-header,
    .site-footer,
    .inquiry-panel,
    video {
        display: none !important;
    }

    body {
        background: var(--white);
        color: #000;
    }
}
