:root {
    --forest: #102622;
    --forest-light: #203a33;
    --lime: #ddf6a2;
    --ink: #1b2d27;
    --muted: #748079;
    --paper: #f7f8f3;
    --line: #dfe4dc;
}

* {
    box-sizing: border-box;
}

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

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

body.dialog-open {
    overflow: hidden;
}

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

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

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

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

button {
    cursor: pointer;
}

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

button {
    border: 0;
}

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid #718f3e;
    outline-offset: 5px;
}

::selection {
    color: var(--forest);
    background: var(--lime);
}

[hidden] {
    display: none !important;
}

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

.icon-library {
    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: -80px;
    left: 20px;
    z-index: 100;
    padding: 12px 20px;
    color: var(--forest);
    background: var(--lime);
}

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

.site-header {
    position: relative;
    z-index: 20;
    background: var(--paper);
}

.header-inner {
    min-height: 94px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.7px;
    flex-shrink: 0;
}

.brand-symbol {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.brand-sub {
    display: block;
    margin-top: 6px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.desktop-nav {
    gap: 33px;
    margin-left: auto;
    margin-right: 42px;
    font-size: 13px;
}

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

.desktop-nav a:hover, .mobile-nav a:hover {
    color: #6e834c;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 51px;
    padding: 15px 23px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    transition: background .2s, transform .2s;
}

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

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

.button-dark:hover {
    background: #2e483b;
}

.button-lime {
    color: var(--forest);
    background: var(--lime);
}

.button-lime:hover {
    background: #ebffc3;
}

.header-cta {
    min-height: 43px;
    gap: 25px;
    padding: 11px 19px;
}

.header-cta .icon {
    width: 17px;
    height: 17px;
}

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

.menu-toggle span {
    display: block;
    height: 1.5px;
    margin: 6px 0;
    background: var(--forest);
    transition: transform .2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
    padding: 10px 28px 25px;
    border-top: 1px solid var(--line);
}

.mobile-nav a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
}

.hero {
    overflow: hidden;
    color: white;
    background: var(--forest);
}

.hero-layout {
    display: grid;
    grid-template-columns: 53% 47%;
    min-height: 598px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 63px 0 30px;
}

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

.hero .eyebrow {
    color: var(--lime);
}

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

.hero h1 {
    margin: 28px 0 23px;
    font-size: clamp(64px, 6.1vw, 88px);
    font-weight: 500;
    line-height: 1.015;
    letter-spacing: -4.8px;
}

.hero h1 > span {
    color: var(--lime);
}

.hero-description {
    max-width: 450px;
    color: #bdc8c1;
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

.text-link .icon, .underlined-link .icon {
    width: 17px;
    height: 17px;
    transition: transform .2s;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 36px;
    color: #a7b7ae;
    font-size: 10px;
    letter-spacing: .25px;
}

.small-cross {
    color: var(--lime);
    font-size: 17px;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-visual > img {
    position: absolute;
    top: 12px;
    left: -45px;
    width: calc(100% + 120px);
    max-width: none;
    height: 555px;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.visual-coordinate {
    position: absolute;
    top: 49px;
    right: 0;
    color: #a2b2a6;
    font-size: 9px;
    letter-spacing: 1px;
    text-align: right;
}

.visual-coordinate span {
    display: block;
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 1.8px;
}

.insight-card {
    position: absolute;
    bottom: 90px;
    left: 4px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    border: 1px solid #ffffff1c;
    border-radius: 7px;
    color: white;
    background: #233e35e8;
    box-shadow: 0 15px 40px #0002;
    backdrop-filter: blur(15px);
}

.insight-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #a4bb823d;
    border-radius: 5px;
    color: var(--lime);
}

.insight-card p {
    font-size: 12px;
    font-weight: 600;
}

.insight-card div > span {
    display: block;
    margin-top: 6px;
    color: #b4c2b7;
    font-size: 10px;
}

.insight-status {
    width: 6px;
    height: 6px;
    margin-left: 15px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px #ddf6a212;
}

.orbit-caption {
    position: absolute;
    right: 0;
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a8b5ac;
    font-size: 8px;
    letter-spacing: 1.6px;
}

.orbit-caption > span {
    width: 32px;
    height: 1px;
    background: #6f8374;
}

.hero-bottom {
    min-height: 64px;
    border-top: 1px solid #ffffff1c;
    color: #a4b3a9;
    font-size: 8px;
    letter-spacing: 1.6px;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-scroll .icon {
    width: 15px;
    height: 15px;
}

.expertise-strip {
    padding: 31px 0;
    border-bottom: 1px solid var(--line);
    background: #eef1e8;
}

.expertise-strip .container {
    gap: 20px;
}

.expertise-strip .container > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
}

.expertise-strip .container > span + span {
    border-left: 1px solid #d7dfd2;
}

.expertise-strip .icon {
    width: 24px;
    height: 24px;
    color: #56724c;
}

.section-space {
    padding: 99px 0;
}

.section-label {
    margin-bottom: 25px;
    color: #516147;
}

.section-label > span {
    width: 7px;
    height: 7px;
    border: 1px solid #6e825b;
    border-radius: 50%;
}

body h2 {
    font-size: clamp(34px, 3.55vw, 50px);
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: -2px;
}

.muted-word {
    color: #7d8977;
}

.about-grid {
    gap: 10%;
}

.about-copy .lead {
    margin-bottom: 21px;
    font-size: 23px;
    line-height: 1.4;
    letter-spacing: -.5px;
}

.about-copy > p:not(.lead) {
    margin-bottom: 17px;
    color: #66726a;
    font-size: 13px;
    line-height: 1.85;
}

.underlined-link {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    padding: 9px 0;
    border-bottom: 1px solid #7b8771;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
}

.principles-grid {
    gap: 54px;
    margin-top: 65px;
    padding-top: 31px;
    border-top: 1px solid var(--line);
}

.principle-number {
    color: #809073;
    font-size: 10px;
}

.principles-grid h3 {
    margin: 15px 0 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.25px;
}

.principles-grid p {
    max-width: 290px;
    color: #707b72;
    font-size: 12px;
    line-height: 1.75;
}

.expertise-section {
    background: #eef1e9;
}

.section-heading {
    gap: 24px;
    margin-bottom: 44px;
}

.section-heading > p {
    margin-bottom: 6px;
    color: #6d776c;
    font-size: 13px;
    line-height: 1.8;
}

.service-grid {
    gap: 15px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px 23px 22px;
    border: 1px solid #d8dfd2;
    border-radius: 6px;
    background: #f8f9f4;
    transition: border-color .2s, transform .2s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #92a57a;
}

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

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

.service-icon {
    width: 31px;
    height: 31px;
    stroke-width: 1.25;
}

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

.service-card > p {
    flex-grow: 1;
    margin-bottom: 26px;
    color: #6c766c;
    font-size: 12px;
    line-height: 1.85;
}

.service-tag {
    margin-bottom: 22px;
    color: #78866c;
    font-size: 7px;
    letter-spacing: 1.2px;
}

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

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

.analytics-feature {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 50px;
    margin-top: 47px;
    padding: 50px 47px;
    border-radius: 8px;
    color: white;
    background: var(--forest);
}

.analytics-copy .eyebrow {
    margin-bottom: 25px;
    color: #b4c39c;
    font-size: 8px;
    letter-spacing: 1.6px;
}

.analytics-copy h3 {
    font-size: 49px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.analytics-copy h3 > span {
    color: var(--lime);
}

.analytics-copy > p:not(.eyebrow) {
    max-width: 300px;
    margin: 22px 0 30px;
    color: #bac7bc;
    font-size: 13px;
    line-height: 1.85;
}

.analytics-copy .text-link {
    padding-bottom: 9px;
    border-bottom: 1px solid #809571;
    color: var(--lime);
}

.dashboard {
    min-width: 0;
    padding: 24px;
    border: 1px solid #ffffff14;
    border-radius: 7px;
    background: #1c342b;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-kicker {
    color: #a6b49d;
    font-size: 7px;
    letter-spacing: 1.6px;
}

.dashboard h4 {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

.demo-badge {
    padding: 5px 7px;
    border: 1px solid #b9d39b33;
    border-radius: 4px;
    color: #b7cba2;
    font-size: 6px;
    letter-spacing: .7px;
}

.chart-tabs {
    display: flex;
    gap: 21px;
    margin: 22px 0 18px;
    border-bottom: 1px solid #ffffff15;
}

.chart-tabs button {
    padding: 0 0 10px;
    border-bottom: 2px solid transparent;
    color: #a3b19f;
    background: transparent;
    font-size: 10px;
}

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

.chart-tabs button:hover {
    color: white;
}

.chart-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 17px;
}

.chart-summary div > span {
    display: block;
    color: #abb7a4;
    font-size: 9px;
}

.chart-summary strong {
    display: block;
    margin-top: 5px;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.chart-summary strong > span {
    margin-left: 8px;
    color: #a3b29a;
    font-size: 9px;
    letter-spacing: 0;
}

.chart-period {
    color: #96a58e;
    font-size: 7px;
    letter-spacing: 1px;
}

.chart {
    position: relative;
    height: 135px;
    margin-bottom: 28px;
}

.chart-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 1px;
    color: #9aa98d;
    font-size: 7px;
}

.chart-grid span {
    position: relative;
    line-height: 0;
}

.chart-grid span::after {
    position: absolute;
    top: 0;
    left: 26px;
    right: 0;
    height: 1px;
    background: #ffffff0c;
    content: "";
}

.chart-bars {
    position: absolute;
    inset: 0 5px 0 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 18px;
}

.chart-bars > div {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.chart-bars i {
    display: block;
    width: 100%;
    height: var(--bar);
    border-radius: 3px 3px 0 0;
    background: #6e8860;
    transition: height .4s ease;
}

.chart-bars > div:nth-last-child(2) i {
    background: #a4bc7e;
}

.chart-bars > div:last-child i {
    background: var(--lime);
}

.chart-bars div > span {
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    color: #aab79d;
    font-size: 6px;
    letter-spacing: .7px;
    text-align: center;
}

.chart-insight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccd9bd;
    font-size: 8px;
    line-height: 1.7;
}

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

.demo-note {
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid #ffffff12;
    color: #9cae94;
    font-size: 7px;
}

.approach-grid {
    align-items: center;
    gap: 8%;
}

.approach-image {
    position: relative;
    align-self: stretch;
    min-height: 495px;
    overflow: hidden;
    border-radius: 6px;
    background: #d6d8c8;
}

.approach-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% center;
}

.image-caption {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 45px 28px 25px;
    color: white;
    background: linear-gradient(transparent, #15231bdd);
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: 1.4px;
}

.image-caption .brand-symbol {
    width: 30px;
    height: 30px;
    color: var(--lime);
}

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

.approach-intro {
    margin: 23px 0 25px;
    color: #6e796e;
    font-size: 13px;
    line-height: 1.85;
}

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

.process-list li {
    display: flex;
    gap: 21px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.process-list li > span {
    padding-top: 2px;
    color: #82906f;
    font-size: 10px;
}

.process-list h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.3px;
}

.process-list p {
    max-width: 325px;
    color: #727c70;
    font-size: 12px;
    line-height: 1.7;
}

.conversation-section {
    padding: 64px 0;
    background: var(--lime);
}

.conversation-inner {
    gap: 35px;
}

.conversation-inner .eyebrow {
    margin-bottom: 19px;
    color: #4f623a;
    font-size: 8px;
    letter-spacing: 1.6px;
}

.conversation-inner h2 {
    font-size: clamp(34px, 3.8vw, 53px);
}

.conversation-inner h2 > span {
    color: #617945;
}

.conversation-inner p:last-child {
    margin-top: 16px;
    color: #4e613e;
    font-size: 13px;
}

.conversation-inner .button {
    gap: 35px;
}

.contact-footer {
    padding: 66px 0 0;
    color: #d4dbd3;
    background: var(--forest);
}

.footer-top {
    grid-template-columns: 1.2fr 1.2fr .8fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-brand .brand {
    color: #f3f6ee;
}

.footer-brand .brand-symbol {
    color: var(--lime);
}

.footer-brand > p {
    margin-top: 22px;
    color: #a3b3a5;
    font-size: 12px;
    line-height: 1.9;
}

.footer-top h2 {
    margin: 5px 0 24px;
    color: #a5b798;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.6px;
}

.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 13px;
}

.footer-contact > .footer-email {
    font-size: 16px;
    letter-spacing: -.35px;
}

.footer-email .icon {
    width: 17px;
    height: 17px;
}

.footer-contact a:hover, .footer-bottom a:hover {
    color: var(--lime);
}

.footer-copy {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 23px;
    padding: 0;
    color: #b0c4a1;
    background: transparent;
    font-size: 10px;
}

.footer-copy:hover {
    color: var(--lime);
}

.footer-location address {
    font-size: 11px;
    font-style: normal;
    line-height: 1.9;
}

.footer-timezone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 23px;
    color: #a6b79b;
    font-size: 7px;
    letter-spacing: 1.2px;
}

.footer-timezone .status-dot {
    width: 4px;
    height: 4px;
    color: var(--lime);
}

.footer-bottom {
    min-height: 69px;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid #ffffff19;
    color: #9cab9f;
    font-size: 8px;
}

.footer-bottom > span {
    color: #b2bea8;
    font-size: 7px;
    letter-spacing: 1.6px;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d5dfcd;
    font-size: 9px;
}

.footer-bottom .icon {
    width: 14px;
    height: 14px;
}

#contact-dialog {
    width: min(590px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    padding: 0;
    border: 1px solid #dfe5d8;
    border-radius: 10px;
    color: var(--forest);
    background: var(--paper);
    box-shadow: 0 25px 100px #0004;
}

#contact-dialog::backdrop {
    background: #081b17bf;
    backdrop-filter: blur(5px);
}

.dialog-inner {
    position: relative;
    padding: 38px;
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 13px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--forest);
    background: #e8eddf;
    font-size: 25px;
}

.dialog-inner .section-label {
    margin: 8px 0 19px;
    font-size: 8px;
}

.dialog-inner h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
}

