:root {
  --forest: #173e35;
  --forest-deep: #103128;
  --ink: #243e34;
  --muted: #6b736b;
  --lime: #d4ed9b;
  --ivory: #f8f8f2;
  --line: #dce1d6;
  --white: #ffffff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

button, summary {
  cursor: pointer;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

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

:focus-visible {
  outline: 3px solid #80a154;
  outline-offset: 5px;
}

.container {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

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

.label-line {
  width: 25px;
  height: 1px;
  background: currentColor;
}

h2 {
  font-size: clamp(34px, 3.7vw, 51px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2px;
}

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

h2 em {
  letter-spacing: -1.9px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  transition: background .2s, transform .2s, box-shadow .2s;
}

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

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #0c302515;
}

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

.button-dark:hover {
  background: #285345;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
}

.text-link span {
  font-size: 21px;
  font-weight: 400;
  transition: transform .2s;
}

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

.dark-link {
  color: var(--forest);
  border-bottom: 1px solid #bac8b8;
}

.light-link {
  color: #fff;
}

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

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

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

.header-inner {
  min-height: 94px;
  gap: 26px;
  display: flex;
}

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

.brand-mark {
  width: 39px;
  height: 43px;
}

.brand-name {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 2.6px;
  font-weight: 600;
}

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

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 30px;
}

.desktop-nav a {
  font-size: 12px;
  transition: opacity .2s;
}

.desktop-nav a:hover {
  opacity: .6;
}

.header-cta {
  padding: 12px 20px;
  gap: 25px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
}

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

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 14px 24px 24px;
}

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

.hero {
  position: relative;
  min-height: 671px;
  background: var(--forest-deep);
  color: var(--white);
  overflow: hidden;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 39, 30, .94) 0%, rgba(13, 39, 30, .79) 32%, rgba(13, 39, 30, .27) 64%, rgba(13, 39, 30, .07) 100%), linear-gradient(0deg, rgba(11, 34, 28, .65), transparent 40%);
}

.hero-content {
  position: relative;
  padding-top: 66px;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid #ffffff35;
  border-radius: 3px;
  color: #e2ead9;
  font-size: 9px;
  letter-spacing: 1.6px;
}

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

h1 {
  margin: 27px 0 24px;
  font-size: clamp(56px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -3.6px;
}

h1 em {
  color: var(--lime);
  letter-spacing: -3px;
}

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

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

.hero-bottom {
  display: flex;
  margin-top: 53px;
  padding: 21px 0 23px;
  border-top: 1px solid #ffffff28;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  color: #e4e8dd;
}

.hero-scroll > span {
  font-size: 17px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #e3e8db;
}

.principles-strip {
  border-bottom: 1px solid var(--line);
  background: #eef0e7;
}

.principles-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
  min-height: 112px;
  align-items: center;
  gap: 32px;
}

.principles-inner > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  border-right: 1px solid #d3dacb;
}

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

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

.principle-icon {
  font-size: 30px;
  font-weight: 400;
  color: #567454;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: 85px;
}

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

.about-visual > img {
  width: 100%;
  height: 423px;
  object-fit: cover;
  border-radius: 5px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  right: -22px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 24px 27px;
  border-radius: 3px;
  background: var(--lime);
}

.image-caption p {
  font-size: 15px;
  line-height: 1.55;
}

.image-caption strong {
  font-weight: 600;
}

.caption-symbol {
  font-size: 39px;
  font-weight: 400;
}

.caption-number {
  margin-left: auto;
  align-self: flex-end;
  font-size: 10px;
  opacity: .6;
}

.about-copy h2 {
  margin: 21px 0 25px;
  font-size: clamp(32px, 3.1vw, 43px);
}

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

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 24px 0;
  font-size: 10px;
}

.about-values i {
  color: #587a44;
  font-size: 12px;
  font-style: normal;
  padding-right: 5px;
}

