:root {
    --paper: #f7f7ef;
    --ink: #203e34;
    --muted: #6a726a;
    --lime: #d5e89a;
    --line: #dcded3;
    --white: #fffefa;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 35px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input, textarea, select {
    font: inherit;
}
button, a {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: wait;
    opacity: .7;
}
button, body input, body select, body textarea {
    border-radius: 0;
}
img {
    display: block;
    max-width: 100%;
}
button:focus-visible, a:focus-visible {
    outline: 3px solid #849a43;
    outline-offset: 5px;
}
::selection {
    background: var(--lime);
    color: var(--ink);
}
[hidden] {
    display: none !important;
}
body .container {
    width: min(1280px, calc(100% - 112px));
    margin-inline: auto;
    max-width: 1280px;
}
.skip-link {
    position: absolute;
    left: 20px;
    top: -100px;
    padding: 12px 20px;
    background: var(--ink);
    color: white;
    z-index: 20;
}
.skip-link:focus {
    top: 10px;
}
.site-header {
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: 103px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    flex-shrink: 0;
}
.brand-mark {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 36px;
    transform: skew(-19deg);
}
.brand-mark i {
    width: 8px;
    height: 26px;
    background: currentColor;
}
.brand-mark i:first-child {
    height: 18px;
}
.brand-mark i:last-child {
    height: 34px;
}
.brand-name {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}
.brand-legal {
    font-size: 11px;
    letter-spacing: -.2px;
    font-weight: 400;
}
.desktop-nav {
    display: flex;
    gap: 36px;
    margin-left: 25px;
}
.desktop-nav a {
    font-size: 13px;
    padding: 14px 0;
    transition: color .2s;
}
.desktop-nav a:hover {
    color: #7b8d41;
}
.header-contact {
    display: flex;
    gap: 36px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
    padding: 12px 0;
}
.header-contact span {
    font-size: 22px;
    line-height: 1;
}
.menu-toggle {
    display: none;
}
.mobile-nav {
    display: none;
}
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    padding-top: 52px;
    padding-bottom: 54px;
    align-items: center;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 1.5;
}
.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #718848;
    flex-shrink: 0;
}
.hero-copy {
    padding-top: 6px;
}
body h1 {
    font-size: clamp(54px, 5.45vw, 79px);
    line-height: 1.06;
    letter-spacing: -4.5px;
    font-weight: 500;
    margin: 27px 0 24px;
}
em {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -.045em;
}
h1 em {
    font-size: 1.055em;
    line-height: 1.1;
}
.hero-description {
    color: var(--muted);
    max-width: 397px;
    font-size: 15px;
    line-height: 1.85;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 27px;
    margin-top: 31px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 17px 22px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    transition: background .2s, transform .2s;
}
.button span {
    font-size: 20px;
    line-height: 1;
}
.button-dark {
    color: var(--white);
    background: var(--ink);
}
.button-dark:hover {
    background: #35594a;
    transform: translateY(-2px);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 0;
}
.text-link span {
    font-size: 19px;
    transition: transform .2s;
}
.text-link:hover span {
    transform: translate(2px, -2px);
}
.hero-footnote {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    letter-spacing: .15px;
    margin-top: 39px;
    color: var(--muted);
}
.small-cross {
    color: var(--ink);
    font-size: 19px;
}
.hero-visual {
    position: relative;
    margin-left: 10px;
}
.hero-image {
    width: 100%;
    height: 545px;
    object-fit: cover;
    object-position: center 44%;
    border-radius: 3px;
}
.image-corner {
    position: absolute;
    top: 18px;
    right: 19px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 10px #0007;
}
.image-corner > span:first-child {
    font-size: 34px;
    font-family: Georgia, serif;
}
.image-corner > span:last-child {
    font-size: 7px;
    letter-spacing: 1.6px;
    line-height: 1.6;
}
.insight-card {
    position: absolute;
    bottom: 36px;
    left: -29px;
    width: 302px;
    background: var(--paper);
    padding: 21px 24px 23px;
    box-shadow: 0 10px 30px #152d2412;
    border: 1px solid #ffffff80;
}
.insight-heading {
    display: flex;
    align-items: center;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.2px;
    gap: 7px;
}
.insight-dot {
    width: 5px;
    height: 5px;
    background: #799445;
    border-radius: 50%;
}
.insight-heading > span:last-child {
    margin-left: auto;
    font-size: 16px;
}
.insight-body {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 15px;
    gap: 14px;
}
.insight-body p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    letter-spacing: -.3px;
}
.insight-body strong {
    font-weight: 500;
}
.insight-body svg {
    width: 86px;
    height: 50px;
}
.photo-label {
    position: absolute;
    right: 0;
    bottom: -23px;
    font-size: 7px;
    letter-spacing: 1.4px;
    color: var(--muted);
}
.expertise-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}
.expertise-strip > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
}
.expertise-strip > span > span {
    font-size: 23px;
    font-weight: 400;
    color: #738251;
}
.section-space {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-number {
    color: #8a9382;
    letter-spacing: 0;
    margin-right: 3px;
}
body h2 {
    font-size: clamp(36px, 3.1vw, 47px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1.8px;
    margin: 23px 0 0;
}
h2 em {
    font-size: 1.06em;
}
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.about-copy {
    padding-top: 2px;
    max-width: 490px;
}
.about-copy .lead {
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -.5px;
    margin: 0 0 19px;
}
.about-copy p:not(.lead) {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.85;
    margin: 0 0 15px;
}
.about-copy .text-link {
    margin-top: 6px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 9px;
}
.services-section {
    background: #eeefe7;
}
.section-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 42px;
}
.section-intro {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 320px;
    margin: 0 3px 6px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 385px;
    background: var(--paper);
    padding: 28px;
    border: 1px solid #dedfd5;
}
.service-featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.card-top > span {
    font-size: 10px;
    color: #8a9382;
}
.service-icon {
    width: 39px;
    height: 39px;
}
.service-featured .service-icon {
    color: var(--lime);
}
.service-card h3 {
    font-size: 25px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -.8px;
    margin: 25px 0 15px;
}
.service-card p {
    font-size: 12px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 320px;
    margin-bottom: 20px;
}
.service-featured p {
    color: #c0cbbd;
}
.service-tags {
    font-size: 8px;
    letter-spacing: .1px;
    color: var(--muted);
    margin-top: auto;
    padding-bottom: 19px;
}
.service-featured .service-tags {
    color: #b3c3ac;
}
.service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 17px 0 0;
    font-size: 11px;
    text-align: left;
}
.service-link > span {
    font-size: 22px;
    line-height: 1;
    transition: transform .2s;
}
.service-link:hover > span {
    transform: translate(3px, -3px);
}
.service-featured .service-link {
    border-color: #526354;
    color: var(--lime);
}
.review-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 84px;
}
.review-image-wrap {
    position: relative;
    align-self: stretch;
    min-height: 430px;
}
.review-image-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 55% center;
}
.image-caption {
    position: absolute;
    bottom: 20px;
    left: 22px;
    color: white;
    font-size: 8px;
    letter-spacing: 1.7px;
    text-shadow: 0 1px 6px #0009;
}
.review-copy h2 {
    font-size: clamp(35px, 3vw, 44px);
    margin: 21px 0;
}
.review-copy > p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 405px;
}
.review-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 27px;
    display: grid;
    gap: 12px;
}
.review-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}
.review-list li span {
    display: grid;
    place-items: center;
    font-size: 10px;
    background: #e8edde;
    width: 19px;
    height: 19px;
    border-radius: 50%;
}
.approach-section {
    background: #eeefe7;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
    padding-top: 10px;
}
.step-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 18px;
    border-bottom: 1px solid #cbd1c2;
}
.step-line > span:first-child {
    color: #7c886e;
    font-size: 12px;
}
.step-line > span:last-child {
    font-size: 21px;
}
.process-step h3 {
    font-size: 22px;
    letter-spacing: -.6px;
    font-weight: 400;
    margin: 24px 0 13px;
}
.process-step p {
    font-size: 12px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 315px;
}
.contact-footer {
    background: var(--ink);
    color: var(--paper);
    padding-top: 83px;
}
.contact-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 67px;
}
.contact-footer .eyebrow {
    color: #c2cdb9;
}
.contact-footer .status-dot {
    background: var(--lime);
}
.contact-top h2 {
    font-size: clamp(40px, 4.15vw, 61px);
    margin-top: 25px;
    letter-spacing: -2.1px;
}
.contact-top h2 em {
    color: var(--lime);
}
.contact-top p {
    color: #b7c5b8;
    font-size: 13px;
    margin-top: 24px;
}
.contact-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    border: 0;
    background: var(--lime);
    color: var(--ink);
    gap: 10px;
    margin-right: 23px;
    flex-shrink: 0;
    transition: transform .25s, background .25s;
}
.contact-circle > span:first-child {
    font-size: 49px;
    line-height: 1;
    font-weight: 300;
}
.contact-circle > span:last-child {
    font-size: 9px;
    letter-spacing: 1.5px;
}
.contact-circle:hover {
    transform: rotate(7deg);
    background: #e2f3b7;
}
.footer-details {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.1fr;
    gap: 45px;
    border-top: 1px solid #4a5f50;
    padding: 45px 0 43px;
}
.footer-brand-block .brand {
    transform-origin: left;
    transform: scale(.86);
}
.footer-brand-block > p {
    color: #b7c5b8;
    font-size: 11px;
    line-height: 1.7;
    margin-top: 17px;
}
.contact-detail h3 {
    font-size: 8px;
    letter-spacing: 1.7px;
    font-weight: 400;
    color: #afbea9;
    margin: 7px 0 20px;
}
.contact-detail a {
    display: block;
    font-size: 13px;
    margin-bottom: 12px;
    width: fit-content;
}
.contact-detail a span {
    margin-left: 10px;
}
.contact-detail a:hover {
    color: var(--lime);
}
.contact-detail address {
    font-size: 12px;
    line-height: 1.85;
    font-style: normal;
}
.location-note {
    display: block;
    font-size: 9px;
    margin-top: 16px;
    color: #afbea9;
}
.footer-bottom {
    border-top: 1px solid #4a5f50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0 26px;
    font-size: 9px;
    color: #afbea9;
}
.footer-bottom a {
    color: var(--paper);
}
.footer-bottom a span {
    margin-left: 12px;
}

