@import "tailwindcss";

:root {
    --forest: #003f35;
    --forest-deep: #002f29;
    --teal: #00675d;
    --gold: #dca626;
    --gold-light: #f0c85a;
    --ivory: #f7f2e7;
    --paper: #fffcf5;
    --sage: #89a79a;
    --ink: #0a2f2a;
    --muted: #65766e;
    --line: rgba(0, 63, 53, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-geist), Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -.035em;
}

.shell {
    width: min(1240px, calc(100% - 96px));
    margin-inline: auto;
}

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 252, 245, .95);
    border-bottom: 1px solid rgba(0, 63, 53, .12);
    backdrop-filter: blur(14px);
}

.headerInner {
    height: 90px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.mark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 355px;
}

.markSymbol {
    width: 53px;
    height: 48px;
    flex: 0 0 auto;
    overflow: visible;
}

.markGreen {
    fill: var(--forest);
}

.markGold {
    fill: var(--gold);
}

.markCut {
    fill: var(--paper);
}

.markType {
    display: grid;
    gap: 2px;
    padding-left: 12px;
    border-left: 1px solid var(--gold);
}

.mark strong {
    font-size: 29px;
    line-height: .95;
    letter-spacing: -.045em;
    font-weight: 720;
}

.mark small {
    max-width: 185px;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .115em;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktopNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 27px;
    flex: 1;
}

.desktopNav a {
    font-size: 14px;
    font-weight: 550;
    padding-block: 12px;
    position: relative;
}

.desktopNav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 7px;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease;
}

.desktopNav a:hover::after {
    right: 0;
}

.headerContact {
    padding: 13px 20px;
    background: var(--gold);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.headerContact:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
}

.mobileMenu {
    display: none;
}

.hero {
    min-height: calc(100svh - 90px);
    position: relative;
    background: var(--forest-deep) center/cover no-repeat url('../images/yadc-hero-development.png');
    color: white;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
}

.heroShade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 47, 41, .99) 0%, rgba(0, 47, 41, .94) 38%, rgba(0, 47, 41, .22) 73%, rgba(0, 47, 41, .08) 100%);
}

.heroPattern,
.pageHeroPattern {
    position: absolute;
    inset: 0;
    opacity: .26;
    pointer-events: none;
    background-image: linear-gradient(45deg, transparent 44%, rgba(220, 166, 38, .45) 45%, rgba(220, 166, 38, .45) 47%, transparent 48%), linear-gradient(-45deg, transparent 44%, rgba(220, 166, 38, .2) 45%, rgba(220, 166, 38, .2) 47%, transparent 48%);
    background-size: 64px 64px;
    mask-image: linear-gradient(to right, black, transparent 18%, transparent 82%, black);
}

.heroInner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-block: 84px 70px;
}

.heroCopy {
    max-width: 710px;
}

.eyebrow {
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
}

.eyebrow.gold {
    color: var(--gold-light);
}

.eyebrow::after {
    content: "";
    width: 44px;
    height: 2px;
    background: currentColor;
    display: block;
    margin-top: 16px;
}

.hero h1 {
    font-size: clamp(52px, 5.3vw, 82px);
    line-height: .98;
    max-width: 770px;
    margin-top: 34px;
    font-weight: 650;
}

.heroLead {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .86);
    margin-top: 30px;
}