.services-section {
  background: #eef0e7;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-top: 20px;
}

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

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

.service-card {
  background: var(--ivory);
  border: 1px solid #dce1d2;
  border-radius: 5px;
  padding: 31px 29px 0;
  transition: border-color .2s, box-shadow .2s;
}

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

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

.service-top svg {
  width: 39px;
  height: 39px;
  stroke: #46684a;
  stroke-width: 1.4;
}

.service-top > span {
  font-size: 11px;
  color: #7b8978;
}

.service-card h3 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.6px;
  margin-bottom: 17px;
}

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

.service-card details {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.service-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 19px 0;
  font-size: 11px;
  font-weight: 600;
}

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

.service-card summary > span {
  font-size: 21px;
  font-weight: 400;
  transition: transform .2s;
}

.service-card details[open] summary > span {
  transform: rotate(45deg);
}

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

.service-detail ul {
  margin: 0 0 15px;
  padding-left: 16px;
  list-style: disc;
}

.service-detail li {
  margin-bottom: 7px;
}

.service-detail a {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid #c4d1bc;
  padding-bottom: 4px;
}

.insights-section {
  background: var(--forest);
  color: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 88px;
}

.insights-copy .eyebrow {
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.insights-copy h2 {
  margin: 22px 0 26px;
  font-size: clamp(33px, 3.1vw, 44px);
}

.insights-copy h2 em {
  color: var(--lime);
}

.insights-copy > p:not(.eyebrow) {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.9;
  color: #bdcfc1;
}

.insight-list {
  padding: 0;
  margin: 27px 0 24px;
  list-style: none;
}

.insight-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  padding: 11px 0;
  border-bottom: 1px solid #ffffff18;
}

.insight-list li > span {
  font-size: 9px;
  color: var(--lime);
}

.insights-copy .text-link {
  border-bottom: 1px solid #8aa38a;
}

.dashboard {
  padding: 28px 27px 0;
  background: #fafbf6;
  border-radius: 7px;
  color: var(--forest);
  box-shadow: 0 24px 50px #09241c33;
  transform: rotate(-1deg);
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-eyebrow {
  font-size: 8px;
  color: #748371;
  letter-spacing: 1.6px;
}

.dashboard-title h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.5px;
  margin: 4px 0 18px;
}

.live-indicator {
  color: #587946;
  font-size: 32px;
}

.dashboard-tabs {
  display: flex;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-tabs button {
  background: transparent;
  padding: 7px 13px;
  font-size: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #72816e;
  transition: background .2s;
}

.dashboard-tabs button[aria-selected="true"] {
  background: #e5edd9;
  color: var(--forest);
  border-color: #dce7ce;
}

.dashboard-tabs button:hover {
  background: #eef1e7;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin: 22px 0 25px;
}

.dashboard-metrics > div {
  display: flex;
  flex-direction: column;
}

.dashboard-metrics > div > span {
  font-size: 10px;
  color: var(--muted);
}

.dashboard-metrics strong {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.7px;
}

.dashboard-metrics strong small {
  font-size: 24px;
}

.dashboard-metrics p {
  font-size: 8px;
  color: #71806c;
}

.metric-secondary {
  border-left: 1px solid var(--line);
  padding-left: 29px;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.chart-heading strong {
  font-size: 10px;
  font-weight: 500;
}

.chart-heading > span {
  font-size: 7px;
  color: #7a8574;
  letter-spacing: .7px;
}

.performance-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #e2e7db;
  stroke-width: 1;
}

.chart-labels {
  fill: #86917d;
  font-size: 9px;
  text-anchor: middle;
}

.chart-legend {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin: 15px 0 19px;
}

.chart-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #73806c;
  font-size: 8px;
}

.chart-legend i {
  width: 12px;
  height: 2px;
  background: #245c42;
}

.chart-legend > span + span i {
  background: #b5c1b5;
}

