:root {
    --paper: #f8f7f3;
    --ink: #242823;
    --muted: #696c65;
    --line: #dedfd6;
    --yellow: #edce54;
    --panel: #efeee8;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

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

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

body.modal-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

a, button, summary {
    touch-action: manipulation;
}

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

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

svg {
    display: block;
}

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

:focus-visible {
    outline: 2px solid #82701c;
    outline-offset: 5px;
}

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

[hidden] {
    display: none !important;
}

.site-container {
    width: min(1280px, calc(100% - 112px));
    margin-inline: auto;
}

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

.eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1.5;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.section-label > span {
    color: #777a70;
    font-size: 10px;
}

.signal-dot, .small-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
}

.signal-dot {
    margin-right: 10px;
}

body h2 {
    font-size: clamp(34px, 3.5vw, 49px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.12;
}

.button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    min-height: 50px;
    padding: 14px 23px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition: background 180ms, transform 180ms;
}

.button > span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

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

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

.button-yellow:hover {
    background: #e2bf3d;
}

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

.button-dark:hover {
    background: #444b40;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    font-weight: 500;
}

.text-link > span {
    font-size: 19px;
    transition: transform 180ms;
}

.text-link:hover > span {
    transform: translate(2px, -2px);
}

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

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

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

.header-inner {
    min-height: 100px;
    gap: 30px;
}

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

.brand-symbol {
    display: grid;
    grid-template-columns: repeat(2, 13px);
    gap: 3px;
    transform: rotate(-2deg);
}

.brand-symbol i {
    display: block;
    height: 13px;
    background: var(--ink);
}

.brand-symbol i:nth-child(2) {
    background: var(--yellow);
}

.brand-symbol i:nth-child(3) {
    border-radius: 0 0 0 7px;
}

.brand-name {
    font-size: 19px;
    font-weight: 750;
    letter-spacing: -.5px;
    line-height: 1.2;
}

.brand-name > span {
    display: block;
    margin-top: 6px;
    font-size: 6.5px;
    letter-spacing: 1.6px;
    font-weight: 500;
}

.desktop-nav {
    gap: 35px;
    margin-left: 48px;
}

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

.desktop-nav a::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--yellow);
    bottom: -7px;
    left: 0;
    right: 100%;
    transition: right 160ms;
}

.desktop-nav a:hover::after {
    right: 0;
}

.header-cta {
    min-width: 134px;
    min-height: 44px;
    padding: 11px 18px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--line);
}

.menu-toggle span {
    display: block;
    height: 1px;
    background: var(--ink);
    margin: 6px 0;
    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-menu {
    padding: 5px 24px 22px;
    border-top: 1px solid var(--line);
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.hero {
    gap: 52px;
    padding-block: 62px 65px;
}

.hero-copy {
    padding-top: 22px;
}

.hero-copy .eyebrow {
    margin-bottom: 29px;
}

.hero h1 {
    font-size: clamp(60px, 6.2vw, 88px);
    line-height: 1.015;
    letter-spacing: -4.7px;
    font-weight: 500;
}

.underlined-word {
    position: relative;
    isolation: isolate;
    display: inline-block;
}

.underlined-word::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 13px;
    background: var(--yellow);
    z-index: -1;
    transform: rotate(-1.5deg);
}

.hero-description {
    max-width: 405px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    gap: 27px;
    margin-top: 30px;
}

.hero-footnote {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 38px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.hero-footnote strong {
    color: var(--ink);
    font-weight: 500;
}

.tiny-cross {
    color: var(--ink);
    font-size: 29px;
    font-weight: 300;
}

.hero-visual {
    position: relative;
    min-height: 577px;
    margin-left: 8px;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 48% 55%;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 60% 0 0;
    background: linear-gradient(transparent, #141b1770);
    pointer-events: none;
}

.image-corner-label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.25px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    background: #2428239c;
}

.image-corner-label > span {
    height: 5px;
    width: 5px;
    background: var(--yellow);
    border-radius: 50%;
}

.insight-card {
    position: absolute;
    z-index: 2;
    left: -28px;
    bottom: 48px;
    width: 275px;
    background: var(--paper);
    padding: 22px 24px 15px;
    box-shadow: 0 10px 35px #11111112;
}

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

.insight-card-top .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
}

.insight-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    font-size: 20px;
}

.insight-card > p {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -.6px;
    line-height: 1.3;
}

.insight-chart {
    margin-top: 21px;
}

.insight-chart svg {
    overflow: visible;
    width: 100%;
}

.insight-card-bottom {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 8px;
}

.insight-card-bottom .small-dot {
    height: 5px;
    width: 5px;
    background: #728569;
}