.heroActions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.arrowLink {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    min-width: 220px;
    padding: 17px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 750;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.arrowLink b {
    font-size: 18px;
    font-weight: 450;
    transition: transform .2s ease;
}

.arrowLink:hover {
    transform: translateY(-2px);
}

.arrowLink:hover b {
    transform: translate(3px, -3px);
}

.arrowLink.gold {
    color: var(--forest-deep);
    background: var(--gold);
}

.arrowLink.gold:hover {
    background: var(--gold-light);
}

.arrowLink.outline {
    color: white;
    border-color: var(--gold);
    background: rgba(0, 47, 41, .3);
}

.arrowLink.outline:hover {
    background: var(--gold);
    color: var(--forest-deep);
}

.arrowLink.dark {
    color: white;
    background: var(--forest);
}

.arrowLink.text {
    min-width: 0;
    padding: 12px 0;
    color: var(--forest);
    border-bottom-color: var(--gold);
    border-radius: 0;
}

.reachBar {
    position: relative;
    z-index: 3;
    margin-bottom: 28px;
    border: 1px solid rgba(220, 166, 38, .9);
    background: rgba(0, 47, 41, .92);
    color: var(--gold-light);
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
}

.reachBar i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.section {
    padding: 120px 0;
}

.visionBand {
    background: var(--ivory);
}

.visionGrid,
.approachGrid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
    align-items: start;
}

.sectionIntro h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    margin-top: 26px;
    max-width: 720px;
    font-weight: 620;
}

.visionStatement {
    padding-top: 7px;
    display: grid;
    gap: 28px;
}

.visionStatement .leadSerif {
    font-family: Georgia, serif;
    font-size: 29px;
    line-height: 1.45;
    color: var(--teal);
}

.visionStatement>p:not(.leadSerif) {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}

.sectionTop {
    display: grid;
    grid-template-columns: 1.6fr .8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 62px;
}

.sectionTop>p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
    padding-bottom: 7px;
}

.sectorGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sectorCard {
    padding: 36px 28px 42px;
    min-height: 310px;
    border-right: 1px solid var(--line);
    transition: background .25s ease, transform .25s ease;
}

.sectorCard:last-child {
    border-right: 0;
}

.sectorCard:hover {
    background: var(--ivory);
    transform: translateY(-5px);
}

.cardIndex {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
}

.sectorCard h3 {
    font-size: 25px;
    line-height: 1.15;
    margin-top: 66px;
}

.sectorCard p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
}

.sectionAction {
    display: flex;
    justify-content: flex-end;
    margin-top: 38px;
}

.projectHome {
    background: var(--forest-deep);
    color: white;
}

.sectionTop.light .eyebrow {
    color: var(--gold-light);
}

.sectionTop.light>p {
    color: rgba(255, 255, 255, .66);
}

.projectImage {
    height: 350px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07) center/cover no-repeat url('../images/yadc-flagship-projects.png');
    border: 1px solid rgba(255, 255, 255, .14);
}

.projectRow {
    display: grid;
    grid-template-columns: 70px .8fr 1.1fr;
    gap: 36px;
    padding: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, .17);
    align-items: start;
}

.projectRow:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.projectNumber,
.projectCode {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .14em;
}

.projectRow h3 {
    font-size: 27px;
    line-height: 1.15;
    margin-top: 13px;
}

.projectRow>div:last-child>p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

.tagRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tagRow span {
    border: 1px solid rgba(220, 166, 38, .45);
    color: var(--gold-light);
    padding: 7px 9px;
    border-radius: 3px;
    font-size: 11px;
}

.lightAction {
    margin-top: 42px;
}

.approachHome {
    background: var(--paper);
}

.approachSteps {
    display: grid;
}

.approachStep {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 26px;
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.approachStep>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
}

.approachStep h3 {
    font-size: 23px;
}

.approachStep p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 8px;
}

.partnerCta {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--forest);
    color: white;
}

.partnerPhoto {
    background: #d9d0bf center/cover no-repeat url('../images/yadc-partnership-team.png');
    min-height: 520px;
}

.partnerPanel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(60px, 8vw, 130px);
}

.partnerPanel h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    margin-top: 28px;
}

.partnerPanel>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .73);
    line-height: 1.8;
    margin: 26px 0 34px;
    font-size: 16px;
}

.siteFooter {
    background: #072a25;
    color: white;
    padding-top: 76px;
}

.siteFooter .mark {
    min-width: 0;
    color: white;
}

.siteFooter .mark strong {
    color: var(--gold-light);
}

.siteFooter .markGreen {
    fill: var(--gold-light);
}

.siteFooter .markGold {
    fill: white;
}

