:root {
    color-scheme: dark;
    --bg: #0d0e10;
    --bg-soft: #141719;
    --surface: #1b1f22;
    --surface-2: #22282c;
    --ink: #f3f1ec;
    --muted: #b8b3aa;
    --line: #343a3f;
    --line-soft: rgba(255, 255, 255, .08);
    --accent: #f08a24;
    --accent-2: #5fb7a6;
    --steel: #8fa0a7;
    --danger: #ff7a6f;
    --success: #78d29b;
    --shadow: 0 18px 50px rgba(0, 0, 0, .28);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 76px 76px,
        linear-gradient(180deg, rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0 / 76px 76px,
        var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

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

svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    flex: 0 0 auto;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20;
    transform: translateY(-140%);
    background: var(--ink);
    color: var(--bg);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 800;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background:
        linear-gradient(180deg, rgba(17, 19, 21, .98), rgba(8, 9, 10, .94)),
        var(--bg);
    border-bottom: 1px solid rgba(240, 138, 36, .26);
    backdrop-filter: blur(16px);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 138, 36, .8), rgba(95, 183, 166, .6), transparent);
    pointer-events: none;
}

.header-rail {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-inline: 1px solid rgba(255, 255, 255, .06);
    color: var(--steel);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.header-rail__base {
    color: var(--accent-2);
}

.header-rail__tagline {
    border-left: 1px solid rgba(240, 138, 36, .38);
    padding-left: 14px;
    color: var(--ink);
}

.header-rail a:first-of-type {
    margin-left: auto;
}

.header-rail a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    text-decoration: none;
}

.header-rail a:hover,
.header-rail a:focus-visible {
    color: var(--ink);
}

.site-header__inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-inline: 1px solid rgba(255, 255, 255, .06);
    position: relative;
}

.brand-lockup {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 430px;
    padding-left: 12px;
}

.brand img,
.footer-logo {
    width: 100%;
    height: auto;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .28);
}

.site-nav a {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.site-nav a::before {
    content: attr(data-index);
    color: var(--accent);
    font-size: .64rem;
    font-weight: 900;
}

.site-nav a::after {
    content: "";
    position: absolute;
    inset: auto 10px 6px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent-2);
    transition: transform .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, .065);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav .site-nav__cta {
    margin-left: 6px;
    border-right: 0;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    color: #16100a;
    background: var(--accent);
    padding-inline: 20px;
}

.site-nav .site-nav__cta::before {
    color: rgba(22, 16, 10, .62);
}

.site-nav .site-nav__cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
}

.hero,
.project-hero {
    position: relative;
    isolation: isolate;
    min-height: 72svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero::before,
.project-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 58%, rgba(240, 138, 36, .18) 58.2%, transparent 58.6%),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 96px 96px;
    opacity: .7;
    pointer-events: none;
}

.hero__image,
.project-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after,
.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(13, 14, 16, .96), rgba(13, 14, 16, .72) 52%, rgba(13, 14, 16, .36)),
        linear-gradient(0deg, rgba(13, 14, 16, .96), rgba(13, 14, 16, .28));
}

.hero__content,
.project-hero__content {
    padding-block: 82px;
    max-width: 820px;
}

.hero h1,
.page-hero h1,
.project-hero h1 {
    margin: 0;
    max-width: 940px;
    font-size: 3.75rem;
    line-height: 1.04;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.project-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
}

.button--primary {
    background: var(--accent);
    color: #17100b;
    box-shadow: 0 10px 28px rgba(240, 138, 36, .2);
}

.button--secondary {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    color: var(--ink);
}

.button--text {
    padding-inline: 0;
    background: transparent;
    color: var(--accent);
}

.button:disabled {
    cursor: wait;
    opacity: .72;
}

.section {
    padding-block: 86px;
}

.section--compact {
    padding-block: 28px;
}

.section--surface {
    background:
        linear-gradient(135deg, rgba(240, 138, 36, .075) 0 1px, transparent 1px 42px) 0 0 / 42px 42px,
        var(--bg-soft);
    border-block: 1px solid rgba(255, 255, 255, .07);
}

.section--image {
    background: #050607;
}

.section--cta {
    padding-block: 54px;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

h2,
h3 {
    margin: 0;
    line-height: 1.16;
}

h2 {
    font-size: 2.15rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0;
}

.prose > * + * {
    margin-top: 16px;
}

.prose p,
.service-card p,
.service-row p,
.values-grid p,
.timeline-grid p,
.team-card p,
.project-card span,
.fact-list dd,
.quote-aside li,
.legal-layout aside {
    color: var(--muted);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--line));
}