.image-caption {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    color: #f8f7f3;
    font-size: 8px;
    letter-spacing: .4px;
}

.capability-strip {
    border-block: 1px solid var(--line);
}

.capability-grid {
    gap: 20px;
    padding-block: 27px;
}

.capability-grid > div {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.capability-grid > div + div {
    border-left: 1px solid var(--line);
}

.capability-grid svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.2;
    flex-shrink: 0;
}

.about-section {
    gap: 95px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-bottom: 31px;
}

.about-visual > img {
    width: 100%;
    height: 385px;
    object-fit: cover;
}

.about-image-note {
    position: absolute;
    bottom: 55px;
    left: -17px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--yellow);
    padding: 20px 26px;
}

.note-asterisk {
    font-size: 46px;
    line-height: 1;
}

.about-image-note p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.3px;
}

.photo-index {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    letter-spacing: 1px;
}

.photo-index > span:last-child {
    font-size: 18px;
}

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

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

.about-copy .section-description {
    color: var(--ink) !important;
    font-weight: 500;
}

.about-principles {
    gap: 15px;
    margin-top: 27px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.about-principles strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 7px;
}

.about-principles p {
    color: var(--muted);
    font-size: 10px;
    margin-top: 4px;
}

.check-icon {
    display: inline-block;
    color: var(--ink);
    font-size: 17px;
    line-height: 1;
}

.expertise-section {
    background: var(--panel);
}

.section-header {
    gap: 30px;
    margin-bottom: 47px;
}

.section-header > p {
    max-width: 340px;
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 4px;
    line-height: 1.8;
}

.services-grid {
    gap: 16px;
    align-items: start;
}

.service-card {
    background: var(--paper);
    padding: 27px 23px 0;
    border: 1px solid #e3e3da;
    transition: border-color 180ms, box-shadow 180ms;
}

.service-card:hover {
    border-color: #b8b9ac;
    box-shadow: 0 8px 20px #24282306;
}

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

.service-top svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.1;
}

.service-top > span {
    font-size: 9px;
    color: var(--muted);
}

.service-card h3 {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.7px;
    line-height: 1.23;
    margin-bottom: 17px;
}

.service-card > p {
    min-height: 104px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}

.service-detail {
    border-top: 1px solid var(--line);
    margin-top: 19px;
}

.service-detail summary {
    padding: 17px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.service-detail summary::-webkit-details-marker {
    display: none;
}

.service-detail summary > span {
    font-size: 21px;
    line-height: 1;
    transition: transform 180ms;
}

.service-detail[open] summary > span {
    transform: rotate(90deg);
}

.service-expanded {
    padding-bottom: 20px;
    font-size: 12px;
    color: var(--muted);
}

.service-expanded a {
    display: inline-block;
    color: var(--ink);
    font-weight: 600;
    margin-top: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

.expertise-note .small-dot {
    width: 5px;
    height: 5px;
    background: #8b9179;
}

.expertise-note a {
    color: var(--ink);
    margin-left: 10px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.approach-section {
    background: var(--ink);
    color: var(--paper);
}

.approach-grid {
    gap: 110px;
}

.approach-intro {
    position: relative;
}

.approach-intro .section-label {
    color: #d8dcd0;
}

.approach-intro .section-label > span {
    color: var(--yellow);
}

.approach-intro > p:not(.eyebrow) {
    max-width: 350px;
    color: #b7bdb1;
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.8;
}

.light-link {
    margin-top: 25px;
    border-bottom: 1px solid #757a6c;
    padding-bottom: 8px;
}

.approach-asterisk {
    position: absolute;
    right: 5px;
    bottom: -9px;
    color: var(--yellow);
    font-size: 107px;
    line-height: 1;
}

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

.approach-steps li {
    display: flex;
    gap: 26px;
    padding-block: 27px;
    border-top: 1px solid #53584c;
}

.approach-steps li:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    font-size: 10px;
    color: var(--yellow);
    margin-top: 5px;
}

.approach-steps h3 {
    font-size: 20px;
    letter-spacing: -.4px;
    font-weight: 400;
}

.approach-steps p {
    color: #b7bdb1;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
    max-width: 365px;
}

.contact-heading-row {
    gap: 38px;
}

.contact-heading-row h2 {
    font-size: clamp(36px, 4.1vw, 58px);
    line-height: 1.13;
    letter-spacing: -2.5px;
}

.contact-heading-row h2 > span {
    color: #74796d;
}

.contact-invitation p {
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-invitation .button {
    min-width: 278px;
}

.contact-details {
    gap: 40px;
    margin-top: 58px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.contact-item {
    min-width: 0;
}

.contact-item > .eyebrow {
    display: block;
    font-size: 8px;
    letter-spacing: 1.4px;
    color: var(--muted);
    margin-bottom: 15px;
}

.contact-value {
    font-size: 16px;
    letter-spacing: -.3px;
}

.contact-value span {
    display: inline-block;
    margin-left: 7px;
    font-size: 16px;
}

.contact-value:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.email-address {
    overflow-wrap: anywhere;
}

.contact-item address {
    max-width: 280px;
    font-size: 11px;
    font-style: normal;
    line-height: 1.8;
}

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

.footer-inner {
    gap: 25px;
    padding-block: 30px;
}

.footer-brand .brand-symbol {
    grid-template-columns: repeat(2, 10px);
    gap: 2px;
}

.footer-brand .brand-symbol i {
    height: 10px;
}

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

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

.footer-inner > p {
    font-size: 9px;
    color: var(--muted);
}

.back-to-top {
    font-size: 10px;
}

.back-to-top > span {
    margin-left: 16px;
    font-size: 17px;
}

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

dialog::backdrop {
    background: #181f1bc9;
    backdrop-filter: blur(5px);
}

.dialog-content {
    padding: 42px;
    position: relative;
}

.dialog-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    font-size: 27px;
    color: var(--ink);
}

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

.dialog-content h2 {
    font-size: 33px;
    letter-spacing: -1.4px;
    margin-bottom: 15px;
}

.dialog-content > p:not(.eyebrow) {
    font-size: 12px;
    color: var(--muted);
}

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

.form-row {
    gap: 15px;
}

#enquiry-form label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 16px;
}

#enquiry-form input, #enquiry-form select, #enquiry-form textarea {
    display: block;
    width: 100%;
    padding: 11px 12px;
    margin-top: 6px;
    border: 1px solid #c9ccc1;
    background: white;
    font-size: 13px;
    color: var(--ink);
}

#enquiry-form textarea {
    resize: vertical;
    min-height: 95px;
}

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

