:root {
    --paper: #faf9f5;
    --ink: #243d33;
    --green: #244638;
    --muted: #6c7269;
    --sage: #7a8c70;
    --line: #dedfd4;
    --soft: #f0f1e9;
    --serif: Georgia, 'Times New Roman', serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 32px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.dialog-open {
    overflow: hidden;
}

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

button, a, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    cursor: pointer;
}

button, input, select, textarea {
    border-radius: 0;
}

button {
    color: inherit;
}

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

h1, h2, h3, p {
    margin: 0;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 5px;
}

::selection {
    background: #d8dfce;
    color: #203c31;
}

[hidden] {
    display: none !important;
}

.page-shell {
    width: calc(100% - 112px);
    max-width: 1280px;
    margin-inline: auto;
}

.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 100;
    padding: 12px 20px;
    background: var(--green);
    color: white;
}

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

.site-header {
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    background: var(--green);
    color: var(--paper);
}

.brand-mark svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.3px;
    line-height: 1.2;
}

.brand-name > span {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3.5px;
}

.desktop-nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
    margin-right: 68px;
    font-size: 13px;
}

.desktop-nav a {
    padding-block: 12px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width 180ms ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 11px 18px;
    border: 1px solid var(--green);
    font-size: 13px;
    transition: background 180ms, color 180ms;
}

.header-cta:hover {
    background: var(--green);
    color: white;
}

.menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 75px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.9px;
    line-height: 1.5;
    text-transform: uppercase;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

.hero h1 {
    margin-top: 29px;
    font-family: var(--serif);
    font-size: clamp(65px, 6.65vw, 93px);
    line-height: 1.025;
    font-weight: 400;
    letter-spacing: -4.8px;
}

em {
    font-weight: 400;
}

.hero h1 em {
    color: #728369;
}

.hero-description {
    max-width: 397px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 29px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    min-height: 51px;
    padding: 13px 22px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    transition: background 180ms, transform 180ms;
}

.button .icon {
    width: 17px;
    height: 17px;
}

.button-primary {
    color: #fff;
    background: var(--green);
}

.button-primary:hover {
    background: #355844;
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-block: 5px;
    border-bottom: 1px solid #a0a99b;
    font-size: 12px;
    transition: border-color 180ms, color 180ms;
}

.text-link:hover {
    color: #728369;
    border-color: #728369;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 32px;
    color: #7a7f74;
    font-size: 10px;
    letter-spacing: .3px;
}

.small-line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background: #839078;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 548px;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 50% 55%;
    border-radius: 2px;
}

.image-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    left: 20px;
    top: 20px;
    padding: 8px 12px;
    background: rgba(250, 249, 245, .92);
    color: var(--green);
    font-size: 9px;
    letter-spacing: .6px;
}

.image-label .status-dot {
    width: 4px;
    height: 4px;
}

.perspective-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 30px;
    left: -31px;
    bottom: 33px;
    width: 355px;
    padding: 24px 26px;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 8px 35px #1a302210;
}

.mini-label {
    display: block;
    font-size: 8px;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.perspective-card p {
    margin-top: 10px;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.28;
    letter-spacing: -.65px;
}

.perspective-card em {
    color: #748269;
}

.growth-mark {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    fill: none;
    stroke: #849275;
    stroke-width: 1.2;
}

.photo-index {
    position: absolute;
    right: 0;
    bottom: -27px;
    color: #818678;
    font-size: 8px;
    letter-spacing: 1.1px;
}

.focus-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f0f1e9;
}

.focus-inner {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.focus-inner p {
    padding-right: 30px;
    border-right: 1px solid #d2d7ca;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
}

.focus-inner strong {
    color: var(--green);
    font-weight: 400;
}

.focus-inner > span {
    font-family: var(--serif);
    font-size: 18px;
    white-space: nowrap;
}

.focus-inner i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #97a18b;
}

.section-space {
    padding-top: 96px;
    padding-bottom: 96px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px;
}

body h2 {
    margin-top: 20px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 3.75vw, 52px);
    line-height: 1.14;
    letter-spacing: -1.9px;
}