dialog {
    width: min(580px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    padding: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    margin: auto;
    overflow-y: auto;
}
dialog::backdrop {
    background: #10291f99;
    backdrop-filter: blur(5px);
}
body.dialog-open {
    overflow: hidden;
}
.dialog-inner {
    position: relative;
    padding: 40px;
}
.dialog-close {
    position: absolute;
    top: 11px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 29px;
    line-height: 1;
    width: 34px;
    height: 34px;
}
.dialog-inner .eyebrow {
    font-size: 8px;
    margin-top: 5px;
}
.dialog-inner h2 {
    font-size: 39px;
    margin-top: 18px;
}
.dialog-intro {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    margin: 18px 0 22px;
}
#enquiry-form {
    display: grid;
    gap: 16px;
}
#enquiry-form label {
    display: grid;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
body input, body select, body textarea {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border: 1px solid #ccd2c3;
    color: var(--ink);
    background: #fffefa;
    font-size: 13px;
    outline-offset: 2px;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid #879b5d;
}
textarea {
    resize: vertical;
    min-height: 85px;
}
.form-note {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.7;
}
#enquiry-form .button {
    width: 100%;
}
.enquiry-status {
    font-size: 12px;
    line-height: 1.7;
    padding: 12px;
    background: #e7edda;
}
.dialog-direct {
    font-size: 10px;
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.7;
}
.dialog-direct a {
    color: var(--ink);
    text-decoration: underline;
}