#dialog-description {
    margin: 15px 0 25px;
    color: #687461;
    font-size: 13px;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#enquiry-form label {
    display: block;
    min-width: 0;
    margin-bottom: 19px;
    font-size: 12px;
    font-weight: 600;
}

#enquiry-form input, #enquiry-form select, #enquiry-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px 12px;
    border: 1px solid #ccd5c5;
    border-radius: 4px;
    color: var(--forest);
    background: #fff;
    font-size: 13px;
    font-weight: 400;
}

#enquiry-form :is(input, select, textarea):focus {
    outline: 2px solid #a5bd80;
    outline-offset: 2px;
}

#enquiry-form textarea {
    resize: vertical;
}

.optional {
    color: #77806f;
    font-size: 10px;
    font-weight: 400;
}

.form-note {
    margin: 4px 0 18px;
    color: #6e7963;
    font-size: 10px;
    line-height: 1.7;
}

.form-note a {
    text-decoration: underline;
    overflow-wrap: anywhere;
}

#enquiry-form > .button {
    width: 100%;
    justify-content: space-between;
}

#enquiry-result {
    padding: 10px 0 0;
}

.result-icon {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--lime);
}

#enquiry-result h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.6px;
}

#enquiry-result > p:not(.form-note) {
    margin-bottom: 22px;
    color: #687461;
    font-size: 13px;
    line-height: 1.8;
}

