:root {
    --paper: #f6f4ed;
    --ink: #26342f;
    --muted: #73796e;
    --orange: #cc5633;
    --orange-dark: #ac4123;
    --line: #dedfd5;
    --dark: #253c35;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

button, input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: wait;
}

button, a {
    touch-action: manipulation;
}

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 5px;
}

::selection {
    background: #edb998;
    color: var(--ink);
}

[hidden] {
    display: none !important;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

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

svg {
    flex-shrink: 0;
}

section[id] {
    scroll-margin-top: 32px;
}

.shell {
    width: min(1240px, calc(100% - 112px));
    margin-inline: auto;
}

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

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

.icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

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

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

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

.small-line {
    width: 26px;
    height: 1px;
    background: var(--orange);
}

.site-header {
    position: relative;
    z-index: 10;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.brand-icon {
    width: 40px;
    height: 44px;
    color: var(--orange);
}

.brand-type {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.brand-amp {
    font-weight: 400;
}

.brand-caption {
    display: block;
    margin-top: 7px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2.6px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 37px;
    margin-left: 38px;
    font-size: 12px;
}

.desktop-nav a {
    padding-block: 12px;
    transition: color 180ms ease;
}

.desktop-nav a:hover {
    color: var(--orange);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 17px 23px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    transition: background 180ms ease, transform 180ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange);
}

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

.button-outline {
    border: 1px solid #91968b;
    padding: 12px 19px;
}

.button-outline:hover {
    background: #e9e9dd;
}

.header-cta {
    gap: 24px;
}

.menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 55px;
    padding-block: 45px 78px;
}

.hero-copy {
    padding-bottom: 16px;
}

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

.hero h1 {
    font-size: clamp(60px, 6.1vw, 86px);
    font-weight: 400;
    letter-spacing: -4.8px;
    line-height: 1.04;
}

h1 > span {
    color: var(--orange);
}

.hero-description {
    max-width: 400px;
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.85;
    color: #6c746a;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 11px;
    font-weight: 600;
}

.text-link:hover {
    color: var(--orange);
}

.text-link .icon {
    width: 16px;
    height: 16px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 47px;
    font-size: 10px;
    color: #73796e;
}

.note-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    padding-bottom: 24px;
}

.hero-image-wrap {
    height: 533px;
    border-radius: 115px 5px 85px 5px;
    overflow: hidden;
    background: #d2c8b3;
}

.hero-image {
    height: 100%;
    object-position: 48% 50%;
}

.sun-seal {
    position: absolute;
    right: -31px;
    top: -28px;
    width: 104px;
    height: 104px;
    color: var(--orange);
}

.sun-seal svg {
    width: 100%;
    height: 100%;
}

.insight-card {
    position: absolute;
    left: -41px;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    width: 349px;
    background: #fbfaf4;
    border: 1px solid #e8e5dc;
    border-radius: 5px;
    box-shadow: 0 10px 35px #23322b0d;
}

.insight-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    background: #f2e9da;
    color: var(--orange);
    border-radius: 50%;
}

.insight-icon .icon {
    width: 23px;
    height: 23px;
}

.card-overline {
    display: block;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 1.3px;
    margin-bottom: 7px;
}

.insight-card strong {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.insight-sparkline {
    width: 56px;
    height: 35px;
    color: var(--orange);
    margin-left: auto;
}

.image-caption {
    position: absolute;
    right: 1px;
    bottom: 0;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 1.8px;
}

.principles {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
    gap: 25px;
    border-block: 1px solid var(--line);
    padding-block: 29px;
}

.principles > p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.7;
}

.principles > p strong {
    font-weight: 500;
    color: var(--ink);
}

.principles > div {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 11px;
}

.principle-icon {
    width: 29px;
    height: 29px;
    stroke: #586454;
    stroke-width: 1.1;
    fill: none;
}

.expertise {
    background: #fbfaf6;
    margin-top: 78px;
}

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

main h2 {
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.13;
    font-weight: 400;
    letter-spacing: -1.8px;
}

.section-heading .eyebrow, .about .eyebrow, .approach .eyebrow, .contact .eyebrow {
    margin-bottom: 20px;
}

.section-intro {
    max-width: 330px;
    font-size: 13px;
    color: #73796e;
    line-height: 1.8;
    padding-bottom: 2px;
}

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

.service-card {
    padding: 28px 28px 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    background: #f9f8f2;
    transition: border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
    border-color: #cead92;
    background: #f4f0e6;
}

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

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

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

.service-card h3 {
    margin-top: 29px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -.7px;
}

.service-card > p {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.85;
    color: #71786d;
}