@media (min-width: 1500px) {
    .hero {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .hero-image {
        height: 585px;
    }
}

@media (max-width: 1150px) {
    body .container {
        width: calc(100% - 72px);
    }
    .desktop-nav {
        gap: 24px;
    }
    .hero {
        gap: 32px;
    }
    body h1 {
        font-size: 59px;
        letter-spacing: -3.2px;
    }
    .hero-image {
        height: 500px;
    }
    .hero-actions {
        gap: 15px;
    }
    .hero-actions .button {
        padding: 15px 17px;
        gap: 14px;
        font-size: 11px;
    }
    .hero-actions .text-link {
        font-size: 11px;
    }
    .hero-footnote {
        margin-top: 27px;
    }
    .about-section {
        gap: 65px;
    }
    .review-section {
        gap: 48px;
    }
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    body .container {
        width: calc(100% - 48px);
    }
    .header-inner {
        min-height: 85px;
    }
    .desktop-nav {
        gap: 20px;
        margin-left: 0;
    }
    .desktop-nav a {
        font-size: 11px;
    }
    .brand-name {
        font-size: 22px;
    }
    .brand {
        gap: 10px;
    }
    .header-contact {
        gap: 15px;
        font-size: 12px;
    }
    .hero {
        gap: 27px;
    }
    body h1 {
        font-size: 48px;
        letter-spacing: -2.7px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.4px;
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-image {
        height: 468px;
    }
    .hero-actions {
        align-items: start;
        flex-direction: column;
        margin-top: 23px;
        gap: 12px;
    }
    .hero-footnote {
        font-size: 9px;
        margin-top: 18px;
    }
    .insight-card {
        width: 250px;
        padding: 17px;
        left: -20px;
        bottom: 28px;
    }
    .insight-body p {
        font-size: 12px;
    }
    .insight-body svg {
        width: 70px;
    }
    .expertise-strip {
        gap: 12px;
    }
    .expertise-strip > span {
        font-size: 10px;
        gap: 8px;
    }
    .expertise-strip > span > span {
        font-size: 18px;
    }
    .section-space {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .about-section {
        gap: 40px;
    }
    body h2 {
        font-size: 35px;
    }
    .services-grid {
        gap: 13px;
    }
    .service-card {
        padding: 21px;
    }
    .service-card h3 {
        font-size: 23px;
    }
    .service-card p {
        font-size: 11px;
    }
    .service-tags {
        line-height: 1.7;
    }
    .service-link {
        font-size: 10px;
        gap: 7px;
    }
    .review-section {
        gap: 35px;
    }
    .review-copy h2 {
        font-size: 32px;
    }
    .process-grid {
        gap: 30px;
    }
    .footer-details {
        gap: 25px;
        grid-template-columns: .85fr 1fr 1.1fr;
    }
    .footer-brand-block .brand {
        transform: scale(.8);
    }
    .contact-detail a {
        font-size: 11px;
    }
    .contact-detail address {
        font-size: 10px;
    }
}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 20px;
    }
    body .container {
        width: calc(100% - 40px);
    }
    .header-inner {
        min-height: 78px;
    }
    .brand-name {
        font-size: 23px;
    }
    .brand-mark {
        width: 32px;
        gap: 3px;
    }
    .brand-mark i {
        width: 7px;
    }
    .desktop-nav, .header-contact {
        display: none;
    }
    .menu-toggle {
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 1px solid #d6dccd;
    }
    .menu-toggle span {
        display: block;
        width: 17px;
        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 {
        display: grid;
        gap: 0;
        padding: 0 20px 15px;
        background: var(--paper);
        border-top: 1px solid var(--line);
    }
    .mobile-nav a {
        padding: 15px 4px;
        font-size: 13px;
        border-bottom: 1px solid var(--line);
    }
    .mobile-nav a:last-child {
        border: 0;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 37px;
        padding-top: 41px;
        padding-bottom: 45px;
    }
    .hero-copy {
        padding-top: 0;
    }
    .hero .eyebrow {
        font-size: 9px;
        letter-spacing: 1.7px;
    }
    body h1 {
        font-size: clamp(48px, 10.9vw, 72px);
        letter-spacing: -3.1px;
        line-height: 1.065;
        margin: 23px 0;
    }
    .hero-description {
        font-size: 14px;
        line-height: 1.8;
        max-width: 420px;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-top: 25px;
    }
    .hero-actions .button {
        font-size: 11px;
        padding: 16px 17px;
    }
    .hero-actions .text-link {
        font-size: 11px;
        gap: 9px;
    }
    .hero-footnote {
        margin-top: 22px;
        font-size: 10px;
    }
    .hero-visual {
        margin-left: 12px;
    }
    .hero-image {
        height: 425px;
        object-position: center 41%;
    }
    .insight-card {
        width: 270px;
        left: -12px;
        bottom: 25px;
        padding: 19px 21px;
    }
    .insight-body p {
        font-size: 14px;
    }
    .photo-label {
        font-size: 6px;
        letter-spacing: 1.3px;
        bottom: -20px;
    }
    .expertise-strip {
        grid-template-columns: 1fr 1fr;
        padding: 21px 0;
        gap: 17px 10px;
    }
    .expertise-strip > span {
        justify-content: start;
        font-size: 10px;
        gap: 9px;
    }
    .section-space {
        padding-top: 62px;
        padding-bottom: 62px;
    }
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    body h2 {
        font-size: 36px;
        letter-spacing: -1.6px;
        margin-top: 20px;
    }
    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .about-copy {
        max-width: none;
    }
    .about-copy .lead {
        font-size: 20px;
    }
    .about-copy p:not(.lead) {
        font-size: 13px;
    }
    .section-top {
        gap: 21px;
        margin-bottom: 30px;
    }
    .section-intro {
        font-size: 12px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card {
        padding: 28px;
        min-height: 355px;
    }
    .service-card h3 {
        font-size: 28px;
        margin-top: 23px;
    }
    .service-card p {
        font-size: 13px;
        max-width: 100%;
    }
    .service-tags {
        font-size: 9px;
    }
    .service-link {
        font-size: 12px;
    }
    .review-section {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .review-image-wrap {
        min-height: 330px;
    }
    .review-copy h2 {
        font-size: 36px;
    }
    .review-copy > p {
        max-width: none;
    }
    .review-list {
        gap: 13px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 31px;
        padding-top: 5px;
    }
    .process-step h3 {
        margin: 19px 0 10px;
        font-size: 24px;
    }
    .process-step p {
        max-width: 100%;
        font-size: 13px;
    }
    .step-line {
        padding-bottom: 12px;
    }
    .contact-footer {
        padding-top: 61px;
    }
    .contact-top {
        align-items: start;
        flex-direction: column;
        padding-bottom: 38px;
        gap: 29px;
    }
    .contact-top h2 {
        font-size: clamp(35px, 8.5vw, 53px);
        letter-spacing: -1.7px;
    }
    .contact-top p {
        font-size: 12px;
        line-height: 1.7;
        max-width: 280px;
    }
    .contact-circle {
        width: 104px;
        height: 104px;
        gap: 6px;
        margin: 0;
    }
    .contact-circle > span:first-child {
        font-size: 35px;
    }
    .contact-circle > span:last-child {
        font-size: 8px;
    }
    .footer-details {
        grid-template-columns: 1fr;
        gap: 29px;
        padding: 33px 0;
    }
    .footer-brand-block .brand {
        transform: none;
    }
    .footer-brand-block > p {
        margin-top: 12px;
    }
    .contact-detail h3 {
        margin-bottom: 14px;
        font-size: 8px;
    }
    .contact-detail a, .contact-detail address {
        font-size: 13px;
    }
    .location-note {
        font-size: 10px;
    }
    .footer-bottom {
        align-items: start;
        font-size: 8px;
        line-height: 1.8;
        gap: 16px;
    }
    .footer-bottom a {
        flex-shrink: 0;
    }
    .dialog-inner {
        padding: 31px 23px;
    }
    .dialog-inner h2 {
        font-size: 35px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    body input, body select, body textarea {
        font-size: 16px;
    }
}

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

