:root {
  --ink: #173f35;
  --ink-soft: #5c6860;
  --paper: #fafaf6;
  --cream: #f0f1e9;
  --lime: #dcebb0;
  --line: #dce1d7;
  --serif: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #7b9b40;
  outline-offset: 5px;
}

button {
  color: inherit;
}

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

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

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

[hidden] {
  display: none !important;
}

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

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

.icon, .strip-icon, .service-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: -80px;
  left: 16px;
  z-index: 100;
  padding: 14px 20px;
  background: var(--ink);
  color: white;
}

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

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

.header-inner {
  min-height: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-monogram {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -5px;
}

.brand-dot {
  color: #7c985e;
  letter-spacing: -1px;
}

.brand-name {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  padding-left: 14px;
  border-left: 1px solid #bbc5b9;
}

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

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

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--ink);
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 180ms;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  min-height: 53px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 180ms, transform 180ms;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: #285648;
}

.button-outline {
  border-color: #afbbb1;
}

.button-outline:hover {
  background: var(--cream);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
  gap: 26px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 43px;
  height: 43px;
  padding: 12px 10px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 180ms;
}

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

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

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
  padding-block: 65px 73px;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.8;
}

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

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 1.4px;
}

body h1 {
  font-family: var(--serif);
  font-size: clamp(60px, 5.7vw, 82px);
  font-weight: 400;
  line-height: 1.045;
  letter-spacing: -3.8px;
  margin: 26px 0 23px;
}

em {
  font-weight: 400;
  color: #738366;
}

.hero-description {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  max-width: 410px;
}

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

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

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.25px;
  margin-top: 33px;
}

.note-line {
  width: 28px;
  height: 1px;
  background: #99a58c;
}

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

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.image-caption {
  position: absolute;
  top: 23px;
  left: 23px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,250,246,0.92);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 8px;
  letter-spacing: 1.2px;
}

.insight-card {
  position: absolute;
  left: -33px;
  bottom: 39px;
  width: 272px;
  padding: 19px 20px 14px;
  background: rgba(250,251,245,0.97);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 5px;
  box-shadow: 0 12px 40px #152d231c;
}

.insight-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.insight-card-top strong {
  font-weight: 500;
}

.insight-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7eddc;
}

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

.insight-arrow {
  margin-left: auto;
  align-self: flex-start;
  width: 15px;
}

.momentum-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 57px;
  margin: 16px 0 10px;
  border-bottom: 1px solid #dfe5d7;
}

.momentum-chart span {
  background: #c4d6a4;
  width: 100%;
  height: 24%;
  border-radius: 2px 2px 0 0;
}

.momentum-chart span:nth-child(2) {
  height: 33%;
}

.momentum-chart span:nth-child(3) {
  height: 28%;
}

.momentum-chart span:nth-child(4) {
  height: 43%;
}

.momentum-chart span:nth-child(5) {
  height: 40%;
}

.momentum-chart span:nth-child(6) {
  height: 58%;
}

.momentum-chart span:nth-child(7) {
  height: 53%;
}

.momentum-chart span:nth-child(8) {
  height: 66%;
}

.momentum-chart span:nth-child(9) {
  height: 71%;
}

.momentum-chart span:nth-child(10) {
  height: 78%;
  background: #809b60;
}

.momentum-chart span:nth-child(11) {
  height: 85%;
  background: #4b6b49;
}

.momentum-chart span:nth-child(12) {
  height: 100%;
  background: var(--ink);
}

.insight-card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.85px;
  color: #626f5b;
}

.image-index {
  position: absolute;
  bottom: 15px;
  right: 16px;
  font-size: 7px;
  letter-spacing: 1.3px;
  color: white;
  text-shadow: 0 1px 5px #000;
}

.expertise-strip {
  border-block: 1px solid var(--line);
  background: #f0f2e9;
}

.expertise-strip-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.expertise-strip p {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 1.7;
  color: #63725b;
}

.expertise-strip-inner > span {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
}

.strip-icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.2;
}

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

body h2 {
  font-family: var(--serif);
  font-size: clamp(39px, 3.8vw, 53px);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.section-intro .eyebrow, .section-heading .eyebrow, .analytics .eyebrow {
  margin-bottom: 24px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 110px;
}

.about-copy {
  padding-top: 4px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-copy p.lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 17px;
}

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

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.principles > div {
  position: relative;
  padding: 26px 15px 0 33px;
}

.principles > div > span {
  position: absolute;
  left: 0;
  top: 29px;
  font-size: 9px;
  color: #7c8b6b;
}

.principles h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.principles p {
  font-size: 11px;
  color: var(--ink-soft);
}

.services {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

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

.section-heading > p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
  padding-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #dde2d6;
  border-radius: 5px;
  padding: 27px 23px 21px;
  transition: transform 200ms, box-shadow 200ms;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px #173f350a;
}

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

.service-card-top > span {
  color: #7f8a78;
  font-size: 10px;
}

.service-icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.3;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 17px;
}

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

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