.siteFooter .markCut {
    fill: #072a25;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.4fr .6fr .6fr .9fr;
    gap: 65px;
}

.footerIntro {
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    max-width: 390px;
    margin-top: 30px;
}

.footerGrid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}

.footerGrid a:hover {
    color: var(--gold-light);
}

.footerLabel {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footerGrid div:last-child p:not(.footerLabel) {
    line-height: 1.6;
}

.footerBase {
    margin-top: 66px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.pageHero {
    position: relative;
    overflow: hidden;
    background: var(--forest-deep);
    color: white;
    padding: 118px 0 105px;
}

.pageHero::after {
    content: "";
    position: absolute;
    right: -4%;
    top: -25%;
    width: 45%;
    aspect-ratio: 1;
    border: 1px solid rgba(220, 166, 38, .35);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(220, 166, 38, .04), 0 0 0 140px rgba(220, 166, 38, .035);
}

.pageHeroInner {
    position: relative;
    z-index: 2;
}

.pageHero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    max-width: 900px;
    margin-top: 30px;
}

.pageHeroInner>p:last-child {
    color: rgba(255, 255, 255, .72);
    max-width: 720px;
    font-size: 19px;
    line-height: 1.7;
    margin-top: 26px;
}

.contentBand {
    background: var(--paper);
}

.splitStory,
.principlesGrid,
.criteriaGrid,
.opportunityGrid,
.contactGrid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.richCopy {
    display: grid;
    gap: 26px;
}

.richCopy .leadSerif,
.sectorProposition {
    font-family: Georgia, serif;
    color: var(--teal);
    font-size: 28px;
    line-height: 1.45;
}

.richCopy>p:not(.leadSerif),
.principleList p,
.criteriaList p,
.opportunityGrid>div:last-child>p {
    color: var(--muted);
    line-height: 1.8;
}

.darkBand {
    background: var(--forest-deep);
    color: white;
}

.darkBand .sectionTop.light .sectionIntro .eyebrow {
    color: var(--gold-light);
}

.mandateGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.mandateCard {
    padding: 38px 32px 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.mandateCard:nth-child(3n+2),
.mandateCard:nth-child(3n+3) {
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.mandateCard span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
}

.mandateCard h3 {
    font-size: 26px;
    margin-top: 48px;
}

.mandateCard p {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}

.principlesGrid>div:first-child h2,
.criteriaGrid>div:first-child h2,
.opportunityGrid>div:first-child h2,
.contactSidebar h2 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    margin-top: 26px;
}

.principleList {
    display: grid;
}

.principleList>div {
    padding: 0 0 27px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--line);
}

.principleList h3 {
    font-size: 22px;
}

.principleList p {
    margin-top: 9px;
}

.pageCta {
    background: var(--teal);
    color: white;
    padding: 78px 0;
}

.pageCta>.shell {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 70px;
}

.pageCta h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    max-width: 800px;
    margin-top: 24px;
}

.pageCta .arrowLink {
    flex: 0 0 auto;
}

.sectorDetailList {
    border-top: 1px solid var(--line);
}

.sectorDetail {
    display: grid;
    grid-template-columns: 80px .9fr 1.1fr;
    gap: 42px;
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}

.sectorDetailIndex {
    color: var(--gold);
    font-weight: 850;
}

.sectorDetail h2 {
    font-size: 34px;
    line-height: 1.1;
}

.sectorProposition {
    font-size: 20px;
    margin-top: 18px;
}

.sectorDetail>div:last-child>p {
    color: var(--muted);
    line-height: 1.8;
}

.darkTags span {
    color: var(--teal);
    border-color: rgba(0, 103, 93, .3);
}

.selectionBand,
.disclosureBand {
    background: var(--ivory);
    padding: 100px 0;
}

.selectionGrid,
.disclosureGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: start;
}

.selectionBand {
    background: var(--forest);
    color: white;
}

.selectionGrid h2,
.disclosureGrid h2 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    margin-top: 25px;
}