.dashboard-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: #6d7b68;
  font-size: 8px;
}

.dashboard-foot .status-dot {
  background: #79935e;
  width: 4px;
  height: 4px;
}

.dashboard-foot > span:last-child {
  margin-left: auto;
  font-size: 6px;
  letter-spacing: .8px;
}

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

.approach-section .section-heading {
  margin-bottom: 53px;
}

.step-track {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}

.step-track > span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-style: italic;
  color: #58754c;
}

.step-track > i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.step-track > b {
  font-size: 17px;
  font-weight: 400;
  color: #768866;
}

.approach-step h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}

.approach-step p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 305px;
}

.contact-section {
  background: #e8eddf;
  border-top: 1px solid #dde4d2;
}

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

.contact-copy h2 {
  font-size: clamp(40px, 4.2vw, 58px);
  margin: 24px 0;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 355px;
  font-size: 13px;
  line-height: 1.85;
  color: #687363;
  margin-bottom: 25px;
}

.contact-email {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  letter-spacing: -.2px;
  padding-bottom: 9px;
  border-bottom: 1px solid #a6b599;
  overflow-wrap: anywhere;
}

.contact-email > span {
  font-size: 21px;
}

.contact-phone {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

.contact-phone > span {
  margin-left: 15px;
  color: #77816e;
  font-size: 11px;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 42px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #6c7d60;
}

.contact-note .status-dot {
  background: #70835d;
  width: 5px;
  height: 5px;
}

.enquiry-form {
  background: var(--ivory);
  border: 1px solid #dfe5d6;
  border-radius: 5px;
  padding: 31px;
}

.enquiry-form h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-bottom: 9px;
}

.enquiry-form > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 23px;
}

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

.form-field {
  margin-bottom: 17px;
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 600;
}

.form-field label > span {
  color: #748864;
}

.form-field input, .form-field select, .form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--forest);
  padding: 11px 12px;
  font-size: 11px;
  line-height: 1.6;
  border: 1px solid #dbe1d3;
  border-radius: 3px;
  background: #fff;
  transition: border-color .2s;
}

.form-field textarea {
  resize: vertical;
  min-height: 91px;
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: #90988a;
  opacity: 1;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: #698156;
  outline: 2px solid #c3d6b8;
  outline-offset: 1px;
}

.submit-button {
  width: 100%;
  justify-content: space-between;
  padding: 13px 18px;
}

.enquiry-form .form-note {
  font-size: 9px;
  line-height: 1.7;
  margin: 12px 0 0;
  color: #77826e;
}

.enquiry-result {
  margin-top: 18px;
  background: #e9f0dd;
  border: 1px solid #d2e0bd;
  border-radius: 3px;
  padding: 15px;
  font-size: 11px;
}

.enquiry-result > div {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.enquiry-result .text-link {
  font-size: 11px;
}

.enquiry-result button {
  font-size: 10px;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
}

.site-footer {
  background: var(--forest-deep);
  color: #d4dfd0;
  padding: 57px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .65fr 1fr;
  gap: 65px;
  padding-bottom: 42px;
}

.site-footer .brand {
  color: #edf0e4;
}

.footer-brand > p {
  font-size: 11px;
  color: #99b19f;
  margin-top: 18px;
}

.site-footer h3 {
  font-size: 10px;
  font-weight: 500;
  color: #e9efdf;
  margin-bottom: 16px;
}

.footer-links > a {
  display: block;
  width: fit-content;
  font-size: 11px;
  color: #9fb7a3;
  margin-bottom: 7px;
}

.footer-address address {
  font-style: normal;
  font-size: 11px;
  line-height: 1.9;
  color: #9fb7a3;
}

.footer-address > a {
  display: inline-block;
  font-size: 10px;
  border-bottom: 1px solid #6b896d;
  margin-top: 12px;
  padding-bottom: 3px;
}

.footer-address > a span {
  margin-left: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-top: 1px solid #365448;
  padding: 22px 0;
}

.footer-bottom p {
  max-width: 660px;
  color: #92a99a;
  font-size: 9px;
  line-height: 1.8;
}

.footer-bottom > a {
  white-space: nowrap;
  font-size: 10px;
}

.footer-bottom > a span {
  margin-left: 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 726px;
  }
  .hero-content {
    padding-top: 82px;
  }
  .hero-bottom {
    margin-top: 68px;
  }
}