.service-link:hover {
  color: #6a833e;
}

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

.services-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 28px;
}

/* Analytics, approach and contact */
.analytics {
  background: var(--ink);
  color: #f7f8ef;
}

.analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.analytics .eyebrow {
  color: #c3d5ad;
  font-size: 9px;
}

.analytics h2 {
  font-size: 53px;
}

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

.analytics-copy > p:not(.eyebrow) {
  color: #c6d3c9;
  font-size: 13px;
  line-height: 1.9;
  max-width: 390px;
  margin-block: 22px;
}

.light-link {
  color: #e4eacb;
  border-bottom: 1px solid #738976;
  padding-bottom: 10px;
}

.analytics-note {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 9px;
  color: #b1c4b3;
  margin-top: 30px;
}

.analytics-note .status-dot {
  background: #c7de97;
}

.dashboard {
  background: #fafbf7;
  color: var(--ink);
  padding: 29px;
  border-radius: 7px;
  box-shadow: 0 20px 50px #09241c33;
  transform: rotate(-1deg);
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-eyebrow {
  display: block;
  font-size: 7px;
  letter-spacing: 1.1px;
  color: #708069;
  margin-bottom: 8px;
}

.dashboard h3 {
  font-size: 16px;
  font-weight: 500;
}

.demo-badge {
  border: 1px solid #dce3d5;
  border-radius: 3px;
  padding: 5px 7px;
  color: #66745e;
  font-size: 7px;
  white-space: nowrap;
}

.dashboard-tabs {
  display: flex;
  border-bottom: 1px solid #dfe4d8;
  margin: 24px 0 21px;
  gap: 22px;
}

.dashboard-tabs button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 0 11px;
  font-size: 9px;
  color: #747f6c;
}

.dashboard-tabs button[aria-selected='true'] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.dashboard-tabs button:hover {
  color: var(--ink);
}

.metric-summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}

#metric-label {
  color: #6d7868;
  font-size: 9px;
  margin-bottom: 7px;
}

#metric-value {
  font-size: 37px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.5px;
}

#metric-value > span {
  font-size: 22px;
  margin-left: 3px;
}

.metric-comparison {
  color: #43653c;
  background: #e8efdd;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 7px;
  margin-bottom: 3px;
}

.chart-wrap {
  display: flex;
  gap: 13px;
  height: 159px;
  margin-top: 27px;
}

.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #87917d;
  font-size: 7px;
  padding: 6px 0 25px;
}

.chart-plot {
  min-width: 0;
  width: 100%;
}

.chart-plot svg {
  display: block;
  width: 100%;
  height: 137px;
  overflow: visible;
}

.chart-grid {
  stroke: #e5e9dd;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 3 4;
}

#chart-line {
  fill: none;
  stroke: #648443;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#chart-dot {
  fill: #648443;
  stroke: #fafbf7;
  stroke-width: 2;
}

.chart-months {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #87917d;
  padding-top: 10px;
}

.chart-footer {
  margin-top: 16px;
  border-top: 1px solid #e1e6d8;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 7px;
  color: #798671;
}

.chart-footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5b6d50;
}

.chart-footer i {
  width: 5px;
  height: 5px;
  background: #718d4d;
  border-radius: 50%;
}

.chart-footer > span:last-child {
  font-size: 6px;
  letter-spacing: 0.3px;
}

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

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

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bbc8b0;
  padding-top: 20px;
  color: #789065;
  font-size: 11px;
  margin-bottom: 26px;
}

.process-number .icon {
  width: 16px;
  height: 16px;
}

.process-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -0.7px;
  margin-bottom: 13px;
}

.process-grid p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 295px;
}

.contact {
  background: #e5ecd7;
  border-block: 1px solid #d5dfc7;
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid #d5dec6;
  border-radius: 50%;
  right: -175px;
  top: -195px;
  box-shadow: 0 0 0 45px #dfe7d000, 0 0 0 46px #d7e0c9, 0 0 0 90px #dfe7d000, 0 0 0 91px #d7e0c9;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact .eyebrow {
  font-size: 9px;
  margin-bottom: 23px;
}

