:root {
    --bone: #eee9df;
    --chalk: #faf7f0;
    --ink: #25251f;
    --muted: #6d6b61;
    --line: rgba(37,37,31,.22);
    --olive: #4e5b45;
    --olive-dark: #344033;
    --oxide: #ad3e2b;
    --oxide-dark: #7f291d;
    --white: #fff;
    --shadow: 0 25px 65px rgba(31,27,20,.16);
    --shell: min(1240px,calc(100% - 72px));
    color-scheme: light
}

html[data-theme="dark"] {
    --bone: #171914;
    --chalk: #20221c;
    --ink: #f0eadf;
    --muted: #aaa79c;
    --line: rgba(255,255,255,.2);
    --white: #171914;
    --shadow: 0 25px 65px rgba(0,0,0,.38);
    color-scheme: dark
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--chalk);
    color: var(--ink);
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

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

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

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

.shell {
    width: var(--shell);
    margin-inline:auto}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 9999;
    background: var(--ink);
    color: var(--chalk);
    padding: 10px 16px
}

.skip-link:focus {
    top: 12px
}

.label,.section-no {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase
}

.section-no {
    display: block;
    color: var(--oxide);
    margin-bottom: 24px
}

.section {
    padding: 120px 0
}

.section h2,.protocol h2,.closing h2,.page-hero h1 {
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(3.2rem,6.5vw,7rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .92;
    margin: 0
}

.section h2 em,.section h2 span,.closing h2 i,.page-hero h1 i {
    font-weight: 400;
    font-style: italic;
    color: var(--oxide)
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid currentColor;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .22s
}

.button:hover,.button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 7px 0 rgba(0,0,0,.15)
}

.button.blue {
    background: var(--oxide);
    border-color: var(--oxide);
    color: #fff
}

.button.paper {
    background: var(--chalk);
    color: var(--ink)
}

.button.ink {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--chalk)
}

.text-link {
    display: inline-flex;
    color: var(--oxide);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px
}

.round-link {
    width: 90px;
    height: 90px;
    border-radius: 0 50% 50% 50%;
    background: var(--oxide);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1.25;
    transform: rotate(-6deg);
    transition: .25s
}

.round-link:hover {
    transform: rotate(0) scale(1.05)
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    background: color-mix(in srgb,var(--chalk) 93%,transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px)
}

.nav-row {
    height: 96px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 235px
}

.brand-mark {
    width: 46px;
    height: 52px;
    background: var(--olive);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: Georgia,serif;
    font-size: 1.7rem;
    border-radius: 50% 50% 3px 3px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35)
}

.brand>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand b {
    font-family: Georgia,serif;
    font-size: 1.02rem;
    letter-spacing: .08em
}

.brand small {
    font-size: .48rem;
    letter-spacing: .2em;
    margin-top: 7px;
    color: var(--muted)
}

.primary-nav {
    margin-left: auto
}

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 23px
}

.primary-nav li {
    position: relative
}

.primary-nav a {
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.primary-nav a:hover {
    color: var(--oxide)
}

.has-submenu {
    display: flex;
    align-items: center
}

.submenu-toggle {
    display: none;
    border: 0;
    background: transparent
}

.primary-nav .submenu {
    position: absolute;
    left: -18px;
    top: 32px;
    min-width: 220px;
    padding: 13px;
    background: var(--chalk);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none
}

.primary-nav li:hover>.submenu,.primary-nav li:focus-within>.submenu {
    display: grid;
    gap: 3px
}

.primary-nav .submenu a {
    display: block;
    padding: 9px
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 8px
}

.theme-toggle {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer
}

.nav-contact {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--oxide);
    color: #fff;
    padding: 0 17px;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink)
}

.hero {
    min-height: 850px;
    height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: #171713;
    overflow: hidden;
    isolation: isolate
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(14,15,12,.9) 0%,rgba(14,15,12,.58) 35%,rgba(14,15,12,.05) 72%),var(--hero-image) center/cover no-repeat;
    z-index: -2
}

.hero:after {
    content: "";
    position: absolute;
    right: 5vw;
    bottom: 0;
    width: 190px;
    height: 250px;
    background: var(--oxide);
    clip-path: polygon(0 18%,50% 0,100% 18%,100% 100%,0 100%);
    z-index: -1;
    opacity: .86
}

.hero-grid {
    position: absolute;
    inset: 96px auto 0 7vw;
    width: 1px;
    background: rgba(255,255,255,.3)
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0,860px) 210px;
    justify-content: space-between;
    align-items: end;
    gap: 70px;
    padding: 175px 0 70px;
    color: #f5f0e7
}