.selectionGrid>div:last-child>p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.projectVisualBand {
    padding: 48px 0 0;
    background: var(--ivory);
}

.projectWideImage {
    height: 520px;
    background: center/cover no-repeat url('../images/yadc-flagship-projects.png');
    border-radius: 8px;
}

.projectVisualBand .shell>p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
    padding: 13px 0 48px;
}

.projectDetails {
    display: grid;
    gap: 100px;
}

.projectDetail {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 95px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--line);
}

.projectDetail:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.projectDetailHead>span,
.projectDetailHead>p:first-of-type {
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.projectDetailHead>p:first-of-type {
    margin: 16px 0 0;
    color: var(--teal);
}

.projectDetail h2 {
    font-size: clamp(35px, 3.5vw, 50px);
    line-height: 1.08;
    margin-top: 22px;
}

.projectSummary {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 24px;
}

.projectDetailBody {
    display: grid;
    gap: 30px;
}

.projectDetailBody>div {
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.projectDetailBody h3 {
    font-size: 20px;
}

.projectDetailBody p,
.projectDetailBody li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.projectDetailBody p {
    margin-top: 10px;
}

.projectDetailBody ol,
.projectDetailBody ul {
    margin: 13px 0 0;
    padding-left: 21px;
    display: grid;
    gap: 8px;
}

.disclosureGrid>div:last-child>p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.processList {
    border-top: 1px solid var(--line);
}

.processStage {
    display: grid;
    grid-template-columns: 70px .5fr 1.15fr .8fr;
    gap: 38px;
    align-items: start;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.processStage>span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 850;
}

.processStage h2 {
    font-size: 30px;
}

.processStage p {
    color: var(--muted);
    line-height: 1.7;
}

.processStage small {
    color: var(--teal);
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.capitalGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.capitalGrid article {
    padding: 38px 28px 20px;
    min-height: 250px;
    border-right: 1px solid rgba(255, 255, 255, .17);
}

.capitalGrid article:first-child {
    padding-left: 0;
}

.capitalGrid article:last-child {
    border-right: 0;
}

.capitalGrid h3 {
    font-size: 23px;
}

.capitalGrid p {
    color: rgba(255, 255, 255, .63);
    line-height: 1.75;
    margin-top: 17px;
    font-size: 14px;
}

.criteriaList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px 45px;
}

.criteriaList>div {
    border-top: 2px solid var(--gold);
    padding-top: 22px;
}

.criteriaList span {
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
}

.criteriaList h3 {
    font-size: 22px;
    margin-top: 25px;
}

.criteriaList p {
    margin-top: 10px;
}

.partnerTypeGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.partnerTypeGrid article {
    padding: 38px;
    min-height: 330px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.partnerTypeGrid span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.partnerTypeGrid h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-top: 50px;
}

.partnerTypeGrid p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 17px;
    font-size: 14px;
}

.partnerTypeGrid small {
    color: var(--teal);
    line-height: 1.5;
    margin-top: auto;
    padding-top: 30px;
}

.engagementBand {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--forest-deep);
    color: white;
}

.engagementImage {
    background: center/cover no-repeat url('../images/yadc-partnership-team.png');
    min-height: 700px;
}

.engagementCopy {
    padding: clamp(70px, 8vw, 130px);
}

.engagementCopy h2 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    margin-top: 27px;
}

.engagementCopy ol {
    margin: 45px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 24px;
}

.engagementCopy li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0 0 22px 28px;
    border-left: 2px solid var(--gold);
}

.engagementCopy li b {
    font-size: 18px;
}

.engagementCopy li span {
    color: rgba(255, 255, 255, .63);
    line-height: 1.6;
    font-size: 14px;
}

.opportunityGrid>div:last-child>p {
    font-size: 17px;
}

.opportunityChecks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    color: var(--teal);
    margin: 30px 0;
    font-weight: 650;
}

.contactGrid {
    grid-template-columns: .75fr 1.25fr;
}