h2 em {
    color: #7c886f;
}

.section-intro {
    max-width: 325px;
    padding-bottom: 4px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px 25px 22px;
    background: var(--soft);
    border: 1px solid #e6e8dd;
    transition: transform 200ms, background 200ms, border-color 200ms;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #e9ede1;
    border-color: #b0bba4;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-icon {
    height: 37px;
    width: 37px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.15;
}

.service-top > span {
    font-size: 10px;
    color: #87917c;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: -.6px;
}

.service-card > p {
    margin-top: 16px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.85;
}

.service-link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 17px;
    border: 0;
    border-top: 1px solid #d9ded0;
    background: transparent;
    font-size: 11px;
    text-align: left;
}

.service-link .icon {
    width: 16px;
    height: 16px;
    transition: transform 180ms;
}

.service-link:hover .icon {
    transform: translate(2px, -2px);
}

.expertise-footnote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 27px;
}

.expertise-footnote > span {
    font-size: 11px;
    color: #84887d;
}

.expertise-footnote .text-link {
    font-size: 11px;
}

.about-section {
    background: #eeeee6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 88px;
}

.about-visual img {
    width: 100%;
    height: 445px;
    object-fit: cover;
    object-position: 46% center;
}

.about-caption {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 16px;
    color: #777f70;
    font-size: 10px;
    letter-spacing: .3px;
}

.about-copy h2 {
    margin-bottom: 25px;
}

.about-copy > p:not(.eyebrow) {
    color: var(--muted);
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.85;
}

.about-copy > .about-lead {
    color: var(--ink) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 24px;
    padding-block: 18px;
    border-top: 1px solid #d4d9ca;
    border-bottom: 1px solid #d4d9ca;
}

.values-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
}

.values-row .icon {
    width: 14px;
    height: 14px;
    color: #6a805d;
}

.about-copy > .text-link {
    margin-top: 24px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    margin-top: 51px;
}

.step-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 19px;
    border-top: 1px solid #ccd3c3;
}

.step-line > span {
    font-size: 11px;
    color: #7e8c72;
}

.step-line .icon {
    width: 17px;
    height: 17px;
    color: #87947b;
}

.approach-step h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.65px;
    margin-top: 23px;
}

.approach-step p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
    margin-top: 14px;
    max-width: 330px;
}

.approach-closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 51px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    color: #7c8273;
    letter-spacing: .25px;
}

.contact-section {
    background: #223f34;
    color: #f4f2e9;
}

.contact-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 120px;
    padding-top: 79px;
    padding-bottom: 64px;
}

.contact-intro .eyebrow {
    color: #c3ccba;
}

.contact-intro h2 {
    font-size: clamp(50px, 5.4vw, 76px);
    line-height: 1.09;
    letter-spacing: -2.8px;
    margin-top: 20px;
}

.contact-intro h2 em {
    color: #b9c5a9;
}

.contact-invitation {
    max-width: 335px;
    padding-top: 31px;
}

.contact-invitation > p {
    color: #c9d0c5;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 25px;
}

.button-light {
    background: #f1f1e6;
    color: var(--green);
}

.button-light:hover {
    background: #d9e2cc;
    transform: translateY(-2px);
}

.contact-invitation > span {
    display: block;
    margin-top: 14px;
    font-size: 10px;
    color: #a4b29e;
}

.contact-details {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.35fr .8fr;
    gap: 32px;
    border-top: 1px solid #496052;
    padding-top: 38px;
    padding-bottom: 40px;
}

.footer-brand .brand-mark {
    background: #e3e8d7;
    color: var(--green);
    width: 36px;
    height: 36px;
}

.footer-brand .brand-mark svg {
    width: 31px;
    height: 31px;
}

.footer-brand .brand-name {
    font-size: 14px;
    letter-spacing: 2px;
}

.footer-brand .brand-name > span {
    font-size: 7px;
    letter-spacing: 2.9px;
}

.contact-details h3 {
    font-size: 9px;
    letter-spacing: 1.4px;
    font-weight: 400;
    text-transform: uppercase;
    color: #a7b69e;
    margin-bottom: 15px;
}

