:root {
    --paper: #f7f6f2;
    --ink: #292c29;
    --muted: #6b6e67;
    --accent: #944532;
    --accent-dark: #783625;
    --line: #dcded5;
    --panel: #efeee8;
}

* {
    box-sizing: border-box;
}

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

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

body.modal-open {
    overflow: hidden;
}

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

button, input {
    font: inherit;
}

button, a, dialog {
    outline-offset: 6px;
}

:focus-visible {
    outline: 2px solid var(--accent);
}

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: default;
}

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

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

em {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

body h2 {
    font-size: clamp(34px, 3.35vw, 48px);
    line-height: 1.14;
    letter-spacing: -1.9px;
    font-weight: 500;
}

h2 em {
    color: var(--accent);
}

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

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-end { align-items: end; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

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

.icon, .service-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

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

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

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.header-inner {
    min-height: 108px;
}

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

.brand-mark {
    width: 38px;
    height: 39px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    transform: skewY(-12deg);
}

.brand-mark i {
    display: block;
    width: 10px;
    background: var(--accent);
}

.brand-mark i:nth-child(1) { height: 23px; }
.brand-mark i:nth-child(2) { height: 31px; }
.brand-mark i:nth-child(3) { height: 39px; }

.brand-wordmark {
    font-size: 34px;
    line-height: .95;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.brand-wordmark > span {
    display: block;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 2.1px;
    margin-top: 7px;
}

.desktop-nav {
    display: flex;
    gap: 36px;
    margin-left: 80px;
    font-size: 13px;
}

.desktop-nav a, .mobile-nav a {
    transition: color .2s;
}

.desktop-nav a:hover, .mobile-nav a:hover {
    color: var(--accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 53px;
    padding: 14px 23px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
}

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

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

.button-outline {
    border-color: #aaada4;
    min-height: 45px;
    padding: 10px 18px;
    gap: 32px;
}

.button-outline:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.button-primary {
    background: var(--accent);
    color: #fffaf4;
}

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

.menu-toggle, .mobile-nav {
    display: none;
}

.hero {
    grid-template-columns: 1.06fr 1fr;
    gap: 70px;
    padding-top: 53px;
    padding-bottom: 58px;
    align-items: center;
}

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

.accent-square {
    display: inline-block;
    height: 6px;
    width: 6px;
    flex-shrink: 0;
    background: var(--accent);
}

.hero h1 {
    margin: 29px 0 26px;
    font-size: clamp(62px, 6.4vw, 90px);
    font-weight: 500;
    letter-spacing: -4.8px;
    line-height: 1.025;
}

.hero h1 em {
    color: var(--accent);
    letter-spacing: -4px;
}

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

.hero-actions {
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

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

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

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

.hero-footnote {
    margin-top: 47px;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .1px;
}

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

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

.hero-photo {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.hero-photo img {
    height: 100%;
    object-position: center;
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 70% 0 0;
    background: linear-gradient(transparent, #161d1980);
}

.hero-photo figcaption {
    position: absolute;
    bottom: 26px;
    right: 20px;
    left: 20px;
    text-align: right;
    z-index: 1;
    font-size: 8px;
    letter-spacing: 1.3px;
    color: #fff;
}

.image-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    background: #fff;
}

.insight-card {
    position: absolute;
    left: -36px;
    bottom: 79px;
    width: 217px;
    padding: 22px 22px 17px;
    background: #fbfaf6;
    box-shadow: 0 8px 35px #151e1712;
    z-index: 2;
}

.insight-card-top {
    gap: 10px;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 1.05px;
}

.insight-card-top .icon {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.insight-card p {
    margin-top: 14px;
    font-size: 25px;
    line-height: 1.13;
    letter-spacing: -.8px;
}

.insight-card p em {
    color: var(--accent);
}

.progress-graphic {
    position: relative;
    height: 57px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin-top: 18px;
    padding-inline: 5px;
}

.progress-graphic > span {
    flex: 1;
    height: var(--bar-height);
    background: #bf8e7c;
    z-index: 1;
}

.progress-graphic > span:nth-last-child(-n+3) {
    background: var(--accent);
}

.progress-grid {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to top, var(--line) 0, var(--line) 1px, transparent 1px, transparent 19px);
}

.chart-labels {
    margin-top: 8px;
    font-size: 6px;
    letter-spacing: .6px;
    color: var(--muted);
}

.visual-index {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 8px;
    letter-spacing: 1.3px;
    color: var(--muted);
}

.value-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.value-strip-inner {
    min-height: 105px;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.value-strip p {
    font-size: 11px;
    line-height: 1.8;
    color: var(--muted);
}

.value-strip strong {
    font-weight: 400;
    color: var(--ink);
}

.value-strip-inner > span {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    letter-spacing: -.3px;
}

.value-strip i {
    font-size: 26px;
    line-height: 1;
    font-style: normal;
    color: var(--accent);
}

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

.section-label {
    margin-bottom: 28px;
}

.section-number {
    margin-right: 3px;
    color: var(--accent);
    letter-spacing: 1px;
}

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

.about-copy p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
    max-width: 505px;
}

.about-copy .lead-copy {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -.35px;
    max-width: 420px;
}

.about-copy .text-link {
    margin-top: 3px;
    border-bottom: 1px solid #a2a497;
    padding-bottom: 7px;
}

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

.section-heading {
    align-items: end;
    gap: 40px;
    margin-bottom: 43px;
}

.section-intro {
    padding-bottom: 5px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

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

.service-card {
    padding: 28px 24px 22px;
    border: 1px solid #d8d9cf;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    transition: transform .2s, border-color .2s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

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

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

.service-icon {
    width: 36px;
    height: 36px;
    stroke-width: 1.3;
    color: var(--accent);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.65px;
    margin-bottom: 19px;
}

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

.service-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 8px;
    padding: 16px 0 0;
    background: transparent;
    color: var(--ink);
    border: 0;
    border-top: 1px solid var(--line);
    margin-top: auto;
    font-size: 11px;
}

.service-link .icon {
    width: 18px;
    height: 18px;
}

.service-card:nth-child(2) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff9ef;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(2) .service-link {
    color: #fff9ef;
}

.service-card:nth-child(2) > p,
.service-card:nth-child(2) .service-top > span {
    color: #f0dcd3;
}

.service-card:nth-child(2) .service-link {
    border-top-color: #ffffff35;
}

.service-card:nth-child(2) :focus-visible {
    outline-color: white;
}

.expertise-note {
    gap: 10px;
    font-size: 10px;
    line-height: 1.7;
    color: var(--muted);
    margin-top: 27px;
}

.expertise-note .accent-square {
    width: 4px;
    height: 4px;
}

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

.approach-photo {
    position: relative;
    align-self: stretch;
    min-height: 520px;
}

.approach-photo img {
    height: 100%;
    position: absolute;
    inset: 0;
    object-position: 49% center;
}

.approach-photo figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px 30px 23px 0;
    font-size: 13px;
    background: var(--paper);
}

.approach-copy .section-label {
    margin-bottom: 23px;
}

.approach-copy h2 {
    font-size: clamp(34px, 3vw, 43px);
}

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

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

.approach-steps li {
    display: flex;
    gap: 23px;
    padding-block: 20px;
    border-top: 1px solid var(--line);
}

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

.step-number {
    padding-top: 3px;
    color: var(--accent);
    font-size: 11px;
}

.approach-steps h3 {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -.2px;
    margin-bottom: 7px;
}

.approach-steps p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
    max-width: 375px;
}

.contact-section {
    color: #fff8ee;
    background: #813f31;
    padding-top: 75px;
}

.contact-section :focus-visible {
    outline-color: #fff8ee;
}

.contact-section .accent-square {
    background: #e7b4a0;
}

.contact-section .eyebrow {
    color: #edd4c8;
    font-size: 9px;
}

.contact-main {
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 70px;
}

.contact-main h2 {
    font-size: clamp(40px, 3.9vw, 55px);
    letter-spacing: -2px;
}

.contact-main h2 em {
    color: #ecd4c4;
}

.contact-invitation {
    padding-top: 37px;
}

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

.button-light {
    background: #f5f0e6;
    color: #703727;
    gap: 50px;
}

.button-light:hover {
    background: white;
}

.contact-note {
    display: block;
    font-size: 9px;
    letter-spacing: .15px;
    margin-top: 13px;
    color: #e3c1b3;
}

.contact-details {
    border-top: 1px solid #ffffff30;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 50px;
    padding-block: 43px;
}

.footer-brand .brand-mark i {
    background: #f0d8c9;
}

.footer-brand .brand-wordmark {
    font-size: 31px;
}

.footer-brand .brand-wordmark > span {
    font-size: 7px;
}

.footer-brand .brand-mark {
    transform: scale(.9) skewY(-12deg);
    transform-origin: left center;
}

.footer-brand-block > p {
    font-size: 11px;
    line-height: 1.75;
    color: #e4c6b9;
    margin-top: 19px;
}

.contact-detail h3 {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #e3c1b3;
    margin-bottom: 13px;
}

.contact-detail > a {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
}

.contact-detail > a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-detail .phone-label {
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-detail address {
    font-size: 12px;
    font-style: normal;
    line-height: 1.9;
}

.location-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    color: #e3c1b3;
    margin-top: 17px;
}

.location-dot {
    width: 5px;
    height: 5px;
    background: #e3c1b3;
    border-radius: 50%;
}

.footer-bottom {
    gap: 20px;
    border-top: 1px solid #ffffff30;
    padding-block: 21px;
    color: #e1bdae;
    font-size: 9px;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff8ee;
}

.footer-bottom a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-dialog {
    position: fixed;
    inset: 0;
    width: min(570px, calc(100% - 32px));
    max-height: calc(100% - 40px);
    margin: auto;
    padding: 45px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    overflow-y: auto;
    box-shadow: 0 20px 90px #0003;
}

.service-dialog::backdrop {
    background: #20231dd1;
    backdrop-filter: blur(5px);
}

.dialog-close {
    position: absolute;
    right: 12px;
    top: 10px;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 29px;
    font-weight: 300;
    background: transparent;
    border: 0;
    color: var(--muted);
}

.dialog-close:hover {
    color: var(--accent);
}

.service-dialog h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    margin-top: 22px;
}

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

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

#dialog-outcomes {
    list-style: none;
    padding: 0;
    margin: 13px 0 28px;
}

#dialog-outcomes li {
    position: relative;
    padding: 10px 0 10px 18px;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid var(--line);
}

#dialog-outcomes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 5px;
    height: 5px;
    background: var(--accent);
}

.dialog-note {
    margin-top: 16px;
    font-size: 10px;
    line-height: 1.8;
    color: var(--muted);
}

.dialog-note a {
    text-decoration: underline;
}

@media (min-width: 1500px) {
    .hero {
        gap: 100px;
        padding-block: 65px;
    }

    .hero-photo {
        height: 620px;
    }
}

@media (max-width: 1100px) {
    .shell {
        width: calc(100% - 72px);
    }

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

    .hero {
        gap: 50px;
    }

    .hero-photo {
        height: 540px;
    }

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

    .hero-actions {
        gap: 14px;
    }

    .hero-footnote {
        margin-top: 28px;
    }

    .about-grid, .approach-grid {
        gap: 50px;
    }

    .service-card {
        padding-inline: 18px;
    }

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

    .contact-details {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 62px;
        letter-spacing: -3px;
    }

    .hero h1 em {
        letter-spacing: -3px;
    }

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

    .hero-photo {
        height: 550px;
    }

    .insight-card {
        left: -22px;
        width: 190px;
        padding: 18px;
    }

    .hero-photo figcaption {
        font-size: 6px;
        right: 12px;
    }

    .value-strip-inner {
        grid-template-columns: 1.2fr 1fr 1fr;
        padding-block: 20px;
    }

    .value-strip-inner > span {
        font-size: 12px;
    }

    .value-strip-inner > span:last-child {
        grid-column: 2 / 4;
    }

    .value-strip-inner > p {
        grid-row: 1 / 3;
    }

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

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

    .service-card {
        padding: 26px;
    }

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

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

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 22px;
    }

    .contact-main {
        gap: 30px;
        grid-template-columns: 1.25fr 1fr;
    }

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

    .footer-brand-block {
        grid-row: 1 / 3;
    }
}

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

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

    .header-inner {
        min-height: 86px;
    }

    .brand-wordmark {
        font-size: 31px;
    }

    .brand-wordmark > span {
        font-size: 7px;
    }

    .brand-mark {
        transform: scale(.87) skewY(-12deg);
        transform-origin: left center;
        margin-right: -4px;
    }

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

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 1px solid var(--line);
        width: 44px;
        height: 44px;
    }

    .menu-toggle span {
        width: 18px;
        height: 1px;
        background: var(--ink);
        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:not([hidden]) {
        display: flex;
        flex-direction: column;
        padding: 10px 22px 22px;
        border-top: 1px solid var(--line);
    }

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

    .hero {
        grid-template-columns: 1fr;
        gap: 39px;
        padding-top: 37px;
        padding-bottom: 33px;
    }

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

    .hero h1 {
        font-size: clamp(64px, 11vw, 82px);
        margin-block: 23px;
        letter-spacing: -3.7px;
    }

    .hero-description {
        max-width: 440px;
        line-height: 1.8;
    }

    .hero-actions {
        margin-top: 25px;
        gap: 20px;
    }

    .hero-footnote {
        margin-top: 26px;
        font-size: 9px;
    }

    .hero-visual {
        padding-bottom: 23px;
    }

    .hero-photo {
        height: 480px;
    }

    .hero-photo img {
        object-position: center 58%;
    }

    .hero-photo figcaption {
        font-size: 7px;
        right: 18px;
        bottom: 22px;
    }

    .insight-card {
        width: 194px;
        left: -10px;
        bottom: 75px;
        padding: 19px;
    }

    .value-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 22px 15px;
        padding-block: 27px;
    }

    .value-strip-inner > p {
        grid-row: auto;
        font-size: 10px;
    }

    .value-strip-inner > span {
        font-size: 11px;
        gap: 8px;
    }

    .value-strip-inner > span:last-child {
        grid-column: auto;
    }

    .value-strip i {
        font-size: 23px;
    }

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

    .section-label {
        font-size: 9px;
        margin-bottom: 23px;
    }

    body h2 {
        font-size: clamp(35px, 6vw, 44px);
        letter-spacing: -1.4px;
    }

    .about-grid, .approach-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .about-copy p {
        font-size: 13px;
        max-width: none;
    }

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

    .section-heading {
        margin-bottom: 30px;
    }

    .section-intro {
        max-width: 340px;
        font-size: 12px;
    }

    .desktop-break {
        display: none;
    }

    .approach-grid {
        gap: 40px;
    }

    .approach-photo {
        min-height: 400px;
    }

    .approach-photo figcaption {
        font-size: 11px;
        padding: 20px 25px 20px 0;
    }

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

    .contact-section {
        padding-top: 57px;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 48px;
    }

    .contact-main h2 {
        font-size: clamp(36px, 6.5vw, 48px);
        letter-spacing: -1.2px;
    }

    .contact-invitation {
        padding-top: 0;
    }

    .contact-invitation > p {
        font-size: 12px;
    }

    .contact-details {
        gap: 33px;
        padding-block: 33px;
    }

    .footer-brand-block {
        grid-column: 1 / 3;
        grid-row: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

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

    .contact-detail > a {
        font-size: 12px;
        gap: 6px;
    }

    .contact-detail address {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 8px;
        gap: 12px;
    }

    .service-dialog {
        padding: 39px 25px 28px;
    }

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

@media (max-width: 540px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-photo {
        height: 410px;
    }

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

    .service-card {
        padding: 24px;
    }

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

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

    .service-card h3 {
        margin-bottom: 13px;
    }

    .service-card > p {
        margin-bottom: 22px;
    }

    .approach-photo {
        min-height: 355px;
    }

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

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

    .contact-detail > a {
        font-size: 14px;
        gap: 15px;
    }

    .contact-detail address {
        font-size: 12px;
    }
}

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

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