:root {
    --paper: #f7f6f2;
    --cream: #eeede6;
    --ink: #30332b;
    --muted: #6e7167;
    --rust: #a35237;
    --rust-dark: #85402a;
    --line: #dddfd4;
    --forest: #293b33;
    --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;
}

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

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

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: wait;
}

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

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

h1, h2 {
    font-family: var(--serif);
    font-weight: 400;
}

body h2 {
    font-size: clamp(38px, 4.1vw, 54px);
    letter-spacing: -2.2px;
    line-height: 1.13;
}

h1 em, h2 em {
    font-weight: 400;
    color: var(--rust);
}

button {
    border: 0;
}

[hidden] {
    display: none !important;
}

::selection {
    color: white;
    background: var(--rust);
}

:focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 5px;
}

.site-container {
    width: calc(100% - 112px);
    max-width: 1264px;
    margin-inline: auto;
}

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

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

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.section-dot {
    width: 6px;
    height: 6px;
    background: var(--rust);
    flex-shrink: 0;
}

.small-cross {
    font-size: 22px;
    color: var(--rust);
    font-weight: 400;
    line-height: 1;
}

.mini-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.status-dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    min-height: 50px;
    padding: 14px 23px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    transition: background .2s, transform .2s;
}

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

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

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

.button-dark:hover {
    background: var(--forest);
}

.button-rust {
    background: var(--rust);
    color: #fffdf8;
}

.button-rust:hover {
    background: var(--rust-dark);
}

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

.button-cream:hover {
    background: #e6e1d7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    font-weight: 500;
    background: transparent;
    padding: 5px 0;
}

.text-link .icon, .map-link .icon {
    transition: transform .2s;
}

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

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

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

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

/* A quiet, architectural identity. */
.site-header {
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 20;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 101px;
}

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

.brand-mark {
    width: 41px;
    height: 41px;
    fill: var(--rust);
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-wordmark strong {
    font-size: 25px;
    letter-spacing: 3.8px;
    font-weight: 500;
}

.brand-wordmark > span {
    font-size: 8px;
    letter-spacing: 2.7px;
    margin-top: 7px;
}

.desktop-nav {
    display: flex;
    gap: 34px;
    padding-left: 60px;
}

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

.desktop-nav a::after {
    content: '';
    position: absolute;
    height: 1px;
    background: var(--rust);
    bottom: 3px;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    min-height: 44px;
    min-width: 131px;
}

.menu-toggle {
    display: none;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 11px;
}

.menu-toggle span {
    display: block;
    height: 1px;
    width: 22px;
    background: var(--ink);
    margin-block: 6px;
    transition: transform .2s;
}

.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 {
    position: absolute;
    inset: 100% 0 auto;
    padding: 10px 25px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 25px #30332b0a;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

/* Perspective-led hero. */
.hero {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 70px;
    padding-block: 61px 72px;
    align-items: center;
}

.hero-copy {
    padding-top: 3px;
    padding-bottom: 8px;
}

.hero .eyebrow {
    margin-bottom: 27px;
}

.hero h1 {
    font-size: clamp(61px, 6.1vw, 85px);
    line-height: 1.065;
    letter-spacing: -4.8px;
}

.hero-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
    max-width: 405px;
    margin-top: 26px;
}

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

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

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
    margin-top: 38px;
}

.hero-note .status-dot {
    color: #7d896e;
}

.hero-visual {
    position: relative;
    height: 545px;
}

.hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #171c181c, transparent 40%, #171c1830);
    pointer-events: none;
}

.image-label {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 1;
    font-size: 8px;
    letter-spacing: 1.4px;
    color: white;
    padding: 9px 12px;
    border: 1px solid #ffffff55;
    background: #17261c35;
    backdrop-filter: blur(5px);
}

.insight-card {
    position: absolute;
    bottom: 30px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 19px;
    background: var(--paper);
    padding: 24px 23px;
    z-index: 2;
    box-shadow: 0 10px 30px #1b201614;
}

.insight-card .mini-label {
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 1.4px;
}

.insight-card p {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
    margin-top: 7px;
    letter-spacing: -.5px;
}

.insight-card > .icon {
    align-self: flex-start;
    width: 15px;
    margin-left: 16px;
    color: var(--rust);
}

.insight-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
    width: 35px;
}