.hero-copy {
    max-width: 850px
}

.hero-index {
    font-size: .58rem;
    letter-spacing: .22em;
    color: #d1c9bc;
    margin-bottom: 78px
}

.hero .label {
    color: #e8927e
}

.hero h1 {
    font-family: Georgia,"Times New Roman",serif;
    max-width: 800px;
    font-size: clamp(4.2rem,8.7vw,9rem);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .82;
    margin: 18px 0 34px
}

.hero-copy>p {
    max-width: 610px;
    font-size: 1.04rem;
    color: #ddd5ca;
    margin: 0 0 30px
}

.hero .button.paper {
    background: transparent;
    color: #fff
}

.hero-proof {
    background: var(--bone);
    color: #23231e;
    padding: 28px 24px;
    border-top: 8px solid var(--oxide);
    box-shadow: 12px 12px 0 var(--olive)
}

.hero-proof>b {
    display: block;
    font-family: Georgia,serif;
    font-size: 3.8rem;
    line-height: 1;
    letter-spacing: -.07em
}

.hero-proof>span {
    display: block;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
    margin: 9px 0 25px
}

.hero-proof div {
    border-top: 1px solid rgba(35,35,30,.35);
    padding: 14px 0
}

.hero-proof strong {
    display: block;
    font-family: Georgia,serif;
    font-size: 1.5rem
}

.hero-proof small {
    font-size: .53rem;
    font-weight: 800;
    letter-spacing: .1em
}

.ticker {
    background: var(--olive);
    color: #fff;
    overflow: hidden;
    border-block:1px solid #25251f}

.ticker>div {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding-inline:30px;animation: ticker 25s linear infinite
}

.ticker span {
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .16em
}

.ticker b {
    color: #f0a08c
}

@keyframes ticker {
    to {
        transform: translateX(-25%)
    }
}

.thesis {
    background: var(--bone)
}

.thesis-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 110px
}

.thesis-copy {
    padding-top: 72px
}

.thesis-copy>p {
    font-family: Georgia,serif;
    font-size: clamp(1.45rem,2.5vw,2.35rem);
    line-height: 1.35;
    margin: 0 0 32px
}

.principles {
    margin-top: 60px;
    border-top: 1px solid var(--line)
}

.principles div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.principles b {
    color: var(--oxide)
}

.principles span {
    font-weight: 700
}

.expertise {
    background: var(--chalk)
}

.section-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px
}

.section-title>.section-no {
    grid-column: 1/-1
}

.section-title h2 {
    max-width: 970px
}

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

.expertise-list>a {
    display: grid;
    grid-template-columns: 65px 1fr 1.05fr 35px;
    gap: 30px;
    align-items: center;
    padding: 29px 8px;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.expertise-list>a:hover {
    background: var(--oxide);
    color: #fff;
    padding-inline:22px}

.expertise-list>a>span {
    color: var(--oxide);
    font-size: .63rem;
    font-weight: 900
}

.expertise-list>a:hover>span {
    color: #fff
}

.expertise-list h3 {
    font-family: Georgia,serif;
    font-size: 1.65rem;
    font-weight: 400;
    margin: 0
}

.expertise-list p {
    color: var(--muted);
    margin: 0
}

.expertise-list>a:hover p {
    color: #f5d7cf
}

.expertise-list b {
    font-size: 1.2rem
}

.protocol {
    padding: 130px 0;
    background: var(--oxide);
    color: #fff
}

.protocol-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center
}

.protocol-art {
    min-height: 620px;
    position: relative;
    background: var(--bone);
    color: #25251f;
    display: grid;
    place-items: center;
    border: 1px solid rgba(37,37,31,.7);
    overflow: hidden
}

.protocol-art:before,.protocol-art:after {
    content: "";
    position: absolute;
    border: 2px solid var(--olive);
    width: 380px;
    height: 480px;
    border-radius: 50% 50% 0 0
}

.protocol-art:after {
    width: 235px;
    height: 330px;
    border-color: var(--oxide)
}

.protocol-art>span {
    font-family: Georgia,serif;
    font-size: 11rem;
    line-height: 1;
    z-index: 1
}

.protocol-art div {
    position: absolute;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .18em;
    z-index: 2
}

.protocol-art div:nth-of-type(1) {
    top: 25px;
    left: 25px
}

.protocol-art div:nth-of-type(2) {
    right: 25px;
    top: 50%
}