.metrics div {
    position: relative;
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 20px;
    background: var(--surface);
    overflow: hidden;
}

.metrics div::after {
    content: "";
    position: absolute;
    inset: auto 18px 16px auto;
    width: 42px;
    height: 2px;
    background: var(--accent);
}

.metrics strong {
    color: var(--accent-2);
    font-size: 2rem;
    line-height: 1;
}

.metrics span {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 58px;
}

.split--center {
    align-items: center;
}

.team-feature {
    width: 100%;
    aspect-ratio: 1200 / 544;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-motion {
    position: relative;
    isolation: isolate;
    display: block;
    overflow: hidden;
    padding-top: 74px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) center / 96px 96px,
        #020303;
    border-block: 1px solid rgba(255, 255, 255, .1);
}

.team-motion__media {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1320px);
    margin-inline: auto;
    overflow: hidden;
    background: #020303;
}

.team-motion__media img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    filter: contrast(1.04) brightness(1.08);
    animation: team-drift 16s ease-in-out infinite alternate;
}

.team-motion::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(118deg, transparent 0 61%, rgba(95, 183, 166, .16) 61.1%, transparent 61.4%),
        linear-gradient(118deg, transparent 0 69%, rgba(240, 138, 36, .18) 69.1%, transparent 69.35%);
    pointer-events: none;
}

.team-motion::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, #020303 42%);
    pointer-events: none;
}

.team-motion__inner {
    position: relative;
    z-index: 2;
    padding-block: 28px 82px;
}

.team-motion__copy {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
    gap: 34px;
    align-items: end;
    border-top: 4px solid var(--accent);
    padding-top: 24px;
    text-shadow: none;
}

.team-motion__copy > .eyebrow,
.team-motion__copy > h2,
.team-motion__copy > p,
.team-motion__copy > .actions {
    grid-column: 1;
}

.team-motion__copy h2 {
    max-width: 780px;
    font-size: 2.85rem;
}

.team-motion__copy p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(243, 241, 236, .82);
    font-size: 1.15rem;
}

.team-motion__stats {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    justify-content: flex-end;
}

.team-motion__stats span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(2, 3, 3, .42);
    padding: 8px 12px;
    color: var(--muted);
    font-weight: 800;
}

.team-motion__stats strong {
    color: var(--accent-2);
}

@keyframes team-drift {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -5px, 0);
    }
}

.service-grid,
.values-grid,
.project-grid,
.team-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: service;
}

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

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

.team-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.values-grid article,
.timeline-grid article,
.project-card,
.team-card,
.form-card,
.contact-panel,
.quote-aside {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    background: var(--surface);
}

.service-card,
.values-grid article,
.timeline-grid article {
    position: relative;
    min-height: 220px;
    padding: 22px;
    overflow: hidden;
}

.service-card {
    counter-increment: service;
}

.service-card::after {
    content: counter(service, decimal-leading-zero);
    position: absolute;
    right: 16px;
    bottom: -18px;
    color: rgba(255, 255, 255, .055);
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1;
}

.service-card__mark,
.timeline-grid span {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(95, 183, 166, .12);
    color: var(--accent-2);
}

.service-card h3,
.values-grid h3,
.timeline-grid h3 {
    margin-bottom: 12px;
}

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

.service-row {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

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

.project-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
    background: #101315;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(240, 138, 36, .5);
}

.project-card a {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 100%;
    padding-bottom: 18px;
    text-decoration: none;
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--surface-2);
    transition: transform .35s ease, filter .35s ease;
}

.project-card:hover img,
.project-card:focus-within img {
    transform: scale(1.04);
    filter: contrast(1.08);
}

.project-card span,
.project-card h3 {
    padding-inline: 18px;
}

.project-card h3 {
    min-height: 3em;
}

.project-tools {
    display: grid;
    gap: 8px;
    max-width: 520px;
    margin-bottom: 24px;
}

.project-tools label {
    color: var(--muted);
    font-weight: 800;
}

.empty-state {
    margin-top: 28px;
    color: var(--muted);
}

.team-card {
    overflow: hidden;
}

.team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--surface-2);
}

.team-card div {
    padding: 16px;
}

.team-card h2 {
    font-size: 1.1rem;
}

.team-card span {
    display: block;
    margin-top: 6px;
    color: var(--accent-2);
    font-weight: 800;
}

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 70px 58px;
    background:
        linear-gradient(180deg, rgba(27, 31, 34, .98), rgba(13, 14, 16, 1)),
        var(--bg-soft);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.page-hero--legal {
    padding-bottom: 46px;
}