.service-tags {
    margin-top: 23px;
    padding-bottom: 23px;
    font-size: 9px;
    color: #7a7d6d;
    line-height: 1.7;
}

.service-tags span {
    padding-inline: 4px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-block: 18px;
    border: none;
    border-top: 1px solid var(--line);
    background: transparent;
    font-size: 11px;
    text-align: left;
    margin-top: auto;
}

.service-link .icon {
    width: 17px;
    height: 17px;
    color: var(--orange);
    transition: transform 180ms ease;
}

.service-link:hover {
    color: var(--orange);
}

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

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
    padding-block: 118px;
}

.about-visual {
    position: relative;
}

.about-visual > img {
    height: 451px;
    border-radius: 5px 72px 5px 5px;
}

.about-image-note {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 17px 20px;
    background: #faf8f0ed;
    border-radius: 3px;
    font-size: 11px;
}

.about-copy > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.9;
    color: #71786d;
    margin-top: 17px;
}

.about-copy h2 + p {
    color: var(--ink) !important;
    font-size: 14px !important;
    max-width: 320px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 20px;
    margin-block: 26px;
}

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

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

.about-copy > .text-link {
    padding-bottom: 6px;
    border-bottom: 1px solid #a6a997;
}

.approach {
    background: var(--dark);
    color: #f7f5eb;
}

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

.approach .eyebrow {
    color: #d9b59a;
}

.approach-copy > p:not(.eyebrow) {
    max-width: 370px;
    margin-top: 23px;
    font-size: 12px;
    line-height: 1.9;
    color: #bcc6b8;
}

.approach-steps {
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.approach-steps li {
    display: flex;
    gap: 18px;
    padding-block: 18px;
    border-top: 1px solid #ffffff1c;
}

.approach-steps li > span {
    color: #d8ab8c;
    font-size: 10px;
    padding-top: 3px;
}

.approach-steps h3 {
    font-size: 13px;
    font-weight: 500;
}

.approach-steps p {
    font-size: 11px;
    line-height: 1.7;
    color: #acbbae;
    margin-top: 7px;
}

.review-card {
    background: #f8f7ef;
    border-radius: 7px;
    padding: 26px 28px 19px;
    color: var(--ink);
    transform: rotate(-1.5deg);
    box-shadow: 14px 14px 0 #ffffff06;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.review-header > span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 9px;
    letter-spacing: 1px;
}

.review-header > .icon {
    width: 23px;
    height: 23px;
    color: #7c8974;
}

.review-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.review-tabs {
    display: flex;
    border-bottom: 1px solid #dddfd3;
    gap: 25px;
}

.review-tabs button {
    position: relative;
    padding: 5px 0 12px;
    border: 0;
    background: transparent;
    color: #7c8174;
    font-size: 10px;
}

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

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

.review-panel {
    padding-top: 25px;
    min-height: 340px;
}

.chart-eyebrow {
    font-size: 7px;
    color: #7e8678;
    letter-spacing: 1.2px;
}

.review-panel h3 {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.5px;
}

.chart-description {
    color: #7c8174;
    font-size: 10px;
    line-height: 1.5;
    margin-top: 7px;
}

.chart-legend {
    display: flex;
    gap: 15px;
    font-size: 8px;
    color: #7c8174;
    margin-top: 22px;
}

.chart-legend > span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.chart-legend i {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
}

.legend-actual {
    background: var(--orange);
}

.legend-plan {
    background: #cdd2bf;
}

.chart-unit {
    margin-left: auto;
}

.bar-chart {
    position: relative;
    height: 153px;
    margin-block: 14px 26px;
    padding-left: 27px;
}

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

.chart-grid > span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 7px;
    color: #89917f;
    line-height: 0;
}

.chart-grid > span::after {
    content: "";
    display: block;
    height: 1px;
    background: #e2e4d9;
    flex: 1;
}

.chart-columns {
    display: flex;
    position: relative;
    height: 100%;
    gap: 13px;
    padding-inline: 9px;
}

.chart-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: center;
}

.bar-pair {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    flex: 1;
}

.bar-pair > i {
    width: 16px;
    height: var(--bar-height);
    background: var(--orange);
    border-radius: 2px 2px 0 0;
}

.bar-pair > i + i {
    background: #cdd2bf;
}

.chart-column > span {
    color: #7c8174;
    font-size: 8px;
    line-height: 1;
}

.review-takeaway {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #eeeee3;
    border-radius: 3px;
    font-size: 10px;
    line-height: 1.6;
    color: #7a806f;
}

.takeaway-icon {
    font-size: 27px;
    font-weight: 400;
    color: var(--orange);
}

