:root {
    --ink: #111615;
    --ink-soft: #2f3a37;
    --muted: #6f7874;
    --paper: #f7f5ef;
    --paper-strong: #fffdf7;
    --stone: #dfd8cb;
    --line: rgba(17, 22, 21, .13);
    --green: #214439;
    --green-deep: #122721;
    --gold: #bd9b5b;
    --clay: #9d5d44;
    --blue: #425569;
    --shadow: 0 28px 90px rgba(17, 22, 21, .16);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

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

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

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 106px;
    padding: 0 max(22px, calc((100vw - var(--max)) / 2));
    color: #fff;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled,
.site-header.light {
    height: 98px;
    color: var(--ink);
    background: rgba(247, 245, 239, .94);
    box-shadow: 0 14px 45px rgba(17, 22, 21, .08);
    backdrop-filter: blur(18px);
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    width: clamp(300px, 24vw, 430px);
    height: auto;
    max-height: 96px;
    object-fit: contain;
    transition: opacity .22s ease;
}

.brand-logo-black {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-white,
.site-header.light .brand-logo-white {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-black,
.site-header.light .brand-logo-black {
    opacity: 1;
}

.brand-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
    white-space: nowrap;
}

.brand strong {
    font-size: 18px;
    line-height: 1.05;
}

.brand small {
    margin-top: 2px;
    color: currentColor;
    font-size: 11px;
    letter-spacing: .18em;
    line-height: 1.2;
    opacity: .78;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
}

.primary-nav a {
    position: relative;
    padding: 11px 13px;
    border-radius: 999px;
    color: currentColor;
    opacity: .82;
}

.primary-nav a:hover,
.primary-nav a.active,
.primary-nav a[aria-current="page"] {
    opacity: 1;
}

.primary-nav a[aria-current="page"]::after {
    position: absolute;
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 2px;
    background: var(--gold);
    content: "";
}

.nav-toggle {
    display: none;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: currentColor;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: min(860px, 94vh);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--green-deep);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(13, 19, 17, .92) 0%, rgba(13, 19, 17, .73) 38%, rgba(13, 19, 17, .18) 78%), url("/assets/img/hero-boardroom.png");
    background-position: center;
    background-size: cover;
    content: "";
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 210px;
    background: linear-gradient(180deg, transparent, rgba(17, 22, 21, .72));
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
    padding: 168px 0 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

h1,
h2,
h3,
.display {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    line-height: 1.08;
}

h1 {
    max-width: 900px;
    font-size: clamp(3.1rem, 8vw, 7.9rem);
    font-weight: 700;
}

.hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 700px) auto;
    align-items: end;
    gap: 36px;
    margin-top: 30px;
}

.hero-copy p {
    margin: 0;
    max-width: 690px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.btn-primary {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.section {
    padding: clamp(72px, 10vw, 132px) max(22px, calc((100vw - var(--max)) / 2));
}

.section-tight {
    padding-top: clamp(52px, 7vw, 92px);
    padding-bottom: clamp(52px, 7vw, 92px);
}

.section-dark {
    color: #fff;
    background: var(--green-deep);
}

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

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 450px);
    gap: 42px;
    align-items: end;
    margin-bottom: 44px;
}

.section-header h2,
.page-title h1 {
    font-size: clamp(2.2rem, 4.4vw, 5rem);
}

.section-header p,
.page-title p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.section-dark .section-header p,
.section-dark .muted {
    color: rgba(255, 255, 255, .66);
}

.page-hero {
    padding: 164px max(22px, calc((100vw - var(--max)) / 2)) 78px;
    color: #fff;
    background: linear-gradient(135deg, rgba(18, 39, 33, .98), rgba(33, 68, 57, .9)), var(--green-deep);
}

.page-title {
    max-width: 980px;
}

.page-title p {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.metric-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(var(--max), calc(100% - 44px));
    margin: -32px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(18, 39, 33, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.metric {
    min-height: 124px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 3.1rem);
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.service-card,
.award-card,
.contact-panel,
.process-step,
.text-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 247, .72);
}

.service-card {
    position: relative;
    min-height: 360px;
    padding: 30px;
    overflow: hidden;
}

.service-card.featured {
    color: #fff;
    background: var(--green);
}

.service-card::before {
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 72px;
    background: var(--gold);
    content: "";
}

.service-card h3 {
    font-size: 1.62rem;
}

.service-card p {
    margin: 18px 0 0;
    color: var(--muted);
}

.service-card.featured p {
    color: rgba(255, 255, 255, .7);
}

.service-card a {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    color: inherit;
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.lead {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1.22rem, 2.2vw, 1.65rem);
    line-height: 1.45;
}

.body-copy p:first-child {
    margin-top: 0;
}

.body-copy p,
.body-copy li {
    color: var(--ink-soft);
}

.body-copy ul {
    margin: 24px 0 0;
    padding-left: 20px;
}

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

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

.team-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    background: var(--green-deep);
    box-shadow: 0 20px 70px rgba(17, 22, 21, .13);
}

.team-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: saturate(.92);
    transition: transform .7s ease;
}

.team-card:hover img {
    transform: scale(1.035);
}