.contactSidebar>p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 25px;
}

.contactMeta {
    display: grid;
    margin-top: 43px;
    border-top: 1px solid var(--line);
}

.contactMeta>div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 5px;
}

.contactMeta span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contactMeta b {
    font-size: 14px;
}

.inquiryForm {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 38px;
    box-shadow: 0 28px 80px rgba(0, 63, 53, .09);
    display: grid;
    gap: 22px;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiryForm label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.inquiryForm input,
.inquiryForm select,
.inquiryForm textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
    padding: 14px;
    text-transform: none;
    letter-spacing: 0;
    outline: none;
}

.inquiryForm input:focus,
.inquiryForm select:focus,
.inquiryForm textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(220, 166, 38, .14);
}

.formFoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.formFoot button {
    border: 0;
    border-radius: 5px;
    padding: 16px 20px;
    background: var(--gold);
    color: var(--forest-deep);
    font-weight: 800;
    cursor: pointer;
}

.formFoot button span {
    margin-left: 32px;
}

.formFoot p {
    color: var(--muted);
    font-size: 11px;
}

.formNotice {
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    padding: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.formNotice b {
    color: var(--forest);
    display: block;
}

.contactProtocol {
    padding: 90px 0;
    background: var(--forest);
    color: white;
}

.contactProtocol h2 {
    font-size: 46px;
    margin-top: 25px;
}

.contactProtocol .shell>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin-top: 50px;
}

.contactProtocol article {
    padding: 35px 34px 0 0;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.contactProtocol article:not(:first-child) {
    padding-left: 34px;
}

.contactProtocol article:last-child {
    border-right: 0;
}

.contactProtocol article span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
}

.contactProtocol article h3 {
    font-size: 23px;
    margin-top: 30px;
}

.contactProtocol article p {
    color: rgba(255, 255, 255, .63);
    line-height: 1.7;
    margin-top: 12px;
    font-size: 14px;
}