.contact h2 {
  font-size: 60px;
}

.contact h2 em {
  color: #6b8054;
}

.contact p:last-child {
  margin-top: 19px;
  font-size: 12px;
  color: #52634e;
}

.contact-button {
  min-width: 227px;
  margin-right: 52px;
}

.site-footer {
  padding-top: 57px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 50px;
  padding-bottom: 43px;
}

.footer-brand .brand-monogram {
  font-size: 40px;
}

.footer-brand .brand-name {
  font-size: 11px;
}

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

.footer-brand > p {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-main h3 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.3px;
  margin: 5px 0 21px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  width: fit-content;
  margin-bottom: 11px;
  overflow-wrap: anywhere;
}

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

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

.footer-address address {
  font-style: normal;
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-soft);
}

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

.footer-bottom > span {
  font-size: 9px;
}

.footer-bottom a {
  color: var(--ink);
}

dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  padding: 0;
  box-shadow: 0 25px 100px #061d1a40;
}

dialog::backdrop {
  background: #102c26b8;
  backdrop-filter: blur(4px);
}

.dialog-content {
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 29px;
  line-height: 1;
}

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

.dialog-content h2 {
  font-size: 39px;
  margin-bottom: 20px;
}

#dialog-description {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 14px;
}

.dialog-content h3 {
  font-size: 13px;
  margin-top: 26px;
}

#dialog-deliverables {
  padding-left: 18px;
  margin: 14px 0 29px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
  list-style: disc;
}

#dialog-deliverables li {
  padding-left: 5px;
  margin-bottom: 7px;
}

.dialog-note {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 19px;
  line-height: 1.7;
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1550px) {
  .hero {
    gap: 100px;
  }
  .hero-visual {
    height: 590px;
  }
}