.contact-details address, .contact-details > div > a {
    font-style: normal;
    font-size: 11px;
    line-height: 1.9;
}

.contact-details > div > a:hover {
    color: #d9e4c8;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-details > div > a > span {
    display: inline-block;
    padding-left: 5px;
}

.contact-details p {
    margin-top: 12px;
    color: #a7b69e;
    font-size: 10px;
    line-height: 1.8;
}

.email-column a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #496052;
    padding-block: 21px;
    font-size: 9px;
    letter-spacing: .2px;
    color: #b5c0ac;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom a:hover {
    color: white;
}

.site-dialog {
    overflow: hidden;
    width: min(590px, calc(100% - 32px));
    max-height: calc(100dvh - 48px);
    padding: 0;
    border: 1px solid #cbd2c1;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 30px 100px #12291d40;
    margin: auto;
}

.site-dialog::backdrop {
    background: rgba(20, 37, 28, .58);
    backdrop-filter: blur(5px);
}

.dialog-content {
    position: relative;
    max-height: calc(100dvh - 50px);
    overflow-y: auto;
    padding: 46px;
}

.dialog-close {
    z-index: 2;
    box-shadow: 0 0 0 4px var(--paper);
    background-color: var(--paper) !important;
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid var(--line);
}

.dialog-close:hover {
    background: var(--soft);
}

.site-dialog h2 {
    font-size: 43px;
    padding-right: 12px;
    margin-top: 20px;
}

.dialog-description {
    color: var(--muted);
    font-size: 14px;
    margin-top: 19px;
    line-height: 1.8;
}

.site-dialog h3 {
    margin-top: 27px;
    font-size: 13px;
    font-weight: 500;
}

