@charset "UTF-8";
:root {
  --paper: #f7f8f2;
  --ink: #203d2e;
  --muted: #6e756b;
  --line: #dfe3d8;
  --lime: #dce9ad;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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, input, select, textarea {
  font: inherit;
}

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

button, a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

button {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid #789a46;
  outline-offset: 5px;
}

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

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

.header-inner {
  min-height: 99px;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 39px;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.brand-mark span {
  display: block;
  width: 11px;
  height: 37px;
  background: var(--ink);
  transform: skewY(-24deg);
}

.brand-mark span:nth-child(2) {
  height: 24px;
}

.brand-mark span:nth-child(3) {
  height: 30px;
  margin-top: 7px;
}

.brand-name {
  font-size: 31px;
  line-height: .98;
  font-weight: 600;
  letter-spacing: -1.8px;
}

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

.desktop-nav {
  gap: 32px;
}

.desktop-nav a {
  font-size: 13px;
  color: #4b574c;
  padding-block: 12px;
  transition: color .2s;
}

.desktop-nav a:hover {
  color: #629348;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 52px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px #203d2e13;
}

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

.button-dark:hover {
  background: #35583e;
}

.header-cta {
  min-height: 45px;
  padding: 12px 17px;
  gap: 24px;
  font-size: 12px;
}

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

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

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

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

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

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

.mobile-nav > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
}

.mobile-nav .button {
  margin-top: 14px;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 57px;
  padding-top: 53px;
  padding-bottom: 60px;
}

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

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

.hero h1 {
  font-size: clamp(54px, 5.2vw, 75px);
  font-weight: 500;
  letter-spacing: -3.8px;
  line-height: 1.07;
  margin: 28px 0 25px;
}

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

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

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

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

.text-link:hover {
  color: #68864c;
}

.hero-actions .text-link {
  gap: 9px;
}

.hero-actions .text-link .icon {
  width: 16px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a8176;
  font-size: 10px;
  margin-top: 36px;
  letter-spacing: .3px;
}

.small-rule {
  width: 25px;
  height: 1px;
  background: #89967a;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 25px;
}

.image-frame {
  height: 542px;
  border-radius: 110px 4px 4px 4px;
  overflow: hidden;
  background: #e8e7dc;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.image-tag {
  position: absolute;
  top: 25px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: #f7f8f2ed;
  font-size: 9px;
  letter-spacing: .2px;
  border-radius: 2px;
}

.image-tag .status-dot {
  width: 5px;
  height: 5px;
}

.insight-card {
  position: absolute;
  bottom: 53px;
  left: -30px;
  width: 305px;
  background: #fffffff2;
  padding: 20px 23px 16px;
  border: 1px solid #ffffff;
  box-shadow: 0 12px 30px #203d2e13;
  border-radius: 3px;
  backdrop-filter: blur(10px);
}

.card-eyebrow {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #737c6c;
}

.chart-symbol {
  display: grid;
  place-items: center;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #eef2e6;
}

.chart-symbol .icon {
  width: 14px;
  height: 14px;
}

.insight-card h2 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.4px;
  margin: 6px 0 17px;
}

.chart {
  width: 100%;
}

.chart svg {
  width: 100%;
  height: 73px;
  overflow: visible;
}

.grid-line {
  stroke: #e5e9df;
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.chart-caption {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #697764;
  margin-top: 8px;
}

.chart-caption span:last-child {
  color: #92998d;
  font-size: 7px;
}

.visual-index {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #878d7f;
}

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

.capability-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 29px;
}

.capability-grid > span:not(:first-child) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  border-left: 1px solid var(--line);
  min-height: 31px;
}

.capability-grid .icon {
  width: 23px;
  height: 23px;
  stroke: #687d53;
}

.strip-intro {
  font-size: 11px;
  line-height: 1.8;
  color: #73796c;
}