@media (max-width: 1100px) {
  body .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 24px;
    margin-left: 0;
  }
  .hero {
    gap: 42px;
  }
  body h1 {
    font-size: 65px;
    letter-spacing: -3px;
  }
  .hero-visual {
    height: 520px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-actions .button {
    gap: 15px;
    padding-inline: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .about {
    column-gap: 55px;
  }
  .service-grid {
    gap: 12px;
  }
  .service-card {
    padding-inline: 18px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .analytics-inner {
    gap: 50px;
  }
  .analytics h2 {
    font-size: 46px;
  }
  .dashboard {
    padding: 23px;
  }
  .footer-main {
    gap: 24px;
  }
  .contact-button {
    margin-right: 0;
  }
}

@media (max-width: 850px) {
  body .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 83px;
    gap: 15px;
  }
  .brand-monogram {
    font-size: 39px;
  }
  .brand-name {
    font-size: 11px;
  }
  .brand-name > span {
    font-size: 7px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 11px;
  }
  .header-cta {
    gap: 12px;
  }
  .hero {
    gap: 30px;
    padding-block: 48px 57px;
  }
  body h1 {
    font-size: 55px;
    letter-spacing: -2.7px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-visual {
    height: 476px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 23px;
  }
  .insight-card {
    width: 240px;
    left: -20px;
    padding: 16px;
    bottom: 30px;
  }
  .expertise-strip-inner {
    gap: 20px;
  }
  .expertise-strip-inner > span {
    font-size: 11px;
    gap: 8px;
  }
  .expertise-strip p {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .strip-icon {
    width: 23px;
    height: 23px;
  }
  .section-space {
    padding-block: 70px;
  }
  body h2 {
    font-size: 38px;
  }
  .about {
    column-gap: 35px;
  }
  .about-copy p {
    font-size: 12px;
  }
  .about-copy p.lead {
    font-size: 16px;
  }
  .principles {
    gap: 18px;
  }
  .principles > div {
    padding-left: 24px;
  }
  .principles h3 {
    font-size: 11px;
  }
  .principles p {
    font-size: 10px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
  }
  .service-card {
    padding: 25px;
  }
  .service-card h3 {
    font-size: 27px;
  }
  .analytics-inner {
    gap: 35px;
  }
  .analytics h2 {
    font-size: 39px;
  }
  .analytics .eyebrow {
    font-size: 8px;
  }
  .analytics-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .dashboard {
    padding: 20px;
  }
  .dashboard-heading {
    flex-wrap: wrap;
  }
  .dashboard h3 {
    font-size: 15px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .dashboard-tabs {
    gap: 18px;
  }
  .dashboard-tabs button {
    font-size: 8px;
  }
  .metric-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .metric-comparison {
    font-size: 7px;
  }
  .chart-wrap {
    height: 135px;
    margin-top: 12px;
  }
  .chart-plot svg {
    height: 111px;
  }
  .chart-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .process-grid {
    gap: 30px;
  }
  .contact h2 {
    font-size: 51px;
  }
  .contact .eyebrow {
    font-size: 8px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }
  .footer-brand > p {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 20px;
  }
  body .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 79px;
  }
  .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 38px;
    padding-bottom: 42px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  body h1 {
    font-size: clamp(52px, 12vw, 73px);
    line-height: 1.04;
    margin-block: 23px;
    letter-spacing: -2.8px;
  }
  h1 br:nth-of-type(2) {
    display: none;
  }
  h1 em::after {
    content: ' ';
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.85;
    max-width: 430px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 49px;
    font-size: 11px;
    gap: 13px;
    padding-inline: 15px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 6px;
  }
  .hero-note {
    margin-top: 24px;
  }
  .hero-visual {
    height: 423px;
    margin-left: 13px;
  }
  .hero-visual > img {
    object-position: center 55%;
  }
  .insight-card {
    width: 255px;
    left: -13px;
    bottom: 27px;
    padding: 19px;
  }
  .image-caption {
    top: 17px;
    left: 17px;
    font-size: 7px;
  }
  .image-index {
    font-size: 6px;
    bottom: 12px;
  }
  .expertise-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 23px;
    gap: 22px 15px;
  }
  .expertise-strip p {
    font-size: 7px;
  }
  .expertise-strip-inner > span {
    font-size: 11px;
    gap: 9px;
  }
  .section-space {
    padding-block: 57px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  body h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }
  .section-intro .eyebrow, .section-heading .eyebrow {
    margin-bottom: 17px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .about-copy {
    padding-top: 27px;
  }
  .about-copy p {
    font-size: 13px;
  }
  .about-copy p.lead {
    font-size: 17px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }
  .principles > div {
    padding: 21px 0 21px 31px;
    border-bottom: 1px solid var(--line);
  }
  .principles > div > span {
    top: 24px;
  }
  .principles h3 {
    font-size: 13px;
  }
  .principles p {
    font-size: 11px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading > p {
    margin-top: 22px;
    font-size: 12px;
  }
  .service-grid {
    gap: 12px;
  }
  .service-card {
    padding: 21px 16px 18px;
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .service-icon {
    width: 30px;
    height: 30px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card > p {
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 23px;
  }
  .service-link {
    font-size: 10px;
  }
  .services-footnote {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.7;
    margin-top: 22px;
  }
  .services-footnote .status-dot {
    margin-top: 4px;
  }
  .analytics-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .analytics .eyebrow {
    margin-bottom: 18px;
  }
  .analytics h2 {
    font-size: 43px;
  }
  .analytics-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .analytics-note {
    margin-top: 24px;
  }
  .dashboard {
    padding: 23px;
    transform: none;
  }
  .dashboard-heading {
    flex-wrap: nowrap;
  }
  .dashboard-tabs {
    gap: 25px;
  }
  .dashboard-tabs button {
    font-size: 9px;
  }
  .metric-summary {
    flex-direction: row;
    align-items: flex-end;
  }
  .metric-comparison {
    font-size: 6px;
    padding: 6px;
  }
  .chart-wrap {
    height: 159px;
    margin-top: 23px;
  }
  .chart-plot svg {
    height: 137px;
  }
  .chart-footer {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .chart-footer > span:last-child {
    font-size: 5px;
  }
  .approach .section-heading {
    margin-bottom: 27px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-number {
    padding-top: 16px;
    margin-bottom: 17px;
  }
  .process-grid h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .process-grid p {
    font-size: 13px;
    max-width: 100%;
  }
  .contact {
    padding-block: 53px;
  }
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
  }
  .contact h2 {
    font-size: 51px;
  }
  .contact .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .contact p:last-child {
    font-size: 12px;
    line-height: 1.8;
  }
  .contact-button {
    min-width: 220px;
    font-size: 12px;
  }
  .site-footer {
    padding-top: 39px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand > p {
    margin-top: 16px;
  }
  .footer-main h3 {
    margin-bottom: 15px;
  }
  .footer-contact a, .footer-address address {
    font-size: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    font-size: 8px;
  }
  .footer-bottom > span {
    display: none;
  }
  .dialog-content {
    padding: 36px 25px 28px;
  }
  .dialog-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 359px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 370px;
  }
  .brand-name > span {
    font-size: 6px;
  }
  .chart-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .metric-summary {
    flex-direction: column;
    align-items: flex-start;
  }
}

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