.review-takeaway strong {
    color: var(--ink);
    font-weight: 500;
}

.review-disclaimer {
    margin-top: 17px;
    font-size: 7px;
    color: #8a8f80;
    text-align: center;
    letter-spacing: .2px;
}

.opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-block: 27px 29px;
}

.opportunity-list > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
}

.opportunity-list strong {
    font-size: 8px;
    font-weight: 400;
    color: var(--orange-dark);
}

.opportunity-track {
    height: 7px;
    background: #e6e7dc;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.opportunity-track i {
    display: block;
    height: 100%;
    background: var(--orange);
    border-radius: inherit;
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.priority-list li {
    display: flex;
    gap: 12px;
}

.priority-list li > span {
    font-size: 9px;
    color: var(--orange);
    padding-top: 2px;
}

.priority-list strong {
    display: block;
    font-size: 11px;
    font-weight: 500;
}

.priority-list p {
    font-size: 9px;
    color: #73796e;
    line-height: 1.6;
    margin-top: 4px;
}

.contact {
    padding-block: 105px 68px;
}

.contact-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 58px;
}

.contact h2 {
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -2.6px;
}

.contact h2 span {
    color: var(--orange);
}

.contact-invitation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    margin-right: 62px;
}

.contact-arrow {
    display: grid;
    place-items: center;
    width: 107px;
    height: 107px;
    background: var(--orange);
    color: #fffaf2;
    border-radius: 50%;
    transition: transform 200ms ease, background 200ms ease;
}

.contact-arrow svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1;
    fill: none;
}

.contact-invitation:hover .contact-arrow {
    transform: rotate(45deg);
    background: var(--orange-dark);
}

.contact-details {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.contact-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #7a806f;
    margin-bottom: 14px;
}

.contact-details a, .contact-details address {
    font-size: 12px;
    font-style: normal;
    line-height: 1.8;
}

.contact-details address {
    max-width: 230px;
}

.contact-details a:hover {
    color: var(--orange);
}

.contact-subtext {
    font-size: 10px;
    color: #7a806f;
    margin-top: 5px;
}

.email-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

#copy-email {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #828777;
    flex-shrink: 0;
}

#copy-email .icon {
    width: 14px;
    height: 14px;
}

#copy-email:hover {
    color: var(--orange);
}

.copy-status {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    font-size: 10px;
    color: var(--orange-dark);
}

.site-footer {
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 32px;
}

.footer-top .brand-icon {
    width: 31px;
    height: 35px;
}

.footer-top .brand-type {
    font-size: 19px;
}

.footer-top .brand-caption {
    font-size: 6px;
    letter-spacing: 2.2px;
}

.footer-top > p {
    font-size: 11px;
    color: #818575;
}

.back-top {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 10px;
}

.back-top span {
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 23px;
    border-top: 1px solid var(--line);
    font-size: 8px;
    color: #838777;
}

.service-dialog {
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    width: min(540px, calc(100% - 36px));
    max-height: calc(100dvh - 40px);
    padding: 45px;
    margin: auto;
    box-shadow: 0 30px 100px #0b211e33;
}

.service-dialog::backdrop {
    background: #142c24a6;
    backdrop-filter: blur(4px);
}

.dialog-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 13px;
    right: 15px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #e7e8dd;
    font-size: 24px;
}

.service-dialog .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
}

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

#dialog-description {
    font-size: 14px;
    line-height: 1.8;
    color: #71786d;
    margin-top: 20px;
}

.service-dialog h3 {
    font-size: 12px;
    font-weight: 600;
    margin-top: 26px;
}

#dialog-deliverables {
    list-style: none;
    padding: 0;
    margin: 15px 0 27px;
}

#dialog-deliverables li {
    font-size: 12px;
    line-height: 1.7;
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
}

#dialog-deliverables li::before {
    content: "↗";
    color: var(--orange);
    margin-right: 12px;
}

.dialog-note {
    font-size: 9px;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 15px;
}

body.dialog-open {
    overflow: hidden;
}

@media (min-width: 1500px) {
    .hero {
        gap: 85px;
    }
    .hero-image-wrap {
        height: 570px;
    }
}