.insight-bars i {
    width: 5px;
    background: var(--rust);
    height: 35%;
}

.insight-bars i:nth-child(2) {
    height: 55%;
    opacity: .55;
}

.insight-bars i:nth-child(3) {
    height: 75%;
    opacity: .75;
}

.insight-bars i:nth-child(4) {
    height: 100%;
}

.image-caption {
    position: absolute;
    right: 0;
    bottom: -26px;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .4px;
}

.expertise-strip {
    background: var(--cream);
    border-block: 1px solid #e1e2d9;
}

.strip-grid {
    display: grid;
    grid-template-columns: .77fr 1.25fr 1.12fr 1.08fr;
    align-items: center;
    min-height: 95px;
}

.strip-intro {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--muted);
    line-height: 1.8;
}

.strip-grid > a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    padding: 14px 25px;
    border-left: 1px solid #d6d8cd;
    transition: color .2s;
}

.strip-grid > a:hover {
    color: var(--rust);
}

.strip-grid > a > span {
    font-family: var(--serif);
    font-style: italic;
    color: var(--rust);
    font-size: 12px;
}

.strip-grid .icon {
    width: 14px;
    height: 14px;
    margin-left: auto;
}

/* Independent thinking and connected expertise. */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 104px;
}

.about .eyebrow {
    margin-bottom: 27px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    font-size: 10px;
    color: var(--muted);
}

.signature-line {
    width: 30px;
    height: 1px;
    background: var(--rust);
}

.about-copy {
    padding-top: 7px;
}

.about-copy .lead {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -.3px;
}

.about-copy > p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 14px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 25px;
}

.about-values > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}

.about-values .icon {
    width: 15px;
    height: 15px;
    color: var(--rust);
}

.expertise {
    background: var(--cream);
}

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

.section-description {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    max-width: 285px;
    padding-bottom: 6px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: start;
}

.service-card {
    background: var(--paper);
    border: 1px solid transparent;
    padding: 29px 25px 24px;
    min-height: 337px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, box-shadow .25s;
}

.service-card:hover {
    border-color: #c5b7a8;
    box-shadow: 0 6px 20px #30332b05;
}

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

.service-top > span {
    font-size: 9px;
    color: #85877b;
    font-family: monospace;
}

.service-icon {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--rust);
    stroke-width: 1.2;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -.6px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-card > p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 26px;
}

.service-toggle {
    margin-top: auto;
    width: 100%;
    padding: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border-top: 1px solid var(--line);
    font-size: 10px;
    text-align: left;
}

.service-toggle span {
    color: var(--rust);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s;
}

.service-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.service-detail {
    padding-top: 16px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.85;
}

.expertise-footnote {
    margin-top: 29px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 10px;
}

.expertise-footnote a {
    color: var(--ink);
    border-bottom: 1px solid #bfbfb0;
    padding-bottom: 4px;
}

.expertise-footnote a span {
    color: var(--rust);
    margin-left: 12px;
}

/* A live illustration of a more useful business review. */
.analytics {
    background: var(--forest);
    color: var(--paper);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 105px;
    align-items: center;
}

.analytics .eyebrow {
    color: #d9dcd0;
    font-size: 9px;
}

.analytics .section-dot {
    background: #c68b65;
}

.analytics h2 {
    font-size: 59px;
}

.analytics h2 em {
    color: #cfa180;
}

.analytics-copy > p:not(.eyebrow) {
    color: #bdc6bc;
    max-width: 350px;
    font-size: 13px;
    line-height: 1.9;
    margin-top: 27px;
}

.analytics-copy .text-link {
    margin-top: 25px;
    font-size: 11px;
    color: #f2f0e6;
}

.dashboard {
    color: var(--ink);
    background: var(--paper);
    padding: 29px 32px 20px;
    border-radius: 3px;
    box-shadow: 0 18px 50px #10281b25;
    transform: rotate(-1deg);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}

.dashboard-top .mini-label {
    color: var(--muted);
}

.demo-label {
    font-size: 6px;
    letter-spacing: 1px;
    color: #68745e;
    padding: 5px 7px;
    background: #e7eadf;
}

.dashboard h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.4px;
}

.chart-tabs {
    display: flex;
    gap: 21px;
    border-bottom: 1px solid var(--line);
    margin-top: 20px;
}