#enquiry-status {
    margin-top: 18px;
    font-size: 12px;
    background: #e8eadf;
    padding: 12px;
}

#email-draft-link {
    margin-top: 12px;
}

@media (min-width: 1440px) {
    .hero {
        gap: 72px;
    }
    .hero-visual {
        min-height: 610px;
    }
    .hero-copy {
        padding-top: 34px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .site-container {
        width: calc(100% - 80px);
    }
    .desktop-nav {
        gap: 23px;
        margin-left: 0;
    }
    .hero {
        gap: 37px;
    }
    .hero-actions {
        gap: 16px;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero-visual {
        min-height: 555px;
    }
    .hero h1 {
        font-size: 69px;
    }
    .about-section {
        gap: 55px;
    }
    .service-card > p {
        min-height: 60px;
        max-width: 340px;
    }
    .approach-grid {
        gap: 60px;
    }
    .contact-value {
        font-size: 14px;
    }
    .contact-details {
        gap: 28px;
    }
}

@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 56px;
        letter-spacing: -3px;
    }
    .hero-visual {
        min-height: 550px;
        margin-left: 0;
    }
    .hero-copy {
        padding-top: 10px;
    }
    .hero-copy .eyebrow {
        font-size: 8px;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .hero-description {
        margin-top: 25px;
    }
    .hero-footnote {
        margin-top: 26px;
    }
    .insight-card {
        width: 240px;
        left: -15px;
        padding-inline: 20px;
    }
    .capability-grid {
        row-gap: 25px;
    }
    .capability-grid > div:nth-child(3) {
        border-left: 0;
    }
    .section-space {
        padding-block: 80px;
    }
    .about-section {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .about-visual > img {
        height: 405px;
    }
    .about-image-note {
        padding: 16px;
        gap: 12px;
    }
    .about-image-note p {
        font-size: 14px;
    }
    .about-copy h2 {
        font-size: 34px;
    }
    .about-principles {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .check-icon {
        float: left;
        margin-right: 10px;
        margin-top: 5px;
    }
    .about-principles strong {
        margin-top: 0;
    }
    .about-principles p {
        margin-left: 25px;
    }
    .approach-grid {
        gap: 42px;
        grid-template-columns: 1fr 1fr;
    }
    .approach-intro h2 {
        font-size: 35px;
    }
    .approach-asterisk {
        position: static;
        display: block;
        margin-top: 35px;
        font-size: 75px;
    }
    .approach-steps li {
        gap: 18px;
        padding-block: 22px;
    }
    .approach-steps h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .site-container {
        width: calc(100% - 44px);
    }
    .header-inner {
        min-height: 80px;
    }
    .brand-name {
        font-size: 17px;
    }
    .brand-name > span {
        font-size: 5.5px;
        letter-spacing: 1.3px;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 39px 35px;
    }
    .hero-copy {
        padding-top: 0;
    }
    .hero-copy .eyebrow {
        font-size: 9px;
        margin-bottom: 26px;
    }
    .hero h1 {
        font-size: clamp(53px, 12.3vw, 84px);
        letter-spacing: -3px;
        line-height: 1.04;
    }
    .underlined-word::after {
        height: 10px;
        bottom: 3px;
    }
    .hero-description {
        font-size: 14px;
        max-width: 430px;
        margin-top: 24px;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: 22px;
        margin-top: 25px;
    }
    .hero-actions .text-link {
        font-size: 11px;
        gap: 12px;
    }
    .hero-actions .button {
        font-size: 11px;
        padding-inline: 18px;
        gap: 20px;
    }
    .hero-footnote {
        margin-top: 25px;
    }
    .hero-visual {
        min-height: 430px;
        margin-left: 12px;
    }
    .insight-card {
        width: 238px;
        left: -12px;
        bottom: 40px;
    }
    .image-corner-label {
        left: 13px;
        top: 13px;
        font-size: 7px;
        letter-spacing: .8px;
    }
    .capability-grid {
        column-gap: 10px;
        row-gap: 23px;
        padding-block: 25px;
    }
    .capability-grid > div {
        justify-content: flex-start;
        gap: 9px;
        font-size: 9px;
    }
    .capability-grid > div + div {
        border-left: 0;
    }
    .capability-grid svg {
        height: 20px;
        width: 20px;
    }
    .section-space {
        padding-block: 65px;
    }
    .about-section {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .about-visual > img {
        height: 315px;
    }
    .about-image-note {
        left: -10px;
        padding: 18px 22px;
    }
    .section-label {
        margin-bottom: 22px;
    }
    body h2, .about-copy h2 {
        font-size: 38px;
        letter-spacing: -1.6px;
    }
    .about-copy > p:not(.eyebrow) {
        font-size: 13px;
    }
    .about-principles {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .about-principles strong {
        font-size: 10px;
    }
    .about-principles p {
        margin-left: 0;
        font-size: 9px;
    }
    .check-icon {
        float: none;
        margin-bottom: 9px;
    }
    .section-header {
        gap: 22px;
        margin-bottom: 32px;
    }
    .section-header > p {
        font-size: 12px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .service-card {
        padding: 20px 16px 0;
    }
    .service-top {
        margin-bottom: 25px;
    }
    .service-top svg {
        width: 28px;
        height: 28px;
    }
    .service-card h3 {
        font-size: 19px;
        letter-spacing: -.6px;
    }
    .service-card > p {
        font-size: 11px;
        min-height: 120px;
    }
    .service-detail {
        margin-top: 16px;
    }
    .service-detail summary {
        font-size: 9px;
    }
    .expertise-note {
        flex-wrap: wrap;
        font-size: 9px;
        gap: 7px;
    }
    .expertise-note a {
        margin-left: 0;
    }
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .approach-intro h2 {
        font-size: 38px;
    }
    .approach-intro > p:not(.eyebrow) {
        max-width: 300px;
    }
    .approach-asterisk {
        position: absolute;
        bottom: -3px;
        right: 0;
        font-size: 60px;
        margin: 0;
    }
    .approach-steps li {
        gap: 23px;
        padding-block: 24px;
    }
    .approach-steps h3 {
        font-size: 20px;
    }
    .contact-heading-row {
        gap: 25px;
    }
    .contact-heading-row h2 {
        font-size: 37px;
        letter-spacing: -1.8px;
    }
    .contact-invitation p {
        font-size: 13px;
    }
    .contact-details {
        gap: 28px;
        margin-top: 42px;
        padding-top: 30px;
    }
    .contact-item > .eyebrow {
        margin-bottom: 10px;
    }
    .contact-value {
        font-size: 17px;
    }
    .contact-item address {
        max-width: 330px;
    }
    .footer-inner {
        align-items: flex-start;
        gap: 23px;
        padding-block: 30px;
    }
    .back-to-top {
        align-self: flex-end;
        margin-top: -43px;
    }
    .footer-inner > p {
        font-size: 8px;
    }
    .dialog-content {
        padding: 34px 23px 25px;
    }
    .dialog-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 374px) {
    .site-container {
        width: calc(100% - 36px);
    }
    .hero h1 {
        font-size: 49px;
    }
    .hero-actions {
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card > p {
        min-height: 0;
    }
    .service-card h3 br {
        display: none;
    }
    .capability-grid > div {
        font-size: 8px;
        gap: 6px;
    }
    .contact-heading-row h2 {
        font-size: 32px;
    }
}

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