@media (max-width: 1100px) {
    .shell {
        width: calc(100% - 72px);
    }
    .hero {
        gap: 32px;
    }
    .hero h1 {
        font-size: 65px;
        letter-spacing: -3.9px;
    }
    .hero-image-wrap {
        height: 510px;
    }
    .hero-actions {
        gap: 19px;
    }
    .hero-actions .button {
        padding-inline: 18px;
    }
    .hero-note {
        margin-top: 30px;
    }
    .insight-card {
        left: -20px;
        width: 310px;
        padding: 19px;
        gap: 12px;
    }
    .insight-sparkline {
        width: 40px;
    }
    .principles {
        gap: 16px;
    }
    .principles > div {
        gap: 9px;
        font-size: 10px;
    }
    .service-card {
        padding-inline: 23px;
    }
    .service-tags {
        font-size: 8px;
    }
    .about, .approach-grid {
        gap: 50px;
    }
    .contact-details {
        gap: 24px;
    }
    .contact-details a {
        font-size: 11px;
    }
    .review-card {
        padding-inline: 22px;
    }
}

@media (max-width: 800px) {
    .shell {
        width: calc(100% - 48px);
    }
    .header-inner {
        min-height: 90px;
    }
    .desktop-nav {
        gap: 22px;
        margin-left: 0;
        font-size: 11px;
    }
    .header-cta {
        display: none;
    }
    .hero {
        gap: 26px;
        padding-block: 34px 58px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .hero h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }
    .hero-description {
        font-size: 12px;
        margin-top: 22px;
    }
    .hero-image-wrap {
        height: 475px;
        border-top-left-radius: 85px;
    }
    .sun-seal {
        width: 80px;
        height: 80px;
        right: -15px;
        top: -18px;
    }
    .insight-card {
        left: -17px;
        width: 265px;
        padding: 17px;
        gap: 11px;
    }
    .insight-card strong {
        font-size: 12px;
    }
    .insight-sparkline {
        display: none;
    }
    .principles {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .principles > div {
        font-size: 11px;
    }
    .expertise {
        margin-top: 58px;
    }
    .section-space {
        padding-block: 72px;
    }
    .section-heading {
        gap: 30px;
    }
    .section-intro {
        max-width: 265px;
        font-size: 12px;
    }
    .service-grid {
        gap: 12px;
    }
    .service-card {
        padding: 22px 17px 0;
    }
    .service-card h3 {
        font-size: 23px;
    }
    .service-card > p {
        font-size: 11px;
    }
    .service-tags {
        line-height: 1.8;
    }
    .service-link {
        font-size: 10px;
    }
    .about {
        gap: 32px;
    }
    .about-visual > img {
        height: 470px;
    }
    .about-image-note {
        left: 13px;
        right: 13px;
        font-size: 9px;
        padding-inline: 12px;
    }
    .about-copy h2 {
        font-size: 34px;
    }
    .approach-grid {
        gap: 32px;
        grid-template-columns: 1fr;
    }
    .approach-copy {
        max-width: 600px;
    }
    .approach-copy > p:not(.eyebrow) {
        max-width: 500px;
    }
    .review-card {
        width: min(100%, 490px);
        justify-self: center;
        margin-top: 15px;
    }
    .contact-invitation {
        margin-right: 20px;
    }
    .contact-details {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .contact-details > div:last-child {
        grid-column: 2;
        grid-row: 1 / 3;
    }
    .footer-top > p {
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    .shell {
        width: calc(100% - 40px);
    }
    .header-inner {
        min-height: 85px;
    }
    .brand-icon {
        width: 34px;
        height: 38px;
    }
    .brand-type {
        font-size: 21px;
    }
    .brand-caption {
        font-size: 7px;
        letter-spacing: 2.2px;
    }
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 4px;
        background: transparent;
    }
    .menu-toggle span {
        width: 18px;
        height: 1px;
        background: var(--ink);
        transition: transform 180ms ease;
    }
    .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: flex;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        padding: 12px 20px;
        background: #fbfaf4;
        border: 1px solid var(--line);
        border-radius: 5px;
        box-shadow: 0 15px 30px #23322b12;
    }
    .mobile-nav a {
        padding-block: 14px;
        font-size: 14px;
        border-bottom: 1px solid var(--line);
    }
    .mobile-nav a:last-child {
        border-bottom: 0;
        color: var(--orange);
    }
    .hero {
        grid-template-columns: 1fr;
        padding-block: 30px 42px;
        gap: 39px;
    }
    .hero-copy {
        padding-bottom: 0;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.3px;
        margin-bottom: 23px;
    }
    .hero h1 {
        font-size: clamp(51px, 13.5vw, 78px);
        letter-spacing: -3px;
        line-height: 1.06;
    }
    .hero-description {
        font-size: 13px;
        line-height: 1.85;
        max-width: 370px;
    }
    .hero-actions {
        gap: 20px;
        margin-top: 27px;
    }
    .hero-actions .button {
        font-size: 11px;
        gap: 13px;
        padding: 15px 16px;
    }
    .hero-actions .text-link {
        font-size: 10px;
        gap: 7px;
    }
    .hero-note {
        margin-top: 24px;
        font-size: 9px;
    }
    .hero-visual {
        margin-inline: 11px 8px;
        padding-bottom: 22px;
    }
    .hero-image-wrap {
        height: 410px;
        border-radius: 85px 5px 68px 5px;
    }
    .hero-image {
        object-position: 50% 58%;
    }
    .sun-seal {
        right: -16px;
        top: -15px;
        width: 81px;
        height: 81px;
    }
    .insight-card {
        left: -11px;
        bottom: 49px;
        width: 278px;
        padding: 18px;
    }
    .insight-card strong {
        font-size: 13px;
    }
    .insight-sparkline {
        display: block;
        width: 37px;
    }
    .image-caption {
        font-size: 6px;
    }
    .principles {
        grid-template-columns: 1fr 1fr;
        gap: 25px 16px;
        padding-block: 25px;
    }
    .principles > div {
        font-size: 9px;
        gap: 8px;
        line-height: 1.5;
    }
    .principles > p {
        font-size: 10px;
    }
    .principle-icon {
        width: 25px;
        height: 25px;
    }
    .expertise {
        margin-top: 45px;
    }
    .section-space {
        padding-block: 58px;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 23px;
        margin-bottom: 29px;
    }
    main h2 {
        font-size: 36px;
        letter-spacing: -1.6px;
    }
    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    .section-heading .eyebrow, .about .eyebrow, .approach .eyebrow, .contact .eyebrow {
        margin-bottom: 17px;
    }
    .section-intro {
        max-width: 370px;
        font-size: 12px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 26px 26px 0;
    }
    .service-card h3 {
        font-size: 28px;
        margin-top: 22px;
    }
    .service-card > p {
        font-size: 12px;
        max-width: 370px;
    }
    .service-tags {
        font-size: 9px;
    }
    .service-link {
        font-size: 11px;
        padding-block: 20px;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .about-visual > img {
        height: 330px;
        border-top-right-radius: 60px;
    }
    .about-image-note {
        font-size: 11px;
        padding: 17px;
        left: 20px;
        right: 20px;
    }
    .about-copy h2 {
        font-size: 36px;
    }
    .about-copy > p:not(.eyebrow) {
        font-size: 13px;
    }
    .about-copy h2 + p {
        max-width: 340px;
    }
    .about-values {
        gap: 16px;
    }
    .about-values > span {
        font-size: 10px;
    }
    .approach-grid {
        gap: 27px;
    }
    .approach-copy > p:not(.eyebrow) {
        font-size: 13px;
    }
    .approach-steps {
        margin-top: 27px;
    }
    .approach-steps p {
        font-size: 12px;
    }
    .review-card {
        padding: 23px 19px 19px;
        transform: none;
        box-shadow: none;
    }
    .review-tabs {
        gap: 23px;
    }
    .review-tabs button {
        font-size: 10px;
    }
    .review-panel h3 {
        font-size: 19px;
    }
    .chart-columns {
        padding-inline: 6px;
        gap: 7px;
    }
    .bar-pair {
        gap: 4px;
    }
    .bar-pair > i {
        width: 13px;
    }
    .chart-unit {
        font-size: 7px;
    }
    .contact-heading {
        align-items: flex-start;
        gap: 25px;
        padding-bottom: 36px;
    }
    .contact h2 {
        font-size: clamp(33px, 8.5vw, 46px);
        letter-spacing: -1.7px;
    }
    .contact-invitation {
        margin: 35px 0 0;
        flex-shrink: 0;
        gap: 0;
    }
    .contact-arrow {
        width: 65px;
        height: 65px;
    }
    .contact-arrow svg {
        width: 27px;
        height: 27px;
    }
    .contact-invitation > span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
    }
    .contact-details {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .contact-details > div:last-child {
        grid-column: auto;
        grid-row: auto;
    }
    .contact-details a, .contact-details address {
        font-size: 13px;
    }
    .contact-label {
        font-size: 9px;
        margin-bottom: 10px;
    }
    .contact-subtext {
        font-size: 11px;
    }
    .copy-status:empty {
        display: none;
    }
    .footer-top {
        flex-wrap: wrap;
        gap: 25px;
        padding-block: 27px;
    }
    .footer-top > p {
        order: 3;
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 11px;
        font-size: 8px;
        line-height: 1.7;
    }
    .service-dialog {
        padding: 42px 25px 28px;
    }
    .service-dialog h2 {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        transition: none !important;
    }
}
