:root {
  --paper: #f7f6f0;
  --ink: #303a2d;
  --muted: #73766b;
  --olive: #394732;
  --terracotta: #ad5c43;
  --line: #dddfd3;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

button, input {
  color: inherit;
}

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 5px;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 em, h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

p {
  line-height: 1.75;
}

[hidden] {
  display: none !important;
}

::selection {
  background: #dfbba5;
  color: #293125;
}

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

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

.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;
  z-index: 100;
  top: -80px;
  left: 20px;
  padding: 14px 20px;
  background: var(--olive);
  color: white;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 20;
}

.header-inner {
  height: 104px;
  gap: 32px;
}

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

.brand-word {
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: -1.8px;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 1.35px;
  margin-top: 9px;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  gap: 3px;
  transform: rotate(-3deg);
}

.brand-mark i {
  background: var(--olive);
  border-radius: 8px 0 8px 0;
}

.brand-mark i:nth-child(2), .brand-mark i:nth-child(3) {
  background: var(--terracotta);
  border-radius: 0 8px 0 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
}

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

.desktop-nav a:hover, .footer-bottom a:hover {
  color: var(--terracotta);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  min-height: 54px;
  padding: 15px 23px;
  background: var(--olive);
  color: var(--paper);
  font-size: 12px;
  border: 1px solid var(--olive);
  transition: background .2s, transform .2s;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 19px;
  gap: 30px;
  margin-left: 14px;
}

.button .icon {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
}

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

.mobile-menu {
  position: absolute;
  inset: 79px 0 auto;
  padding: 16px 25px 25px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 20px #303a2d0a;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 62px;
  padding-top: 57px;
  padding-bottom: 74px;
  align-items: center;
}

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

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

h1 {
  font-size: clamp(52px, 5.2vw, 75px);
  line-height: 1.09;
  letter-spacing: -3.6px;
  margin: 29px 0 25px;
}

.hero-description {
  font-size: 14px;
  max-width: 398px;
  color: #75786e;
  line-height: 1.9;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #a6aa98;
  transition: color .2s, gap .2s;
}

.text-link:hover {
  gap: 21px;
  color: var(--terracotta);
}

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

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 51px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2px;
}

.small-line {
  width: 26px;
  height: 1px;
  background: #9eaa8f;
}

.hero-visual {
  position: relative;
  padding-bottom: 23px;
}

.photo-frame {
  height: 552px;
  border-radius: 3px;
  overflow: hidden;
  background: #d9d5c6;
}

.photo-frame img {
  height: 100%;
  object-position: 45% 50%;
}

.image-label {
  position: absolute;
  top: 22px;
  left: 21px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  background: #f7f6f0ed;
  font-size: 7px;
  letter-spacing: 1px;
}

.image-label .status-dot {
  width: 4px;
  height: 4px;
}

.perspective-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  bottom: 48px;
  left: -32px;
  padding: 24px 25px;
  background: var(--paper);
  box-shadow: 0 8px 35px #2e332218;
  width: 345px;
}

.card-asterisk {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 53px;
  line-height: 1;
}

.micro-label {
  font-size: 8px;
  letter-spacing: 1.3px;
  font-weight: 500;
  line-height: 1.7;
}

.perspective-card .micro-label {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 1.2px;
}

.perspective-card p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  margin-top: 7px;
  letter-spacing: -.4px;
}

.perspective-card > .icon {
  margin-left: auto;
  align-self: flex-start;
  width: 17px;
  height: 17px;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.principles-band {
  border-block: 1px solid var(--line);
}

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

.principles-grid > p {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.5px;
}

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

.principles-grid .icon {
  width: 25px;
  height: 25px;
  color: #758065;
  stroke-width: 1.25;
}

.section-space {
  padding-top: 99px;
  padding-bottom: 99px;
}

.section-number {
  color: var(--terracotta);
  margin-right: 5px;
}

h2 {
  font-size: clamp(36px, 3.55vw, 50px);
  line-height: 1.13;
  letter-spacing: -1.6px;
  margin-top: 23px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  gap: 100px;
  margin-top: 43px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  height: 326px;
}

.image-index {
  display: block;
  font-size: 7px;
  color: var(--muted);
  letter-spacing: 1.4px;
  padding-top: 14px;
}

.about-copy h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.5px;
  margin-bottom: 17px;
}

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

.about-principle {
  display: flex;
  gap: 19px;
  padding: 17px 0 10px;
  align-items: center;
}

.about-principle > span {
  color: var(--terracotta);
  font-size: 29px;
}

.about-principle p {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}

.about-principle strong {
  font-weight: 400;
  color: var(--ink);
}

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

.expertise-section {
  background: #eeefe6;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.section-description {
  width: 300px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  margin-top: 44px;
  align-items: start;
}