.strip-intro strong {
  font-weight: 500;
  color: #3f5040;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

body h2 {
  font-weight: 500;
  font-size: 43px;
  letter-spacing: -1.7px;
  line-height: 1.17;
}

.section-heading .eyebrow, .about-copy .eyebrow, .cta-copy .eyebrow {
  margin-bottom: 19px;
}

.muted-heading {
  color: #859174;
}

.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 5px;
}

.services-grid {
  gap: 19px;
}

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 28px;
  background: #fafbf6;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}

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

.featured-service {
  background: #eef1e5;
  border-color: #e0e5d5;
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid #d8dfca;
  background: #f2f5e9;
  border-radius: 50%;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  color: #929e88;
  font-size: 10px;
}

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

.service-card > p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--muted);
  flex: 1;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 23px;
}

.service-tags span {
  font-size: 8px;
  padding: 6px 8px;
  border: 1px solid #dfe4d5;
  color: #737b68;
  white-space: nowrap;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: none;
  border-top: 1px solid #dde2d3;
  margin-top: 27px;
  padding: 18px 0 0;
  text-align: left;
  font-size: 11px;
}

.service-link:hover {
  color: #709048;
}

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

.about-section {
  background: #eef0e7;
}

.about-grid {
  gap: 80px;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 438px;
  object-fit: cover;
  border-radius: 3px 65px 3px 3px;
}

.photo-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 17px 19px;
  background: #f7f8f2ed;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}

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

.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: #6c7567;
  line-height: 1.95;
  margin-bottom: 15px;
}

.about-copy .text-link {
  margin-top: 8px;
}

.approach-section {
  background: #203e2f;
  color: #f7f8ef;
}

.approach-section .eyebrow {
  color: #b7c6a3;
}

.approach-section h2 {
  font-size: 42px;
}

.approach-section .section-heading > p {
  color: #adbdad;
}

.process-grid {
  gap: 36px;
  margin-top: 58px;
}

.step-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #536c57;
  padding-top: 17px;
  margin-bottom: 25px;
}

.step-line span {
  color: #c4d69d;
  font-size: 11px;
}

.step-line .icon {
  width: 16px;
  height: 16px;
  color: #96ab81;
}

.process-grid h3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

.process-grid p {
  font-size: 12px;
  line-height: 1.95;
  color: #acbca8;
}

.approach-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #46604c;
  padding-top: 27px;
  margin-top: 48px;
}

.approach-bottom > span {
  font-size: 11px;
  color: #afbea6;
}

.approach-bottom .text-link {
  color: #d7e5bd;
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 74px 65px;
  background: #e7ecd9;
  margin-block: 75px;
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  font-size: 52px;
  line-height: 1.12;
}

.cta-copy h2 em {
  color: #70815b;
}

.cta-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.8;
  color: #717b62;
  margin-top: 22px;
}

.cta-copy .button {
  margin-top: 26px;
}

.cta-art {
  position: relative;
  height: 290px;
  margin: 0 20px;
}

.art-orbit {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid #d2dbc1;
  border-radius: 50%;
  top: -18px;
  left: -16px;
}

.art-orbit::after {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid #d2dbc1;
  border-radius: 50%;
}

.art-bar {
  position: absolute;
  bottom: 24px;
  width: 58px;
  border: 1px solid #bccaa2;
  background: #d7e2bf;
  transform: skewY(-14deg);
}

.bar-one {
  left: 39px;
  height: 72px;
}

.bar-two {
  left: 124px;
  height: 123px;
  background: #c8d6aa;
}

.bar-three {
  left: 209px;
  height: 183px;
  background: #aebf8e;
}

.cta-art > svg {
  width: 290px;
  height: 220px;
  position: relative;
  z-index: 1;
  fill: none;
  stroke: #385b3c;
  stroke-width: 2;
}