.team-card::after {
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(9, 16, 14, .9));
    content: "";
}

.team-card div {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    left: 24px;
}

.team-card h3 {
    font-size: 1.45rem;
}

.team-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    font-weight: 700;
}

.team-card.large {
    min-height: 580px;
}

.team-card.large img {
    min-height: 580px;
}

.image-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
    gap: 20px;
    align-items: stretch;
}

.image-feature-media {
    overflow: hidden;
    min-height: 520px;
    border-radius: var(--radius);
    background: var(--green-deep);
}

.image-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.award-card {
    min-height: 174px;
    padding: 22px;
}

.award-card span {
    display: block;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.award-card strong {
    display: block;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.25;
}

.award-card small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    counter-reset: steps;
}

.process-step {
    min-height: 230px;
    padding: 24px;
    counter-increment: steps;
}

.process-step::before {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 34px;
    border-radius: 50%;
    color: var(--paper);
    background: var(--green);
    content: counter(steps, decimal-leading-zero);
    font-size: 12px;
    font-weight: 900;
}

.process-step h3 {
    font-family: Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
}

.process-step p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.quote-band {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
}

.quote-band blockquote {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 4.1rem);
    line-height: 1.12;
}

.quote-band p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .68);
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 42px;
    align-items: stretch;
}

.contact-band h2 {
    font-size: clamp(2.4rem, 5vw, 5.6rem);
}

.contact-panel {
    padding: 30px;
    background: var(--paper-strong);
}

.contact-panel dl {
    margin: 0;
}

.contact-panel dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-panel dd {
    margin: 8px 0 24px;
    color: var(--ink);
    font-weight: 700;
}

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

.form-status {
    margin: 22px 0 0;
    padding: 13px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-status.success {
    color: #173b2f;
    background: rgba(33, 68, 57, .12);
}

.form-status.error {
    color: #6d2c22;
    background: rgba(157, 93, 68, .14);
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form .full,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 253, 247, .92);
    font: inherit;
    outline: none;
    padding: 13px 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(189, 155, 91, .75);
    box-shadow: 0 0 0 4px rgba(189, 155, 91, .14);
}

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

.text-card {
    padding: clamp(24px, 4vw, 38px);
}

.text-card h2,
.text-card h3 {
    margin-bottom: 18px;
}

.text-card p:last-child,
.text-card ul:last-child {
    margin-bottom: 0;
}

.legal {
    max-width: 900px;
}

.legal h2 {
    margin-top: 42px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.1rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

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

.site-footer {
    color: rgba(255, 255, 255, .74);
    background: #0e1513;
    padding: 70px max(22px, calc((100vw - var(--max)) / 2)) 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .85fr 1fr .7fr;
    gap: 38px;
}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-logo {
    width: 380px;
    max-height: 122px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 18px 0 0;
}

.site-footer a {
    display: block;
    margin: 9px 0;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
}

@media (max-width: 980px) {
    .site-header {
        height: 82px;
        padding-inline: 20px;
    }

    .site-header.is-scrolled,
    .site-header.light {
        height: 82px;
    }

    .nav-toggle {
        display: grid;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 14px auto;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        color: var(--ink);
        background: rgba(247, 245, 239, .98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav a {
        padding: 14px;
        border-radius: var(--radius);
    }

    .primary-nav a[aria-current="page"] {
        background: rgba(189, 155, 91, .16);
    }

    .primary-nav a[aria-current="page"]::after {
        display: none;
    }

    .hero {
        min-height: 900px;
    }

    .hero::before {
        background-image: linear-gradient(180deg, rgba(13, 19, 17, .88), rgba(13, 19, 17, .68)), url("/assets/img/hero-boardroom.png");
        background-position: center right;
    }

    .hero-copy,
    .section-header,
    .split,
    .quote-band,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .metric-strip,
    .service-grid,
    .award-grid,
    .process-grid,
    .team-grid,
    .image-feature,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image-feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1,
    h2,
    h3,
    .display {
        hyphens: auto;
        overflow-wrap: anywhere;
    }

    .eyebrow {
        flex-wrap: wrap;
        max-width: 100%;
        font-size: 10px;
        letter-spacing: .13em;
        line-height: 1.5;
    }

    .eyebrow::before {
        width: 28px;
    }

    .brand small {
        display: none;
    }

    .brand-logo {
        width: 220px;
        max-height: 70px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-inner {
        width: calc(100% - 32px);
        padding-bottom: 34px;
    }

    h1 {
        font-size: clamp(2.46rem, 12.4vw, 3.42rem);
        line-height: 1.02;
    }

    .btn {
        min-height: 56px;
        padding-inline: 16px;
        font-size: 13px;
        width: 100%;
    }

    .metric-strip,
    .service-grid,
    .award-grid,
    .process-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .metric:last-child {
        border-bottom: 0;
    }

    .service-card {
        min-height: 310px;
    }

    .team-card,
    .team-card.large,
    .team-card img,
    .team-card.large img,
    .image-feature-media,
    .image-feature-media img {
        min-height: 460px;
    }

    .footer-bottom {
        display: grid;
    }

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