#edit-enquiry {
    display: block;
    margin: 14px 0 22px;
}

@media (min-width: 1600px) {
    .hero-visual > img {
        height: 610px;
        top: -15px;
    }
}

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

    .desktop-nav {
        gap: 22px;
        margin-right: 15px;
    }

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

    .hero-actions {
        gap: 20px;
    }

    .hero-actions .button {
        gap: 17px;
    }

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

    .hero-visual > img {
        top: 40px;
        height: 500px;
    }

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

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

    .analytics-feature {
        gap: 35px;
        padding: 35px;
    }

    .footer-top {
        grid-template-columns: 1fr 1.1fr .85fr;
        gap: 25px;
    }
}

@media (max-width: 1023px) {
    .menu-toggle {
        display: block;
    }

    .header-cta {
        margin-left: auto;
    }

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

    .about-copy {
        max-width: 650px;
    }

    .about-copy .lead br {
        display: none;
    }

    .principles-grid {
        gap: 30px;
        margin-top: 42px;
    }

    .expertise-strip .container {
        row-gap: 25px;
    }

    .expertise-strip .container > span:nth-child(3) {
        border-left: none;
    }

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

    .analytics-copy h3 {
        font-size: 41px;
    }

    .analytics-feature {
        gap: 25px;
        padding: 30px;
    }

    .dashboard {
        padding: 18px;
    }

    .approach-image {
        min-height: 420px;
    }

    .approach-image > img {
        position: absolute;
        inset: 0;
        object-position: center 43%;
    }

    .approach-copy {
        max-width: 660px;
    }

    .process-list p {
        max-width: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 38px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    body .container {
        width: calc(100% - 44px);
    }

    .header-inner {
        min-height: 78px;
        gap: 16px;
    }

    .brand {
        gap: 10px;
        font-size: 16px;
    }

    .brand-symbol {
        width: 32px;
        height: 32px;
    }

    .brand-sub {
        font-size: 6.5px;
        letter-spacing: 1.3px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 45px 0 0;
    }

    .hero h1 {
        margin-top: 25px;
        font-size: clamp(56px, 11vw, 76px);
        line-height: 1.02;
        letter-spacing: -3.4px;
    }

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

    .hero-description {
        max-width: 470px;
        font-size: 13px;
    }

    .desktop-break {
        display: none;
    }

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

    .hero-actions .button {
        padding: 14px 17px;
        font-size: 12px;
    }

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

    .hero-visual {
        min-height: 365px;
        margin-top: 7px;
    }

    .hero-visual > img {
        top: -35px;
        left: 50%;
        width: 445px;
        height: 400px;
        transform: translateX(-50%);
    }

    .visual-coordinate {
        top: 21px;
        right: 0;
        font-size: 7px;
    }

    .visual-coordinate span {
        font-size: 6px;
    }

    .insight-card {
        bottom: 35px;
        left: 0;
        padding: 13px 15px;
        gap: 10px;
    }

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

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

    .insight-card div > span {
        font-size: 9px;
    }

    .orbit-caption {
        right: 0;
        bottom: 11px;
        font-size: 6px;
    }

    .hero-bottom {
        min-height: 54px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .hero-scroll {
        display: none;
    }

    .expertise-strip {
        padding: 25px 0;
    }

    .expertise-strip .container {
        gap: 22px 10px;
    }

    .expertise-strip .container > span {
        justify-content: flex-start;
        gap: 8px;
        font-size: 9px;
    }

    .expertise-strip .container > span:nth-child(even) {
        padding-left: 12px;
    }

    .expertise-strip .icon {
        width: 19px;
        height: 19px;
    }

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

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

    .section-label {
        margin-bottom: 21px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

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

    .principles-grid {
        gap: 28px;
        padding-top: 25px;
    }

    .principles-grid h3 {
        margin-top: 10px;
        font-size: 17px;
    }

    .principles-grid p {
        max-width: 100%;
        font-size: 13px;
    }

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

    .service-card {
        padding: 25px;
    }

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

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

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

    .service-tag {
        font-size: 8px;
    }

    .service-link {
        min-height: 40px;
        font-size: 12px;
    }

    .analytics-feature {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 30px;
        padding: 30px 20px 20px;
    }

    .analytics-copy h3 {
        font-size: 45px;
    }

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

    .dashboard {
        padding: 17px 14px;
    }

    .dashboard h4 {
        font-size: 12px;
    }

    .demo-badge {
        padding: 4px;
        font-size: 5px;
    }

    .chart-bars {
        gap: 13px;
    }

    .chart-insight {
        align-items: flex-start;
    }

    .chart-insight .status-dot {
        margin-top: 5px;
    }

    .chart-period {
        font-size: 6px;
    }

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

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

    .conversation-section {
        padding: 48px 0;
    }

    .conversation-inner h2 {
        font-size: 37px;
    }

    .conversation-inner h2 > span {
        display: block;
    }

    .conversation-inner .eyebrow {
        font-size: 7px;
        letter-spacing: 1.1px;
    }

    .conversation-inner .button {
        width: 100%;
        justify-content: space-between;
    }

    .contact-footer {
        padding-top: 47px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding-bottom: 35px;
    }

    .footer-top h2 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        gap: 24px;
    }

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

    .dialog-inner {
        padding: 30px 22px 24px;
    }

    .dialog-inner h2 {
        font-size: 29px;
    }

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

    #enquiry-form input, #enquiry-form select, #enquiry-form textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-cta {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }
}

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

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