.service-card {
  background: var(--paper);
  padding: 30px 28px 24px;
  border: 1px solid #e3e5d9;
  transition: border-color .25s;
}

.service-card:hover {
  border-color: #a5ad98;
}

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

.service-icon {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 1.2;
}

.service-top > span {
  color: #a0a594;
  font-family: var(--serif);
  font-size: 17px;
}

.service-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -.65px;
  margin-bottom: 15px;
}

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

.service-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  border: none;
  border-top: 1px solid var(--line);
  background: none;
  padding: 21px 0 0;
  margin-top: 26px;
  text-align: left;
}

.service-toggle > span {
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s;
}

.service-toggle[aria-expanded="true"] > span {
  transform: rotate(45deg);
}

.service-details {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
  font-size: 11px;
}

.service-details ul {
  padding-left: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 10px 0 20px;
}

.service-details li {
  margin: 7px 0;
}

.service-details a {
  color: var(--terracotta);
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 27px;
  letter-spacing: .2px;
}

.services-note .status-dot {
  background: #889575;
  width: 4px;
  height: 4px;
}

.insights-section {
  background: #303e2c;
  color: var(--paper);
  position: relative;
}

.insights-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 95px;
  align-items: center;
}

.insights-copy .eyebrow {
  color: #d2d7c8;
}

.insights-copy .section-number {
  color: #c8a587;
}

.insights-copy h2 {
  font-size: 59px;
  line-height: 1.07;
}

.insights-copy h2 em {
  color: #c9b597;
}

.insights-copy > p:not(.eyebrow) {
  font-size: 12px;
  color: #bec7b6;
  max-width: 325px;
  margin-top: 24px;
  line-height: 1.9;
}

.insight-benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0 18px;
}

.insight-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  color: #dde2d6;
  padding: 6px 0;
}

.insight-benefits .icon {
  width: 15px;
  height: 15px;
  color: #bcc8a5;
}

.light-link {
  border-color: #78846d;
  color: #e2e6d9;
  font-size: 11px;
}

.light-link:hover {
  color: #dfbd9c;
}

.dashboard {
  background: var(--paper);
  padding: 28px;
  color: var(--ink);
  border-radius: 5px;
  box-shadow: 0 20px 60px #14220e35;
}

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

.dashboard-heading .micro-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.dashboard-heading h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: -.5px;
}

.demo-badge {
  border: 1px solid #daddcf;
  color: #7e8572;
  font-size: 8px;
  letter-spacing: 1px;
  padding: 5px 7px;
  border-radius: 3px;
}

.dashboard-tabs {
  display: flex;
  gap: 19px;
  border-bottom: 1px solid var(--line);
  margin: 24px 0 24px;
}

.dashboard-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 0 12px;
  background: none;
  font-size: 11px;
  color: var(--muted);
  position: relative;
  margin-bottom: -1px;
  transition: color .2s;
}

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

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

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 25px;
  margin-bottom: 28px;
}

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

.dashboard-metrics p {
  font-family: var(--serif);
  font-size: 37px;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin: 5px 0;
}

.dashboard-metrics p span {
  font-size: 24px;
}

.dashboard-metrics small {
  font-size: 9px;
  color: #687d53;
}

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

.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
}

.chart-heading > span:last-child {
  color: #858a7b;
  font-size: 8px;
  letter-spacing: 1px;
}

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

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

.chart-axis {
  fill: #969b8c;
  font-family: var(--sans);
  font-size: 11px;
}

.chart-target {
  stroke: #a4af90;
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  fill: none;
}

#chart-line {
  stroke: var(--terracotta);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

#chart-dot {
  fill: var(--terracotta);
  stroke: var(--paper);
  stroke-width: 2;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 15px;
}

.chart-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 12px;
  height: 2px;
}

.legend-actual {
  background: var(--terracotta);
}

.legend-target {
  border-top: 1px dashed #97a784;
}

.chart-legend .live-indicator {
  margin-left: auto;
  color: #959c89;
  font-size: 8px;
}

.dashboard-takeaway {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  background: #ecede3;
  margin-top: 20px;
}

.dashboard-takeaway > span {
  font-size: 20px;
  color: #7c8769;
}

.dashboard-takeaway p {
  font-size: 10px;
  line-height: 1.6;
}

.dashboard-disclaimer {
  color: #acb6a2;
  font-size: 9px;
  text-align: center;
  padding-top: 14px;
}

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

.approach-grid article {
  border-top: 1px solid #cbd0c0;
  padding-top: 19px;
}

.step-number {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.approach-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -.5px;
  margin: 24px 0 12px;
}

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

.contact-section {
  background: #e9dfd2;
  padding: 77px 0 55px;
}

.contact-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  padding-bottom: 54px;
  border-bottom: 1px solid #cfc6b8;
}