.protocol-art div:nth-of-type(3) {
    bottom: 25px;
    left: 25px
}

.protocol .section-no {
    color: #ffd2c7
}

.protocol ol {
    list-style: none;
    margin: 55px 0 0;
    padding: 0
}

.protocol li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 23px 0;
    border-top: 1px solid rgba(255,255,255,.35)
}

.protocol li>b {
    color: #f6b6a6;
    font-size: .67rem
}

.protocol li h3 {
    font-family: Georgia,serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0
}

.protocol li p {
    color: #f4d9d3;
    margin: 5px 0 0
}

.sectors {
    background: var(--olive);
    color: #fff
}

.sectors .section-no {
    color: #cbd4c5
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-left: 1px solid rgba(255,255,255,.25);
    border-top: 1px solid rgba(255,255,255,.25)
}

.sector-grid>a {
    min-height: 345px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
    display: flex;
    flex-direction: column;
    transition: .2s
}

.sector-grid>a:hover {
    background: var(--bone);
    color: #25251f
}

.sector-grid span {
    font-size: .62rem;
    color: #f1a28e;
    font-weight: 900
}

.sector-grid h3 {
    font-family: Georgia,serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.05;
    margin: 55px 0 18px
}

.sector-grid p {
    color: #d7ded2;
    margin: 0
}

.sector-grid>a:hover p {
    color: #66665f
}

.sector-grid i {
    margin-top: auto;
    font-size: .6rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .12em
}

.team {
    background: var(--bone)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.team-card {
    position: relative;
    border: 1px solid var(--line);
    padding: 24px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    background: var(--chalk);
    overflow: hidden
}

.team-card:nth-child(2n) {
    background: var(--oxide);
    color: #fff
}

.team-photo {
    position: absolute;
    inset: 0
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) sepia(.25)
}

.team-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 25%,rgba(19,20,16,.88))
}

.team-letter {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Georgia,serif;
    font-size: 13rem;
    color: color-mix(in srgb,var(--olive) 35%,transparent)
}

.team-photo+.team-letter {
    display: none
}

.team-card>span,.team-card h3,.team-card p {
    position: relative;
    z-index: 1
}

.team-card>span {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em
}

.team-card h3 {
    font-family: Georgia,serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: auto 0 6px
}

.team-card p {
    margin: 0;
    color: var(--muted)
}

.team-photo~p,.team-photo~h3 {
    color: #fff
}

.insights {
    background: var(--chalk)
}

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

.article-grid article {
    min-height: 375px;
    border: 1px solid var(--line);
    border-top: 8px solid var(--olive);
    background: var(--bone);
    padding: 28px;
    display: flex;
    flex-direction: column
}

.article-grid article:nth-child(2) {
    border-top-color: var(--oxide)
}

.article-grid small {
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--muted)
}

.article-grid h3 {
    font-family: Georgia,serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.08;
    margin: 42px 0 20px
}

.article-grid p {
    color: var(--muted)
}

.article-grid .text-link {
    margin-top: auto;
    align-self: flex-start
}

.showcase {
    padding: 110px 0;
    background: #24251f;
    color: #f2ede4
}

.showcase .section-no {
    color: #b8b7ad
}

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

.showcase-grid>a {
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--olive)
}

.showcase-media {
    position: absolute;
    inset: 0
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(.2) saturate(.65);
    transition: .4s
}

.showcase-grid>a:hover img {
    transform: scale(1.04)
}

.showcase-grid>a>div:last-child {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent,rgba(0,0,0,.82))
}

.showcase-grid small {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .12em
}

.showcase-grid h3 {
    font-family: Georgia,serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 10px 0
}

.showcase-grid span {
    font-size: .63rem;
    font-weight: 900
}

.page-hero {
    padding: 220px 0 115px;
    border-bottom: 1px solid var(--line);
    background: var(--bone);
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "L";
    position: absolute;
    right: 2vw;
    top: 70px;
    font-family: Georgia,serif;
    font-size: 24rem;
    line-height: 1;
    color: color-mix(in srgb,var(--oxide) 13%,transparent)
}

.page-hero .shell {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    max-width: 1080px
}

.page-hero p {
    max-width: 720px;
    font-size: 1.08rem;
    color: var(--muted)
}

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

.listing-card {
    position: relative;
    border: 1px solid var(--line);
    background: var(--bone)
}

.listing-card>span {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--oxide);
    color: #fff;
    padding: 7px 9px;
    font-size: .58rem;
    font-weight: 900
}

.listing-card .card-media {
    height: 230px
}