.service-deliverables {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.service-deliverables li {
    position: relative;
    padding: 12px 0 12px 21px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.service-deliverables li::before {
    content: '↗';
    position: absolute;
    left: 0;
    color: #7f906e;
}

.dialog-note {
    font-size: 11px;
    color: var(--muted);
    margin: 22px 0;
}

#inquiry-form {
    margin-top: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;
    font-size: 11px;
    margin-bottom: 7px;
}

.form-field label span {
    color: #738967;
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    min-height: 45px;
    padding: 11px 12px;
    border: 1px solid #ccd3c3;
    background: #fffefa;
    color: var(--ink);
    font-size: 13px;
}

.form-field textarea {
    display: block;
    resize: vertical;
}

.form-field input::placeholder, .form-field textarea::placeholder {
    color: #90968b;
}

.form-notice {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.email-result {
    padding: 18px;
    margin-top: 18px;
    background: #e8edde;
    font-size: 12px;
}

.email-result .text-link {
    margin-top: 8px;
}

@media (min-width: 1500px) {
    .hero {
        gap: 90px;
        padding-top: 68px;
        padding-bottom: 85px;
    }

    .hero-visual {
        min-height: 585px;
    }

}

@media (max-width: 1150px) {
    .page-shell {
        width: calc(100% - 80px);
    }

    .desktop-nav {
        margin-right: 25px;
        gap: 25px;
    }

    .hero {
        gap: 45px;
    }

    .hero h1 {
        font-size: 73px;
        letter-spacing: -3.7px;
    }

    .hero-actions {
        gap: 17px;
    }

    .hero-actions .button {
        gap: 15px;
        padding-inline: 16px;
        font-size: 11px;
    }

    .hero-actions .text-link {
        font-size: 11px;
        gap: 10px;
    }

    .perspective-card {
        width: 325px;
        gap: 18px;
        padding: 22px;
        left: -22px;
    }

    .focus-inner {
        gap: 16px;
    }

    .focus-inner > span {
        font-size: 16px;
    }

    .focus-inner p {
        padding-right: 22px;
    }

    .service-card {
        padding: 23px 20px 20px;
    }

    .service-card h3 {
        font-size: 25px;
    }

    .about-grid {
        gap: 50px;
    }

    .about-copy h2 {
        font-size: 44px;
    }

    .contact-intro {
        gap: 80px;
    }

    .contact-details {
        gap: 25px;
        grid-template-columns: 1.1fr 1fr 1.35fr;
    }

    .contact-details > div:last-child {
        grid-column: 2;
    }

}

@media (max-width: 900px) {
    .page-shell {
        width: calc(100% - 56px);
    }

    .header-inner {
        min-height: 84px;
        gap: 20px;
    }

    .desktop-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 0;
        background: transparent;
    }

    .menu-toggle span {
        width: 21px;
        height: 1px;
        background: var(--green);
        transition: transform 180ms;
    }

    .menu-toggle[aria-expanded='true'] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded='true'] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .mobile-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 20px;
        padding: 8px 28px 24px;
        border-top: 1px solid var(--line);
    }

    .mobile-nav a {
        padding: 12px 0;
        font-size: 14px;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.15px;
    }

    .hero h1 {
        font-size: 59px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 13px;
        margin-top: 22px;
    }

    .hero-visual {
        min-height: 465px;
    }

    .hero-actions {
        gap: 17px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-note {
        font-size: 9px;
        margin-top: 22px;
    }

    .image-label {
        left: 12px;
        top: 12px;
        font-size: 7px;
    }

    .perspective-card {
        width: 275px;
        padding: 19px;
        left: -14px;
    }

    .perspective-card p {
        font-size: 21px;
    }

    .growth-mark {
        width: 45px;
        height: 45px;
    }

    .mini-label {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .photo-index {
        font-size: 6px;
        letter-spacing: .8px;
    }

    .focus-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding-block: 24px;
        gap: 15px 25px;
    }

    .focus-inner p {
        width: 100%;
        border: 0;
        text-align: center;
        padding: 0;
    }

    .focus-inner p br {
        display: none;
    }

    .focus-inner > span {
        font-size: 15px;
    }

    .section-space {
        padding-block: 75px;
    }

    .section-heading {
        align-items: flex-start;
        gap: 25px;
    }

    .section-intro {
        max-width: 275px;
        font-size: 13px;
    }

    body h2 {
        font-size: 42px;
    }

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

    .service-card {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 29px;
    }

    .service-card > p {
        font-size: 13px;
    }

    .about-grid {
        gap: 36px;
    }

    .about-visual img {
        height: 475px;
    }

    .about-copy h2 {
        font-size: 37px;
    }

    .about-copy > p:not(.eyebrow) {
        font-size: 12px;
    }

    .about-copy > .about-lead {
        font-size: 14px !important;
    }

    .values-row {
        gap: 10px;
    }

    .approach-grid {
        gap: 28px;
    }

    .approach-step h3 {
        font-size: 23px;
    }

    .approach-step p {
        font-size: 12px;
    }

    .contact-intro {
        gap: 50px;
        padding-block: 64px;
    }

    .contact-intro h2 {
        font-size: 58px;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
        gap: 32px 50px;
    }

    .contact-details > div:last-child {
        grid-column: auto;
    }

}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 20px;
    }

    .page-shell {
        width: calc(100% - 40px);
    }

    .header-inner {
        min-height: 80px;
        gap: 12px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-mark svg {
        width: 32px;
        height: 32px;
    }

    .brand {
        gap: 10px;
    }

    .brand-name {
        font-size: 15px;
        letter-spacing: 1.8px;
    }

    .brand-name > span {
        font-size: 7px;
        letter-spacing: 2.9px;
    }

    .header-cta {
        display: none;
    }

    .mobile-nav {
        padding-inline: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 36px;
        padding-bottom: 57px;
        gap: 35px;
    }

    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.45px;
    }

    .hero h1 {
        font-size: clamp(60px, 15.1vw, 86px);
        margin-top: 23px;
        letter-spacing: -3.5px;
        line-height: 1.02;
    }

    .hero-description {
        max-width: 385px;
        font-size: 14px;
        margin-top: 23px;
    }

    .hero-actions {
        flex-direction: row;
        gap: 22px;
        margin-top: 25px;
        align-items: center;
    }

    .hero-actions .button {
        font-size: 11px;
        min-height: 49px;
    }

    .hero-actions .text-link {
        font-size: 11px;
    }

    .hero-note {
        margin-top: 22px;
    }

    .hero-visual {
        min-height: 414px;
        margin-bottom: 12px;
        margin-left: 15px;
    }

    .hero-image {
        object-position: center 46%;
    }

    .image-label {
        font-size: 8px;
        padding: 7px 10px;
    }

    .perspective-card {
        width: min(310px, calc(100% - 5px));
        left: -15px;
        bottom: 22px;
        padding: 21px;
        justify-content: space-between;
    }

    .perspective-card p {
        font-size: 23px;
    }

    .mini-label {
        font-size: 7px;
    }

    .growth-mark {
        width: 55px;
        height: 55px;
    }

    .photo-index {
        font-size: 6.5px;
        bottom: -23px;
    }

    .focus-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 14px;
        padding-block: 25px;
    }

    .focus-inner p {
        grid-column: 1 / -1;
        padding-bottom: 9px;
        font-size: 11px;
    }

    .focus-inner > span {
        text-align: center;
        font-size: 15px;
        white-space: normal;
    }

    .focus-inner i {
        display: none;
    }

    .section-space {
        padding-block: 63px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.6px;
    }

    body h2 {
        font-size: 39px;
        letter-spacing: -1.6px;
        margin-top: 17px;
    }

    .section-heading {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 30px;
    }

    .section-intro {
        max-width: 100%;
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 25px 27px 22px;
    }

    .service-top {
        margin-bottom: 19px;
    }

    .service-card h3 {
        font-size: 29px;
    }

    .service-card h3 br {
        display: none;
    }

    .service-card h3 br::after {
        content: ' ';
    }

    .service-card > p {
        margin-top: 13px;
        margin-bottom: 21px;
        font-size: 13px;
        max-width: 360px;
    }

    .service-link {
        font-size: 12px;
        min-height: 43px;
    }

    .expertise-footnote {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
        margin-top: 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-visual img {
        height: 340px;
    }

    .about-caption {
        font-size: 9px;
    }

    .about-copy h2 {
        font-size: 41px;
        margin-bottom: 20px;
    }

    .about-copy > p:not(.eyebrow) {
        font-size: 13px;
    }

    .about-copy > .about-lead {
        font-size: 15px !important;
    }

    .values-row {
        gap: 16px;
    }

    .values-row span {
        font-size: 10px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        margin-top: 34px;
        gap: 29px;
    }

    .step-line {
        padding-top: 15px;
    }

    .approach-step h3 {
        font-size: 27px;
        margin-top: 16px;
    }

    .approach-step p {
        font-size: 13px;
        max-width: 100%;
        margin-top: 10px;
    }

    .approach-closing {
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 10px;
        margin-top: 32px;
        gap: 9px;
    }

    .approach-closing .status-dot {
        margin-top: 5px;
    }

    .contact-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 59px;
        padding-bottom: 42px;
    }

    .contact-intro h2 {
        font-size: 59px;
        letter-spacing: -2.3px;
    }

    .contact-invitation {
        max-width: 100%;
        padding-top: 0;
    }

    .contact-invitation > p {
        font-size: 13px;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .contact-details {
        gap: 28px 22px;
        padding-top: 33px;
        padding-bottom: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-details .email-column {
        grid-column: 1 / -1;
        order: 3;
    }

    .contact-details h3 {
        font-size: 9px;
        margin-bottom: 11px;
    }

    .contact-details address, .contact-details > div > a {
        font-size: 12px;
    }

    .footer-brand p {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        padding-block: 21px;
    }

    .footer-bottom a {
        align-self: flex-start;
    }

    .dialog-content {
        padding: 40px 24px 27px;
    }

    .site-dialog h2 {
        font-size: 36px;
    }

    .dialog-content .eyebrow {
        max-width: 240px;
        font-size: 8px;
    }

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

    .form-field input, .form-field select, .form-field textarea {
        font-size: 16px;
    }

}

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

    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }

}