.chart-tabs button {
    position: relative;
    font-size: 9px;
    padding: 8px 0 12px;
    color: var(--muted);
    background: transparent;
}

.chart-tabs button[aria-selected="true"] {
    color: var(--rust);
}

.chart-tabs button[aria-selected="true"]::after {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--rust);
    bottom: -1px;
    left: 0;
    right: 0;
}

.chart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 24px 0 18px;
}

.chart-summary > div {
    display: flex;
    flex-direction: column;
}

.chart-value {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.chart-unit {
    font-size: 8px;
    color: var(--muted);
    margin-top: 4px;
}

.chart-change {
    color: #557444;
    background: #e9eddf;
    font-size: 8px;
    padding: 5px 8px;
    white-space: nowrap;
}

.chart {
    height: 144px;
    position: relative;
}

.chart-grid {
    position: absolute;
    inset: 0 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid span {
    width: 100%;
    border-top: 1px dashed #dfe1d5;
}

.chart-bars {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-inline: 25px;
    align-items: end;
}

.bar-column {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.bar {
    display: block;
    width: 100%;
    height: calc(var(--bar-height) - 25px);
    background: #cbbbae;
    min-height: 10px;
    transition: height .45s cubic-bezier(.2,.7,.2,1);
}

.bar-column:nth-child(2) .bar {
    background: #b9a18e;
}

.bar-column:nth-child(3) .bar {
    background: #b68a6b;
}

.bar.bar-highlight {
    background: var(--rust);
}

.bar-column > span:last-child {
    display: flex;
    align-items: center;
    height: 25px;
    font-size: 8px;
    color: var(--muted);
    flex-shrink: 0;
}

.chart-insight {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 19px;
    background: var(--cream);
    padding: 10px 11px;
    font-size: 8px;
    line-height: 1.65;
}

.chart-insight .status-dot {
    color: var(--rust);
    width: 4px;
    height: 4px;
}

.dashboard-caption {
    font-size: 7px;
    color: var(--muted);
    margin-top: 13px;
    text-align: center;
}

/* The path from a good question to a practical next step. */
.approach {
    display: grid;
    grid-template-columns: .94fr 1fr;
    gap: 106px;
    align-items: center;
}

.approach-image-wrap {
    height: 550px;
    position: relative;
}

.approach-image {
    height: 100%;
    object-fit: cover;
}

.approach-image-note {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    padding: 20px 23px;
    font-size: 9px;
    letter-spacing: 1.5px;
    line-height: 1.9;
}

.approach-image-note > .icon {
    position: absolute;
    right: 22px;
    top: 27px;
    color: var(--rust);
}

.approach .eyebrow {
    margin-bottom: 22px;
}

.approach h2 {
    font-size: 49px;
}

.approach-intro {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    max-width: 350px;
    margin-top: 22px;
}

.process-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.process-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 16px;
    padding-block: 21px;
    border-top: 1px solid var(--line);
}

.process-list li:last-child {
    padding-bottom: 0;
}

.process-number {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    color: var(--rust);
    line-height: 1.5;
}

.process-list h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.process-list p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 355px;
}

/* An invitation, with real and visible contact details. */
.contact-callout {
    position: relative;
    overflow: hidden;
    background: var(--rust);
    color: #fbf5e9;
    padding-block: 77px 81px;
}

.contact-callout-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-callout .eyebrow {
    font-size: 8px;
    color: #f0ddce;
    letter-spacing: 1.4px;
}

.contact-callout .section-dot {
    background: #dfb89c;
}

.contact-callout h2 {
    font-size: 65px;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.contact-callout h2 em {
    color: #f0d3bb;
}

.contact-callout-copy {
    max-width: 315px;
    padding-top: 23px;
}

.contact-callout-copy > p {
    font-size: 13px;
    line-height: 1.9;
    color: #f0ded0;
    margin-bottom: 24px;
}

.contact-callout-copy .button {
    min-width: 202px;
}

.contact-small {
    display: block;
    margin-top: 16px;
    color: #edceba;
    font-size: 9px;
}

.contact-decoration {
    position: absolute;
    right: 5px;
    bottom: -140px;
    font-family: var(--serif);
    font-size: 510px;
    line-height: 1;
    color: #ffffff04;
    pointer-events: none;
}

.site-footer {
    background: #272c25;
    color: #eeeee3;
    padding-top: 62px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.03fr 1.3fr .85fr;
    gap: 75px;
    padding-bottom: 55px;
}

.site-footer .brand-mark {
    fill: #c39370;
}

.site-footer .brand-wordmark strong {
    font-size: 24px;
}

.footer-brand-block > p {
    font-size: 12px;
    line-height: 1.8;
    color: #b5bbad;
    margin-top: 21px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 7px;
    letter-spacing: 1.4px;
    color: #afb5a8;
    margin-top: 25px;
}

.footer-location .status-dot {
    color: #a2ae84;
}

.site-footer h3 {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #b5bbad;
    margin-bottom: 23px;
}

.footer-contact, .footer-address {
    padding-top: 6px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: -.4px;
    padding-bottom: 10px;
    border-bottom: 1px solid #57604e;
}

.footer-email .icon {
    width: 15px;
    height: 15px;
    color: #c39370;
}

.footer-email:hover {
    color: #dfb89c;
}

.footer-phone {
    display: block;
    width: fit-content;
    color: #c6ccbd;
    font-size: 12px;
    margin-top: 17px;
}

.footer-phone:hover {
    text-decoration: underline;
}

.footer-address address {
    font-size: 10px;
    font-style: normal;
    color: #c6ccbd;
    line-height: 1.9;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #d5d8cc;
    font-size: 9px;
    margin-top: 16px;
}

.map-link .icon {
    width: 14px;
    height: 14px;
    color: #c39370;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 74px;
    border-top: 1px solid #454d3d;
    color: #a6ae9d;
    font-size: 8px;
}

.footer-bottom > span {
    font-size: 7px;
    letter-spacing: 1.5px;
}

.footer-bottom > a {
    color: #d9ddcf;
}

.footer-bottom > a > span {
    margin-left: 10px;
}

.inquiry-dialog {
    width: min(570px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    padding: 43px 38px 35px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    overflow-y: auto;
    margin: auto;
}

.inquiry-dialog::backdrop {
    background: #1d2922b3;
    backdrop-filter: blur(5px);
}

.dialog-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 29px;
    color: var(--muted);
    background: transparent;
}

.inquiry-dialog .eyebrow {
    font-size: 8px;
    margin-bottom: 15px;
}

.inquiry-dialog h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
}

#inquiry-description {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 17px 0 25px;
}