.listing-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.listing-card>div:last-child {
    padding: 27px
}

.listing-card small {
    color: var(--oxide);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.listing-card h2 {
    font-family: Georgia,serif;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.08;
    margin: 16px 0
}

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

.empty-state {
    grid-column: 1/-1;
    border: 1px solid var(--line);
    padding: 35px
}

.content-hero {
    padding: 200px 0 68px;
    background: var(--bone)
}

.content-type {
    color: var(--oxide);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.content-hero h1 {
    max-width: 1000px;
    font-family: Georgia,serif;
    font-size: clamp(3.3rem,7vw,7.2rem);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.06em;
    margin: 24px 0
}

.content-hero>div>p {
    max-width: 760px;
    font-size: 1.18rem;
    color: var(--muted)
}

.content-meta {
    display: flex;
    gap: 20px;
    font-size: .68rem;
    color: var(--muted);
    margin-top: 25px
}

.content-cover {
    margin: 50px 0 0;
    aspect-ratio: 16/8;
    overflow: hidden
}

.content-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0,760px) 340px;
    gap: 90px;
    padding-block:70px 120px}

.prose {
    font-size: 1.05rem
}

.prose h2 {
    font-family: Georgia,serif;
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1;
    margin: 55px 0 20px
}

.prose h3 {
    font-family: Georgia,serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 38px 0 15px
}

.prose p,.prose li {
    color: var(--muted)
}

.prose a {
    color: var(--oxide);
    text-decoration: underline
}

.prose blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    border-left: 8px solid var(--oxide);
    background: var(--bone);
    font-family: Georgia,serif;
    font-size: 1.45rem
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto
}

.prose td,.prose th {
    border: 1px solid var(--line);
    padding: 12px
}

.prose img {
    max-width: 100%;
    height: auto
}

.custom-fields {
    margin-top: 45px
}

.custom-fields div {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 14px 0;
    border-top: 1px solid var(--line)
}

.custom-fields dt {
    font-weight: 800
}

.custom-fields dd {
    margin: 0;
    color: var(--muted)
}

.contact-card {
    position: sticky;
    top: 125px;
    align-self: start;
    background: var(--olive);
    color: #fff;
    padding: 30px;
    border-top: 8px solid var(--oxide);
    box-shadow: 10px 10px 0 var(--bone)
}

.contact-card>span {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em
}

.contact-card h2 {
    font-family: Georgia,serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.05
}

.contact-card .button {
    width: 100%;
    margin-top: 10px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 40px
}

.gallery-grid a {
    aspect-ratio: 4/3;
    overflow: hidden
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.gallery-grid a:hover img {
    transform: scale(1.04)
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 85px
}

.contact-details>span {
    font-family: Georgia,serif;
    font-size: 6rem;
    color: var(--oxide)
}

.contact-details h2 {
    font-family: Georgia,serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.04
}

.contact-details p {
    color: var(--muted)
}

.contact-details a {
    color: var(--oxide);
    font-weight: 800
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    background: var(--bone);
    border: 1px solid var(--line);
    padding: 34px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.field.full,.consent,.contact-form>.button,.form-status,.fallback-link {
    grid-column: 1/-1
}

.field label {
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase
}

.field input,.field textarea,.field select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--chalk);
    color: var(--ink);
    padding: 14px;
    outline: none
}

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

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .8rem
}

.consent input {
    margin-top: 4px
}

.hp-field {
    position: absolute;
    left: -9999px
}

.form-status {
    margin: 0;
    color: var(--muted)
}

.fallback-link {
    color: var(--oxide);
    text-decoration: underline
}

.closing {
    padding: 110px 0;
    background: var(--bone);
    border-top: 1px solid var(--line)
}

.closing-grid {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 90px;
    align-items: end
}

.closing h2 {
    margin-top: 20px
}

.closing p {
    font-size: 1.08rem
}

.site-footer {
    padding: 75px 0 25px;
    background: #22231e;
    color: #f2eee5
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .8fr;
    gap: 80px
}

.footer-brand {
    margin-bottom: 22px
}

.footer-grid p,.footer-grid small {
    color: #a7a79e
}

.footer-grid h3 {
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #d88773
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px
}

.footer-grid .submenu-toggle,.footer-grid .submenu {
    display: none
}

.footer-grid a {
    color: #c9c7bf
}

.footer-grid>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.social-links a {
    border: 1px solid rgba(255,255,255,.15);
    padding: 6px 9px;
    font-size: .56rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    color: #7f817a;
    font-size: .64rem
}