.reveal {
    animation: reveal .7s ease both;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1120px) {
    .shell {
        width: min(100% - 48px, 1000px);
    }

    .mark {
        min-width: 310px;
    }

    .desktopNav {
        gap: 17px;
    }

    .desktopNav a {
        font-size: 12px;
    }

    .sectorGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectorCard:nth-child(2) {
        border-right: 0;
    }

    .sectorCard:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 36px, 720px);
    }

    .headerInner {
        height: 76px;
    }

    .mark {
        min-width: 0;
        flex: 1;
    }

    .markSymbol {
        width: 44px;
        height: 40px;
    }

    .mark strong {
        font-size: 25px;
    }

    .mark small {
        font-size: 7px;
    }

    .desktopNav,
    .headerContact {
        display: none;
    }

    .mobileMenu {
        display: block;
        position: relative;
    }

    .mobileMenu summary {
        cursor: pointer;
        list-style: none;
        border: 1px solid var(--line);
        border-radius: 5px;
        padding: 10px 13px;
        font-weight: 700;
        font-size: 13px;
    }

    .mobileMenu summary::-webkit-details-marker {
        display: none;
    }

    .mobileMenu nav {
        position: absolute;
        right: 0;
        top: 48px;
        width: min(300px, calc(100vw - 36px));
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 7px;
        box-shadow: 0 18px 45px rgba(0, 47, 41, .18);
        padding: 14px;
        display: grid;
    }

    .mobileMenu nav a {
        padding: 12px 10px;
        border-bottom: 1px solid var(--line);
    }

    .mobileMenu nav a:last-child {
        border: 0;
        background: var(--gold);
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
    }

    .heroShade {
        background: linear-gradient(90deg, rgba(0, 47, 41, .98), rgba(0, 47, 41, .82));
    }

    .heroInner {
        padding-block: 92px 80px;
    }

    .hero h1 {
        font-size: clamp(46px, 12vw, 66px);
    }

    .heroLead {
        font-size: 17px;
    }

    .reachBar {
        flex-wrap: wrap;
        gap: 14px 22px;
        padding: 20px;
        font-size: 14px;
    }

    .section {
        padding: 84px 0;
    }

    .visionGrid,
    .approachGrid,
    .sectionTop {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .sectionTop {
        margin-bottom: 46px;
    }

    .sectorGrid {
        grid-template-columns: 1fr;
    }

    .sectorCard {
        min-height: 240px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .sectorCard h3 {
        margin-top: 38px;
    }

    .projectImage {
        height: 250px;
    }

    .projectRow {
        grid-template-columns: 45px 1fr;
    }

    .projectRow>div:last-child {
        grid-column: 2;
    }

    .partnerCta {
        grid-template-columns: 1fr;
    }

    .partnerPhoto {
        min-height: 440px;
    }

    .partnerPanel {
        padding: 78px 30px;
    }

    .footerGrid {
        grid-template-columns: 1fr 1fr;
    }

    .footerGrid>div:first-child {
        grid-column: 1 / -1;
    }

    .footerBase {
        flex-direction: column;
    }

    .splitStory,
    .principlesGrid,
    .criteriaGrid,
    .opportunityGrid,
    .contactGrid,
    .selectionGrid,
    .disclosureGrid,
    .projectDetail {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mandateGrid,
    .capitalGrid,
    .partnerTypeGrid {
        grid-template-columns: 1fr 1fr;
    }

    .mandateCard:nth-child(3n+2),
    .mandateCard:nth-child(3n+3) {
        padding-left: 0;
        border-left: 0;
    }

    .mandateCard:nth-child(2n) {
        padding-left: 28px;
        border-left: 1px solid rgba(255, 255, 255, .16);
    }

    .sectorDetail {
        grid-template-columns: 50px 1fr;
    }

    .sectorDetail>div:last-child {
        grid-column: 2;
    }

    .projectWideImage {
        height: 360px;
    }

    .processStage {
        grid-template-columns: 50px 1fr;
    }

    .processStage>p,
    .processStage>small {
        grid-column: 2;
    }

    .capitalGrid article:nth-child(2) {
        border-right: 0;
    }

    .capitalGrid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .17);
    }

    .engagementBand {
        grid-template-columns: 1fr;
    }

    .engagementImage {
        min-height: 500px;
    }

    .contactProtocol .shell>div {
        grid-template-columns: 1fr;
    }

    .contactProtocol article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        padding: 28px 0;
    }

    .contactProtocol article:not(:first-child) {
        padding-left: 0;
    }

    .pageCta>.shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .shell {
        width: calc(100% - 28px);
    }

    .mark small {
        display: none;
    }

    .markType {
        padding-left: 9px;
    }

    .heroActions {
        flex-direction: column;
    }

    .arrowLink {
        width: 100%;
    }

    .reachBar i {
        display: none;
    }

    .reachBar {
        justify-content: flex-start;
    }

    .projectRow {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .projectRow>div:last-child {
        grid-column: 1;
    }

    .footerGrid {
        grid-template-columns: 1fr;
    }

    .footerGrid>div:first-child {
        grid-column: auto;
    }

    .mandateGrid,
    .capitalGrid,
    .partnerTypeGrid,
    .criteriaList,
    .opportunityChecks,
    .formGrid {
        grid-template-columns: 1fr;
    }

    .mandateCard,
    .mandateCard:nth-child(2n),
    .capitalGrid article,
    .capitalGrid article:first-child {
        padding: 30px 0;
        border-left: 0;
        border-right: 0;
    }

    .sectorDetail {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sectorDetail>div:last-child {
        grid-column: 1;
    }

    .processStage {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .processStage>p,
    .processStage>small {
        grid-column: 1;
    }

    .projectWideImage {
        height: 270px;
    }

    .partnerTypeGrid {
        border-left: 0;
    }

    .partnerTypeGrid article {
        padding: 30px 0;
        border-right: 0;
        min-height: 280px;
    }

    .formFoot {
        align-items: flex-start;
        flex-direction: column;
    }
}