@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 22px;
    margin-right: 0;
  }
  .header-cta {
    padding: 11px 15px;
    gap: 15px;
    font-size: 11px;
  }
  .brand-name {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .brand-name > span {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .brand-mark {
    width: 34px;
  }
  .section {
    padding: 80px 0;
  }
  .about-grid, .insights-grid {
    gap: 48px;
  }
  .about-visual > img {
    height: 397px;
  }
  .about-values {
    gap: 10px;
    font-size: 9px;
  }
  .service-card {
    padding: 25px 21px 0;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card > p {
    min-height: 116px;
  }
  .principles-inner {
    gap: 20px;
  }
  .principles-inner > div {
    font-size: 10px;
    gap: 8px;
  }
  .principles-inner > p {
    font-size: 11px;
  }
  .principle-icon {
    font-size: 25px;
  }
  .contact-grid {
    gap: 50px;
  }
  .contact-email {
    font-size: 12px;
  }
  .enquiry-form {
    padding: 26px;
  }
  .dashboard {
    padding: 24px 20px 0;
  }
  .dashboard-foot {
    font-size: 7px;
  }
}

@media (max-width: 800px) {
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 78px;
  }
  .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .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);
  }
  .hero {
    min-height: 645px;
  }
  .hero-content {
    padding-top: 65px;
  }
  .hero-image {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, #0d291fe8, #0d291f82 65%, #0d291f55), linear-gradient(0deg, #0d291fbb, transparent);
  }
  h1 {
    font-size: 67px;
  }
  .hero-bottom {
    margin-top: 51px;
  }
  .hero-location {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .principles-inner {
    grid-template-columns: 1fr 1fr;
    padding: 25px 0;
    row-gap: 22px;
  }
  .principles-inner > p {
    border-right: 0;
  }
  .principles-inner > div {
    font-size: 11px;
  }
  .about-grid, .insights-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-visual {
    max-width: 580px;
  }
  .about-visual > img {
    height: 390px;
  }
  .image-caption {
    right: -10px;
  }
  .about-copy h2 {
    font-size: 42px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .about-values {
    font-size: 11px;
    gap: 20px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .section-intro {
    max-width: 450px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 28px 29px 0;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card > p {
    min-height: auto;
    font-size: 13px;
    max-width: 500px;
  }
  .service-card summary {
    font-size: 12px;
    padding: 20px 0;
  }
  .insights-copy h2 {
    font-size: 43px;
  }
  .insights-copy > p:not(.eyebrow) {
    max-width: 550px;
  }
  .insight-list {
    max-width: 550px;
  }
  .dashboard {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    padding: 28px 28px 0;
    transform: none;
  }
  .dashboard-foot {
    font-size: 8px;
  }
  .approach-grid {
    gap: 25px;
  }
  .approach-step h3 {
    font-size: 17px;
  }
  .approach-step p {
    font-size: 11px;
  }
  .contact-copy h2 {
    font-size: 51px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 500px;
  }
  .contact-email {
    font-size: 15px;
  }
  .contact-note {
    margin-top: 27px;
  }
  .enquiry-form {
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding: 64px 0;
  }
  .header-inner {
    min-height: 76px;
  }
  .brand-mark {
    width: 33px;
  }
  .brand-name {
    font-size: 14px;
  }
  .hero {
    min-height: 642px;
  }
  .hero-content {
    padding-top: 49px;
  }
  .hero-eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
    gap: 8px;
    padding: 7px 9px;
  }
  h1 {
    font-size: clamp(43px, 12vw, 57px);
    letter-spacing: -2.7px;
    line-height: 1.12;
    margin: 29px 0 24px;
  }
  h1 em {
    letter-spacing: -2.4px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 335px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 25px;
  }
  .hero-actions .button {
    padding: 14px 20px;
  }
  .hero-actions .text-link {
    padding: 5px 0;
    font-size: 11px;
  }
  .hero-bottom {
    margin-top: 33px;
    padding: 19px 0 22px;
  }
  .hero-scroll {
    font-size: 9px;
    gap: 8px;
  }
  .hero-location {
    font-size: 6px;
    letter-spacing: .4px;
    gap: 5px;
  }
  .hero-location .status-dot {
    width: 4px;
    height: 4px;
  }
  .principles-inner {
    column-gap: 13px;
    row-gap: 24px;
  }
  .principles-inner > div {
    font-size: 9px;
  }
  .principles-inner > p {
    font-size: 10px;
  }
  .principle-icon {
    font-size: 22px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    gap: 9px;
  }
  h2, .about-copy h2, .insights-copy h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  h2 em {
    letter-spacing: -1.4px;
  }
  .about-visual > img {
    height: 310px;
  }
  .image-caption {
    left: 28px;
    right: -4px;
    padding: 18px 21px;
    gap: 15px;
  }
  .image-caption p {
    font-size: 13px;
  }
  .caption-symbol {
    font-size: 32px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .about-values {
    font-size: 9px;
    gap: 13px;
  }
  .section-heading {
    margin-bottom: 31px;
  }
  .section-intro {
    font-size: 12px;
  }
  .service-card {
    padding: 25px 24px 0;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card h3 br {
    display: initial;
  }
  .service-card > p {
    font-size: 12px;
  }
  .insights-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .insights-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .insight-list li {
    font-size: 10px;
    gap: 12px;
  }
  .dashboard {
    padding: 22px 18px 0;
  }
  .dashboard-title h3 {
    font-size: 16px;
  }
  .dashboard-tabs {
    gap: 3px;
  }
  .dashboard-tabs button {
    font-size: 9px;
    padding: 7px 10px;
  }
  .dashboard-metrics strong {
    font-size: 34px;
  }
  .dashboard-metrics > div > span {
    font-size: 9px;
  }
  .dashboard-metrics p {
    font-size: 7px;
  }
  .metric-secondary {
    padding-left: 20px;
  }
  .dashboard-foot {
    font-size: 6px;
    gap: 5px;
  }
  .dashboard-foot > span:last-child {
    font-size: 5px;
    letter-spacing: .5px;
  }
  .chart-heading strong {
    font-size: 9px;
  }
  .chart-heading > span {
    font-size: 6px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .approach-section .section-heading {
    margin-bottom: 30px;
  }
  .step-track {
    margin-bottom: 15px;
  }
  .approach-step h3 {
    font-size: 21px;
    margin-bottom: 9px;
  }
  .approach-step p {
    font-size: 12px;
    max-width: none;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-email {
    font-size: 12px;
    gap: 9px;
  }
  .contact-phone {
    font-size: 13px;
  }
  .contact-note {
    font-size: 6px;
    letter-spacing: .8px;
  }
  .enquiry-form {
    padding: 24px 21px;
  }
  .enquiry-form h3 {
    font-size: 21px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px;
    padding: 10px;
  }
  .form-field input::placeholder, .form-field textarea::placeholder {
    font-size: 12px;
  }
  .form-field select {
    font-size: 13px;
    min-height: 47px;
  }
  .footer-grid {
    grid-template-columns: .6fr 1.4fr;
    gap: 32px 24px;
    padding-bottom: 32px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-address address {
    font-size: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 21px 0 25px;
  }
  .footer-bottom p {
    font-size: 8px;
  }
}

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