.mobile-contact {
    display: none
}

@media(max-width: 1100px) {
    .primary-nav {
        position:fixed;
        inset: 96px 0 0;
        background: var(--chalk);
        padding: 35px;
        transform: translateX(100%);
        transition: .25s
    }

    .primary-nav.is-open {
        transform: none
    }

    .primary-nav ul {
        display: grid;
        align-items: stretch;
        gap: 0
    }

    .primary-nav li {
        border-bottom: 1px solid var(--line);
        padding: 28px 15px 11px 14px;
        background: #faf7f0;
    }

    .primary-nav a {
        font-size: 1rem
    }

    .primary-nav .submenu {
        position: static;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 10px 20px
    }

    .primary-nav .submenu.is-open {
        display: grid
    }

    .has-submenu {
        display: grid;
        grid-template-columns: 1fr 44px
    }

    .has-submenu>.submenu {
        grid-column: 1/-1
    }

    .submenu-toggle {
        display: block
    }

    .menu-toggle {
        display: grid;
        gap: 4px;
        margin-left: auto
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--ink)
    }

    .menu-toggle b {
        font-size: .5rem;
        letter-spacing: .12em
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-proof {
        display: none
    }

    .thesis-grid,.protocol-grid {
        gap: 60px
    }

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

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

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

    .content-layout {
        grid-template-columns: 1fr
    }

    .contact-card {
        position: static
    }
}

@media(max-width: 760px) {
    :root {
        --shell:min(100% - 28px,1240px)
    }

    .section {
        padding: 82px 0
    }

    .section h2,.protocol h2,.closing h2,.page-hero h1 {
        font-size: clamp(3rem,14vw,5.1rem)
    }

    .nav-row {
        height: 78px
    }

    .brand {
        min-width: 0
    }

    .brand-mark {
        width: 39px;
        height: 45px
    }

    .brand b {
        font-size: .76rem
    }

    .brand small {
        font-size: .42rem
    }

    .nav-contact {
        display: none
    }

    .theme-toggle {
        width: 38px;
        height: 38px
    }

    .primary-nav {
        inset: 78px 0 0
    }

    .hero {
        min-height: 780px
    }

    .hero:before {
        background: linear-gradient(90deg,rgba(15,16,13,.88),rgba(15,16,13,.28)),var(--hero-mobile,var(--hero-image)) center/cover no-repeat
    }

    .hero:after {
        width: 100px;
        height: 145px
    }

    .hero-inner {
        padding: 130px 0 55px
    }

    .hero-index {
        margin-bottom: 46px
    }

    .hero h1 {
        font-size: clamp(4rem,19vw,7rem)
    }

    .hero-copy>p {
        font-size: .92rem
    }

    .ticker>div {
        animation: none
    }

    .thesis-grid,.protocol-grid,.contact-grid,.closing-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .thesis-copy {
        padding-top: 0
    }

    .section-title {
        display: block
    }

    .section-title .round-link {
        margin-top: 28px
    }

    .expertise-list>a {
        grid-template-columns: 40px 1fr 25px;
        gap: 15px
    }

    .expertise-list p {
        display: none
    }

    .protocol {
        padding: 82px 0
    }

    .protocol-art {
        min-height: 430px
    }

    .protocol-art:before {
        width: 270px;
        height: 350px
    }

    .protocol-art:after {
        width: 165px;
        height: 240px
    }

    .protocol-art>span {
        font-size: 7rem
    }

    .sector-grid,.team-grid,.article-grid,.showcase-grid,.listing-grid {
        grid-template-columns: 1fr
    }

    .sector-grid>a {
        min-height: 280px
    }

    .page-hero {
        padding: 155px 0 78px
    }

    .page-hero:after {
        font-size: 13rem
    }

    .content-hero {
        padding: 155px 0 48px
    }

    .content-cover {
        aspect-ratio: 4/3
    }

    .content-layout {
        gap: 45px
    }

    .custom-fields div {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 22px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .footer-bottom {
        display: grid;
        gap: 8px
    }

    .mobile-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 880;
        background: #22231e;
        color: #fff;
        border: 1px solid rgba(255,255,255,.2);
        box-shadow: var(--shadow)
    }

    .mobile-contact a {
        padding: 13px;
        text-align: center;
        font-size: .66rem;
        font-weight: 900;
        letter-spacing: .08em
    }

    .mobile-contact a:last-child {
        background: var(--oxide)
    }

    .site-footer {
        padding-bottom: 90px
    }
}

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