.breadcrumbs {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: .95rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 7px;
    color: #777;
}

.project-hero {
    min-height: 62svh;
}

.fact-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.fact-list div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.fact-list dt {
    color: var(--ink);
    font-weight: 900;
}

.contact-layout,
.quote-layout,
.legal-layout {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-panel,
.quote-aside,
.form-card {
    padding: 24px;
}

.contact-panel {
    display: grid;
    gap: 16px;
}

.contact-panel a,
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}

.note,
.field-help {
    color: var(--muted);
    font-size: .92rem;
}

.quote-aside ul {
    margin: 18px 0;
    padding-left: 20px;
}

.form-card {
    display: grid;
    gap: 18px;
    background: #171a1d;
}

.form-card h2,
.contact-panel h2,
.quote-aside h2 {
    font-size: 1.45rem;
}

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

.form-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

label,
fieldset {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

fieldset {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

legend {
    padding-inline: 6px;
    color: var(--ink);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0f1113;
    color: var(--ink);
    padding: 11px 12px;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 140px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(240, 138, 36, .55);
    outline-offset: 3px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: var(--danger);
}

.checkbox-panel {
    background: rgba(255, 255, 255, .025);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 14px;
}

.check-line {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    font-weight: 700;
}

.check-line input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--accent);
}

.field-error {
    color: var(--danger);
    font-size: .92rem;
    font-weight: 800;
}

.form-alert {
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 800;
}

.form-alert--success {
    background: rgba(120, 210, 155, .13);
    color: var(--success);
}

.form-alert--error {
    background: rgba(255, 122, 111, .12);
    color: var(--danger);
}

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

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: var(--surface);
    padding: 18px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.legal-layout aside {
    position: sticky;
    top: 104px;
    border-left: 4px solid var(--accent);
    padding-left: 18px;
}

.legal-copy h2:not(:first-child) {
    margin-top: 34px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: var(--surface);
}

.site-footer {
    background: #090a0b;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding-block: 48px;
}

.footer-logo {
    max-width: 260px;
    margin-bottom: 16px;
}

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

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

.footer-bottom {
    display: grid;
    gap: 8px;
    padding-block: 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .92rem;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

@media (max-width: 1100px) {
    .brand {
        width: 350px;
    }

    .site-nav a {
        padding-inline: 9px;
        font-size: .82rem;
    }

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

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

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

@media (max-width: 860px) {
    .header-rail {
        min-height: 30px;
        justify-content: center;
        border-inline: 0;
        font-size: .72rem;
    }

    .header-rail__tagline,
    .header-rail a[href^="mailto"] {
        display: none;
    }

    .site-header__inner {
        min-height: 72px;
        border-inline: 0;
    }

    .brand {
        width: 252px;
        padding-left: 0;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        inset: 102px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .1);
        background: #111315;
        box-shadow: var(--shadow);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        justify-content: space-between;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: .95rem;
    }

    .site-nav .site-nav__cta {
        margin: 10px 0 0;
        clip-path: none;
    }

    .hero,
    .project-hero {
        min-height: 68svh;
    }

    .hero h1,
    .page-hero h1,
    .project-hero h1 {
        font-size: 2.35rem;
    }

    .hero p:not(.eyebrow),
    .page-hero p:not(.eyebrow),
    .project-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .section {
        padding-block: 58px;
    }

    .metrics,
    .split,
    .contact-layout,
    .quote-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

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

    .service-row,
    .timeline-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-layout aside {
        position: static;
    }

    .team-motion {
        padding-top: 54px;
    }

    .team-motion::before {
        opacity: .7;
    }

    .team-motion__media img {
        object-position: center;
    }

    .team-motion__inner {
        padding-block: 26px 62px;
    }

    .team-motion__copy {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .team-motion__copy h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .hero__content,
    .project-hero__content {
        padding-block: 58px;
    }

    .section-heading--row,
    .cta-band {
        align-items: start;
        flex-direction: column;
    }

    h2 {
        font-size: 1.7rem;
    }

    .service-grid,
    .values-grid,
    .project-grid,
    .team-grid,
    .form-grid,
    .form-grid--three,
    .checkbox-grid,
    .fact-list div {
        grid-template-columns: 1fr;
    }

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

    .project-card h3 {
        min-height: auto;
    }

    .contact-panel,
    .quote-aside,
    .form-card {
        padding: 18px;
    }

    .button {
        width: 100%;
    }

    .team-motion {
        padding-top: 36px;
    }

    .team-motion__copy h2 {
        font-size: 1.85rem;
    }

    .team-motion__stats {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .team-motion__media img {
        animation: none;
        transform: none;
    }
}