.form-row {
    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: var(--rust);
}

.form-field input, .form-field select, .form-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    border: 1px solid #d3d6c9;
    padding: 10px 11px;
    font-size: 13px;
    background: #fffefa;
    color: var(--ink);
    border-radius: 0;
}

.form-field textarea {
    resize: vertical;
    min-height: 94px;
}

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

.inquiry-result {
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.inquiry-result h3 {
    font-size: 20px;
    font-weight: 400;
}

.inquiry-result > p {
    font-size: 12px;
    color: var(--muted);
    margin-block: 10px 20px;
}

#copy-inquiry {
    display: flex;
    margin-top: 18px;
}

#copy-status {
    min-height: 20px;
    color: var(--rust);
    font-size: 11px;
    margin-bottom: 8px;
}

.edit-inquiry {
    font-size: 11px;
    color: var(--muted);
    padding: 6px 0;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (min-width: 1500px) {
    .hero-visual {
        height: 595px;
    }

    .hero h1 {
        font-size: 88px;
    }

}

@media (max-width: 1199px) {
    .site-container {
        width: calc(100% - 80px);
    }

    .hero {
        gap: 42px;
    }

    .hero h1 {
        font-size: 69px;
        letter-spacing: -4px;
    }

    .hero-visual {
        height: 523px;
    }

    .hero-actions {
        gap: 13px;
    }

    .hero-actions .button {
        padding-inline: 15px;
        gap: 10px;
    }

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

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

    .strip-grid {
        grid-template-columns: .7fr 1.25fr 1.1fr 1.15fr;
    }

    .strip-grid > a {
        padding-inline: 15px;
        font-size: 10px;
        gap: 10px;
    }

    .about {
        gap: 60px;
    }

    .about-values {
        gap: 10px;
    }

    .about-values > div {
        font-size: 9px;
    }

    .service-card {
        padding-inline: 19px;
        min-height: 354px;
    }

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

    .analytics-grid, .approach {
        gap: 65px;
    }

    .analytics h2 {
        font-size: 54px;
    }

    .approach h2 {
        font-size: 44px;
    }

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

    .footer-email {
        font-size: 20px;
        gap: 8px;
    }

}

@media (max-width: 959px) {
    .site-container {
        width: calc(100% - 64px);
    }

    .desktop-nav {
        gap: 22px;
        padding-left: 0;
    }

    .desktop-nav a {
        font-size: 11px;
    }

    .hero {
        gap: 36px;
        padding-block: 50px 64px;
    }

    .hero h1 {
        font-size: 57px;
        letter-spacing: -3.3px;
    }

    .hero .eyebrow {
        font-size: 7px;
        gap: 7px;
    }

    .hero-description {
        font-size: 12px;
    }

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

    .hero-note {
        font-size: 8px;
        margin-top: 25px;
    }

    .hero-visual {
        height: 475px;
    }

    .insight-card {
        left: -18px;
        padding: 20px 16px;
        gap: 12px;
    }

    .insight-card p {
        font-size: 19px;
    }

    .insight-card > .icon {
        margin-left: 4px;
    }

    .image-label {
        font-size: 6px;
        top: 18px;
        left: 18px;
        padding: 8px;
    }

    .image-caption {
        font-size: 8px;
    }

    .strip-intro {
        display: none;
    }

    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
        min-height: 83px;
    }

    .strip-grid > a:first-of-type {
        border-left: 0;
        padding-left: 0;
    }

    .strip-grid > a:last-child {
        padding-right: 0;
    }

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

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

    body h2 {
        font-size: 39px;
        letter-spacing: -1.7px;
    }

    .about-copy .lead {
        font-size: 17px;
    }

    .about-copy > p {
        font-size: 12px;
    }

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

    .section-description {
        max-width: 235px;
        font-size: 12px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        min-height: 312px;
        padding-inline: 25px;
    }

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

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

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

    .analytics-grid {
        gap: 36px;
        grid-template-columns: .9fr 1.1fr;
    }

    .analytics .eyebrow {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .analytics h2 {
        font-size: 45px;
    }

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

    .dashboard {
        padding: 23px 22px 18px;
    }

    .chart-bars {
        padding-inline: 10px;
        gap: 24px;
    }

    .chart-summary {
        gap: 5px;
    }

    .chart-change {
        font-size: 7px;
    }

    .chart-insight {
        font-size: 7px;
    }

    .approach {
        gap: 40px;
    }

    .approach h2 {
        font-size: 39px;
    }

    .approach-image-wrap {
        height: 565px;
    }

    .process-list h3 {
        font-size: 13px;
    }

    .contact-callout-inner {
        gap: 60px;
        grid-template-columns: 1.1fr 1fr;
    }

    .contact-callout h2 {
        font-size: 53px;
    }

    .contact-callout .eyebrow {
        font-size: 7px;
    }

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

    .footer-address {
        grid-column: 2;
    }

    .footer-brand-block {
        grid-row: span 2;
    }

}

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

    .site-container {
        width: calc(100% - 44px);
    }

    .header-inner {
        height: 82px;
    }

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

    .brand-wordmark strong {
        font-size: 21px;
    }

    .brand-wordmark > span {
        font-size: 7px;
        letter-spacing: 2.3px;
        margin-top: 6px;
    }

    .desktop-nav, .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-block: 42px 54px;
    }

    .hero-copy {
        padding: 0;
    }

    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.3px;
        margin-bottom: 25px;
    }

    .small-cross {
        font-size: 20px;
    }

    .hero h1 {
        font-size: clamp(56px, 10.8vw, 76px);
        letter-spacing: -3.4px;
        line-height: 1.06;
    }

    .hero-description {
        font-size: 13px;
        margin-top: 25px;
        max-width: 415px;
    }

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

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

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

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

    .hero-visual {
        height: 455px;
        margin-left: 12px;
    }

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

    .insight-card {
        bottom: 25px;
        left: -12px;
        padding: 22px 20px;
        gap: 15px;
    }

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

    .insight-card > .icon {
        margin-left: 10px;
    }

    .image-caption {
        font-size: 8px;
        bottom: -25px;
    }

    .strip-grid {
        grid-template-columns: 1fr;
        padding-block: 8px;
    }

    .strip-grid > a {
        border-left: 0;
        border-bottom: 1px solid #d6d8cd;
        padding: 15px 0;
        font-size: 11px;
        gap: 18px;
    }

    .strip-grid > a:last-child {
        border-bottom: 0;
    }

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

    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.5px;
        margin-bottom: 23px;
    }

    body h2 {
        font-size: clamp(37px, 7.8vw, 48px);
        letter-spacing: -1.8px;
    }

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

    .about-signature {
        margin-top: 24px;
    }

    .about-copy {
        padding: 0;
    }

    .about-copy .lead {
        font-size: 18px;
    }

    .about-copy > p {
        font-size: 13px;
    }

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

    .about-values > div {
        font-size: 9px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 30px;
    }

    .section-description {
        max-width: 350px;
        font-size: 13px;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        padding: 23px 17px 20px;
        min-height: 348px;
    }

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

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

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

    .service-toggle {
        font-size: 9px;
    }

    .expertise-footnote {
        flex-direction: column;
        gap: 13px;
        font-size: 10px;
        line-height: 1.8;
    }

    .expertise-footnote a {
        width: fit-content;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 39px;
    }

    .analytics .eyebrow {
        font-size: 8px;
    }

    .analytics h2 {
        font-size: 48px;
    }

    .analytics-copy > p:not(.eyebrow) {
        font-size: 13px;
        max-width: 400px;
    }

    .analytics-copy .text-link {
        margin-top: 20px;
    }

    .dashboard {
        padding: 25px 23px 20px;
        transform: none;
    }

    .chart-summary {
        margin-top: 22px;
    }

    .chart-change {
        font-size: 8px;
    }

    .chart {
        height: 160px;
    }

    .chart-bars {
        padding-inline: 20px;
        gap: 27px;
    }

    .chart-insight {
        font-size: 8px;
    }

    .approach {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .approach-image-wrap {
        height: 390px;
        order: 2;
    }

    .approach-copy {
        order: 1;
    }

    .approach h2 {
        font-size: 43px;
    }

    .approach-intro {
        max-width: 400px;
    }

    .process-list h3 {
        font-size: 14px;
    }

    .process-list p {
        font-size: 12px;
        max-width: none;
    }

    .process-list li {
        padding-block: 20px;
    }

    .contact-callout {
        padding-block: 56px;
    }

    .contact-callout-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-callout .eyebrow {
        font-size: 7px;
        letter-spacing: 1.1px;
        max-width: 300px;
    }

    .contact-callout h2 {
        font-size: 53px;
    }

    .contact-callout-copy {
        padding: 0;
        max-width: 360px;
    }

    .contact-decoration {
        font-size: 400px;
        bottom: -90px;
        right: -70px;
    }

    .site-footer {
        padding-top: 45px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 38px;
    }

    .footer-brand-block {
        grid-row: auto;
    }

    .footer-address {
        grid-column: auto;
    }

    .footer-brand-block > p {
        margin-top: 18px;
    }

    .footer-location {
        margin-top: 16px;
    }

    .footer-contact, .footer-address {
        padding-top: 0;
    }

    .site-footer h3 {
        margin-bottom: 15px;
    }

    .footer-email {
        font-size: 24px;
        gap: 20px;
    }

    .footer-phone {
        font-size: 13px;
    }

    .footer-address address {
        font-size: 11px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        min-height: 92px;
        padding-block: 20px;
        gap: 16px;
        font-size: 8px;
    }

    .footer-bottom > span {
        display: none;
    }

    .inquiry-dialog {
        padding: 38px 24px 27px;
    }

    .inquiry-dialog h2 {
        font-size: 34px;
    }

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

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

}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 52px;
    }

    .hero .eyebrow {
        font-size: 7px;
    }

    .hero-actions {
        gap: 15px;
    }

    .hero-visual {
        height: 400px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        min-height: 295px;
        padding-inline: 24px;
    }

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

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

    .chart-tabs {
        gap: 18px;
    }

    .chart-bars {
        gap: 20px;
        padding-inline: 10px;
    }

    .chart-change {
        font-size: 7px;
    }

    .contact-callout h2 {
        font-size: 47px;
    }

    .footer-email {
        font-size: 21px;
        gap: 10px;
    }

}

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

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

}