.contact-intro h2 {
  font-size: 61px;
  line-height: 1.1;
  margin-top: 24px;
  letter-spacing: -2px;
}

.contact-intro .eyebrow {
  color: #767262;
  font-size: 8px;
}

.contact-invitation {
  width: 300px;
  padding-top: 30px;
}

.contact-invitation p {
  font-size: 12px;
  color: #777566;
  line-height: 1.85;
  margin-bottom: 23px;
}

.contact-invitation > span {
  display: block;
  font-size: 8px;
  color: #817d6d;
  margin-top: 13px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1.1fr;
  gap: 45px;
  padding-top: 36px;
}

.contact-details .micro-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 7px;
  color: #797c6b;
  margin-bottom: 13px;
}

.contact-details .icon {
  width: 16px;
  height: 16px;
  stroke-width: 1.25;
}

.contact-details a {
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

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

.contact-details a > span {
  margin-left: 10px;
}

.contact-details address {
  font-size: 11px;
  font-style: normal;
  line-height: 1.8;
}

.site-footer {
  padding-top: 42px;
  padding-bottom: 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  padding-bottom: 35px;
}

.footer-brand .brand-word {
  font-size: 32px;
}

.footer-brand .brand-sub {
  font-size: 6px;
}

.legal-name {
  max-width: 460px;
  text-align: right;
  font-size: 9px;
  letter-spacing: .7px;
  color: #747b68;
  line-height: 1.9;
}

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

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

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

@media (min-width: 1500px) {
  .hero {
    gap: 80px;
  }
  h1 {
    font-size: 78px;
  }
  .photo-frame {
    height: 584px;
  }
}

@media (max-width: 1150px) {
  .page-shell {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav {
    gap: 24px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .hero {
    gap: 40px;
  }
  h1 {
    font-size: 60px;
    letter-spacing: -3px;
  }
  .photo-frame {
    height: 525px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    gap: 15px;
    padding-inline: 16px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .about-grid {
    gap: 55px;
  }
  .insights-grid {
    gap: 45px;
  }
  .dashboard {
    padding: 23px;
  }
  .service-card {
    padding: 25px 23px 21px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card > p {
    min-height: 112px;
  }
  .principles-grid {
    gap: 20px;
  }
  .principles-grid > div {
    font-size: 10px;
    gap: 11px;
  }
  .principles-grid > p {
    font-size: 7px;
  }
  .contact-details {
    gap: 25px;
  }
  .contact-details a {
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner {
    height: 80px;
  }
  .hero {
    gap: 30px;
  }
  h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  .photo-frame {
    height: 490px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-footnote {
    margin-top: 27px;
    font-size: 8px;
  }
  .perspective-card {
    left: -15px;
    width: 290px;
    padding: 20px;
    gap: 15px;
  }
  .perspective-card p {
    font-size: 21px;
  }
  .card-asterisk {
    font-size: 44px;
  }
  .image-label {
    font-size: 5px;
    left: 15px;
    padding: 8px;
  }
  .principles-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 28px;
    gap: 25px;
  }
  .principles-grid > div {
    font-size: 11px;
  }
  .section-space {
    padding-block: 75px;
  }
  .about-grid {
    gap: 35px;
  }
  .about-image-wrap img {
    height: 350px;
  }
  .about-copy h3 {
    font-size: 25px;
  }
  .section-heading-row {
    gap: 40px;
  }
  .section-description {
    width: 230px;
  }
  .service-card {
    padding-inline: 18px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card > p {
    font-size: 11px;
    min-height: 130px;
  }
  .service-toggle {
    font-size: 9px;
    line-height: 1.6;
  }
  .insights-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
  }
  .insights-copy h2 {
    font-size: 48px;
  }
  .dashboard {
    padding: 20px;
  }
  .dashboard-heading h3 {
    font-size: 21px;
  }
  .demo-badge {
    display: none;
  }
  .dashboard-metrics {
    gap: 10px;
  }
  .dashboard-metrics p {
    font-size: 31px;
  }
  .dashboard-metrics small {
    font-size: 9px;
  }
  .secondary-metric {
    padding-left: 14px;
  }
  .dashboard-tabs {
    gap: 15px;
  }
  .dashboard-tabs button {
    font-size: 11px;
  }
  .chart-legend .live-indicator {
    display: none;
  }
  .approach-grid {
    gap: 27px;
  }
  .approach-grid h3 {
    font-size: 21px;
  }
  .contact-intro h2 {
    font-size: 49px;
  }
  .contact-intro {
    gap: 40px;
  }
  .contact-invitation {
    width: 240px;
  }
  .contact-details {
    grid-template-columns: 1.2fr .7fr 1.1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 25px;
  }
  .page-shell {
    width: calc(100% - 44px);
  }
  .header-inner {
    height: 80px;
    gap: 15px;
  }
  .brand-word {
    font-size: 31px;
  }
  .brand-sub {
    font-size: 6px;
    letter-spacing: 1.1px;
  }
  .brand-mark {
    grid-template-columns: repeat(2, 11px);
    grid-template-rows: repeat(2, 11px);
  }
  .brand {
    gap: 10px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 43px;
    padding-bottom: 44px;
    gap: 34px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  h1 {
    font-size: clamp(46px, 11.6vw, 70px);
    letter-spacing: -2.5px;
    line-height: 1.07;
    margin-top: 23px;
    margin-bottom: 22px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 380px;
    line-height: 1.85;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
  }
  .hero-actions .button {
    min-height: 49px;
    padding: 12px 16px;
    font-size: 10px;
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 9px;
    gap: 8px;
  }
  .hero-footnote {
    margin-top: 24px;
    font-size: 8px;
  }
  .hero-visual {
    padding-bottom: 23px;
    margin-left: 10px;
  }
  .photo-frame {
    height: 410px;
  }
  .photo-frame img {
    object-position: 50% 53%;
  }
  .image-label {
    left: 16px;
    top: 17px;
    font-size: 6px;
    padding: 9px;
  }
  .perspective-card {
    left: -10px;
    bottom: 45px;
    width: 285px;
    padding: 18px 20px;
  }
  .perspective-card p {
    font-size: 23px;
  }
  .photo-caption {
    font-size: 6px;
  }
  .principles-grid {
    gap: 23px 16px;
    padding-block: 27px;
  }
  .principles-grid > p {
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .principles-grid > div {
    font-size: 9px;
    gap: 9px;
  }
  .principles-grid .icon {
    width: 20px;
    height: 20px;
  }
  .section-space {
    padding-block: 60px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
    gap: 8px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
    margin-top: 19px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 29px;
  }
  .about-image-wrap img {
    height: 250px;
  }
  .image-index {
    font-size: 6px;
  }
  .about-copy h3 {
    font-size: 27px;
  }
  .about-copy > p {
    font-size: 12px;
  }
  .about-principle {
    padding-top: 9px;
  }
  .section-heading-row {
    display: block;
  }
  .section-description {
    width: 100%;
    max-width: 350px;
    margin-top: 22px;
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .service-card {
    padding: 25px 25px 22px;
  }
  .service-top {
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 28px;
  }
  .service-card > p {
    min-height: 0;
    font-size: 12px;
  }
  .service-toggle {
    margin-top: 22px;
    padding-top: 18px;
    font-size: 11px;
    min-height: 44px;
  }
  .services-note {
    font-size: 8px;
    margin-top: 22px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .insights-copy h2 {
    font-size: 53px;
  }
  .insights-copy > p:not(.eyebrow) {
    max-width: 370px;
  }
  .insight-benefits li {
    font-size: 11px;
  }
  .dashboard {
    padding: 23px 20px;
  }
  .dashboard-heading h3 {
    font-size: 23px;
  }
  .demo-badge {
    display: inline-block;
  }
  .dashboard-tabs {
    gap: 21px;
  }
  .dashboard-tabs button {
    font-size: 11px;
    padding-top: 5px;
  }
  .dashboard-metrics {
    gap: 16px;
  }
  .dashboard-metrics p {
    font-size: 35px;
  }
  .dashboard-metrics small {
    font-size: 9px;
  }
  .dashboard-takeaway p {
    font-size: 10px;
  }
  .dashboard-disclaimer {
    font-size: 9px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 32px;
  }
  .approach-grid article {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 17px;
    padding-top: 21px;
  }
  .approach-grid h3 {
    margin: 3px 0 12px;
    font-size: 24px;
  }
  .approach-grid p {
    grid-column: 2;
    max-width: 100%;
  }
  .contact-section {
    padding-block: 54px 39px;
  }
  .contact-intro {
    display: block;
    padding-bottom: 32px;
  }
  .contact-intro h2 {
    font-size: 44px;
    letter-spacing: -1.6px;
  }
  .contact-invitation {
    width: 100%;
    padding-top: 26px;
  }
  .contact-invitation p {
    margin-bottom: 21px;
  }
  .contact-invitation .button {
    font-size: 11px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 30px;
  }
  .contact-details .micro-label {
    margin-bottom: 9px;
  }
  .contact-details a {
    font-size: 12px;
  }
  .contact-details address {
    max-width: 330px;
    font-size: 11px;
  }
  .site-footer {
    padding-block: 32px 24px;
  }
  .footer-main {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 25px;
  }
  .legal-name {
    text-align: left;
    font-size: 9px;
    max-width: 330px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 17px;
    font-size: 9px;
  }
  .footer-bottom > span {
    display: none;
  }
}

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