.art-label {
  position: absolute;
  bottom: -17px;
  width: 100%;
  text-align: center;
  font-size: 8px;
  color: #778568;
  letter-spacing: 2px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 1.25fr .55fr;
  gap: 45px;
  padding-bottom: 50px;
}

.footer-brand > p {
  font-size: 13px;
  margin: 20px 0 11px;
}

.footer-brand > span {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}

.footer-grid h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 4px 0 21px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: fit-content;
  font-size: 12px;
  padding: 0 0 13px;
}

.footer-contact a:first-of-type {
  overflow-wrap: anywhere;
}

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

.footer-contact a:hover, .footer-nav a:hover {
  color: #6e8a51;
}

.footer-address address {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.95;
  font-style: normal;
}

.footer-nav a {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 23px;
  font-size: 9px;
  color: #838a7a;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

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

.site-dialog {
  padding: 0;
  width: min(580px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  border: 1px solid #dde3d2;
  background: var(--paper);
  color: var(--ink);
  margin: auto;
  box-shadow: 0 25px 100px #142d2940;
}

.site-dialog::backdrop {
  background: #122b24a6;
  backdrop-filter: blur(5px);
}

.dialog-content {
  position: relative;
  padding: 43px 38px 35px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #e7ecdf;
}

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

.dialog-content h2 {
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.dialog-description {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 23px;
}

.deliverables-title {
  font-size: 13px;
  font-weight: 600;
  margin-top: 25px;
}

.deliverables {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.deliverables li::before {
  content: '↗';
  color: #7c925b;
}

.dialog-footnote, .form-note {
  font-size: 10px;
  color: #727b69;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 7px;
}

.field label span {
  color: #7d885d;
}

.field input, .field select, .field textarea, #copy-fallback {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d6ddcc;
  background: #fdfef9;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

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

.field input::placeholder, .field textarea::placeholder {
  color: #999e92;
}

.enquiry-result {
  text-align: center;
  padding: 20px 0 5px;
}

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

.enquiry-result h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.enquiry-result > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin: 14px 0;
}

#copy-fallback {
  text-align: left;
}

.header-inner, .desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.services-grid, .about-grid, .process-grid {
  display: grid;
}

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

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

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.menu-toggle {
  display: none;
}

@media (min-width: 1600px) {
  .page-width {
    width: min(1320px, calc(100% - 160px));
  }
  .hero {
    gap: 85px;
  }
  .image-frame {
    height: 580px;
  }
}

@media (max-width: 1100px) {
  .page-width {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero {
    gap: 34px;
  }
  .hero h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 16px;
    gap: 13px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .image-frame {
    height: 528px;
  }
  .hero-description {
    font-size: 14px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .about-grid {
    gap: 42px;
  }
  .about-copy h2 {
    font-size: 35px;
  }
  .cta-section {
    padding-inline: 42px;
  }
  .cta-copy h2 {
    font-size: 46px;
  }
  .footer-grid {
    gap: 25px;
    grid-template-columns: 1fr 1.3fr 1.1fr .55fr;
  }
  .footer-contact a {
    font-size: 11px;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .page-width {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 80px;
  }
  .brand-mark {
    width: 36px;
    height: 34px;
    gap: 4px;
  }
  .brand-mark span {
    width: 9px;
    height: 32px;
  }
  .brand-mark span:nth-child(2) {
    height: 20px;
  }
  .brand-mark span:nth-child(3) {
    height: 26px;
    margin-top: 6px;
  }
  .brand-name {
    font-size: 28px;
  }
  .brand-sub {
    font-size: 7px;
    letter-spacing: 2px;
  }
  .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 39px;
    padding-bottom: 32px;
  }
  .hero .eyebrow {
    font-size: 7.5px;
    letter-spacing: 1.1px;
  }
  .hero h1 {
    font-size: clamp(49px, 9.6vw, 70px);
    letter-spacing: -2.9px;
    margin-block: 22px;
  }
  .hero-description {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 21px;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 51px;
    font-size: 12px;
    padding-inline: 17px;
    gap: 16px;
  }
  .hero-note {
    margin-top: 22px;
    font-size: 9px;
  }
  .hero-visual {
    margin-left: 12px;
    padding-bottom: 22px;
  }
  .image-frame {
    height: 440px;
    border-top-left-radius: 84px;
  }
  .image-frame img {
    object-position: center 57%;
  }
  .image-tag {
    top: 19px;
    right: 15px;
    font-size: 8px;
    padding: 9px 11px;
  }
  .insight-card {
    width: 263px;
    left: -12px;
    bottom: 44px;
    padding: 17px 20px 14px;
  }
  .insight-card h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }
  .chart svg {
    height: 61px;
  }
  .visual-index {
    font-size: 7px;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
    gap: 23px 12px;
    padding-block: 25px;
  }
  .capability-grid > span:not(:first-child) {
    justify-content: flex-start;
    border-left: 0;
    font-size: 11px;
    gap: 10px;
  }
  .capability-grid > span:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 20px;
  }
  .capability-grid .icon {
    width: 21px;
    height: 21px;
  }
  .strip-intro {
    font-size: 10px;
  }
  .section-space {
    padding-block: 58px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 27px;
  }
  .section-heading h2, .about-copy h2, .approach-section h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 27px;
  }
  .service-top {
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card > p {
    font-size: 13px;
  }
  .service-tags span {
    font-size: 9px;
  }
  .service-link {
    font-size: 12px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-image img {
    height: 335px;
    border-top-right-radius: 55px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .photo-note {
    font-size: 10px;
    bottom: 18px;
    left: 18px;
    right: 18px;
    padding: 16px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    margin-top: 33px;
  }
  .step-line {
    margin-bottom: 21px;
  }
  .process-grid h3 {
    font-size: 20px;
  }
  .process-grid p {
    font-size: 11px;
  }
  .approach-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 34px;
    padding-top: 24px;
  }
  .approach-bottom > span {
    font-size: 10px;
  }
  .cta-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-block: 40px;
    padding: 37px 25px 45px;
  }
  .cta-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .cta-copy h2 {
    font-size: 42px;
  }
  .cta-copy > p:not(.eyebrow) {
    max-width: 270px;
  }
  .cta-art {
    height: 235px;
    width: 260px;
    margin: 10px auto 0;
  }
  .art-orbit {
    width: 255px;
    height: 255px;
    top: -3px;
    left: 2px;
  }
  .cta-art > svg {
    width: 244px;
    height: 184px;
  }
  .art-bar {
    width: 45px;
    bottom: 18px;
  }
  .bar-one {
    left: 38px;
    height: 60px;
  }
  .bar-two {
    left: 108px;
    height: 107px;
  }
  .bar-three {
    left: 179px;
    height: 159px;
  }
  .art-label {
    font-size: 7px;
    bottom: -17px;
  }
  .site-footer {
    padding-top: 37px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding-bottom: 35px;
  }
  .footer-contact {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid h2 {
    margin-bottom: 16px;
  }
  .footer-contact a {
    font-size: 14px;
    gap: 18px;
  }
  .footer-address address {
    font-size: 9px;
  }
  .footer-nav {
    padding-left: 24px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 8px;
    padding-block: 21px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .dialog-content {
    padding: 44px 23px 25px;
  }
  .dialog-content h2 {
    font-size: 30px;
  }
  .field input, .field select, .field textarea {
    font-size: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 359px) {
  .hero .eyebrow {
    font-size: 6.5px;
  }
  .cta-art {
    transform: scale(.85);
    transform-origin: left center;
  }
  .cta-copy h2 {
    font-size: 35px;
  }
  .capability-grid > span:not(:first-child) {
    font-size: 10px;
  }
  .capability-grid > span:nth-child(even) {
    padding-left: 12px;
  }
}

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