:root {
  --pine: #143f36;
  --pine-deep: #10372f;
  --ivory: #f8f7f3;
  --paper: #ffffff;
  --muted: #68716b;
  --orange: #bd5333;
  --line: #dedfd5;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--pine);
  font-family: var(--sans);
  -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 #cc7754;
  outline-offset: 6px;
}

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

::selection {
  background: #d8e2cc;
  color: var(--pine);
}

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

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

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

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

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

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

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

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.15;
  letter-spacing: -1.6px;
}

h2 em {
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--pine);
  padding-bottom: 9px;
}

.text-link .icon, .button .icon, .header-cta .icon {
  transition: transform .2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 25px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition: background .2s ease, transform .2s ease;
}

.button-primary {
  color: white;
  background: var(--orange);
}

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

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

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

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

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 2.2px;
  line-height: 1.15;
}

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

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

.desktop-nav a {
  font-size: 12px;
  padding-block: 10px;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pine);
  transition: width .2s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid #8d9b8e;
  padding: 12px 19px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--pine);
  transition: transform .2s ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.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);
}

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

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 48px 65px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-top: 25px;
  padding-bottom: 18px;
}

.accent-line {
  width: 27px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 6.5vw, 91px);
  line-height: 1.01;
  letter-spacing: -3.8px;
  font-weight: 400;
  margin-top: 29px;
}

h1 em {
  color: #587052;
  font-weight: 400;
}

.hero-description {
  max-width: 375px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.hero-copy .button {
  margin-top: 28px;
}

.hero-footnote {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c756a;
  font-size: 10px;
  letter-spacing: .25px;
}

.small-cross {
  font-size: 25px;
  font-family: var(--sans);
  line-height: 1;
  color: #799174;
}

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

.hero-image {
  width: 100%;
  height: 566px;
  object-position: center 51%;
  border-radius: 150px 0 0 0;
}

.image-caption {
  position: absolute;
  top: 25px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: 1.2px;
  color: white;
  text-shadow: 0 1px 5px #000;
}

.caption-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e7ebd9;
}

.hero-note {
  position: absolute;
  bottom: 30px;
  left: -30px;
  width: 365px;
  padding: 23px 25px;
  background: var(--pine);
  color: #f0f0e6;
  display: flex;
  align-items: center;
  gap: 17px;
  box-shadow: 0 12px 35px #173f3614;
}

.note-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  color: #b1c0a3;
}

.hero-note span {
  font-size: 10px;
  color: #becbbf;
}

.hero-note p {
  font-family: var(--serif);
  font-size: 19px;
  margin-top: 5px;
  white-space: nowrap;
}

.hero-note > .icon {
  margin-left: auto;
  width: 19px;
}

.hero-contours {
  position: absolute;
  width: 650px;
  height: 235px;
  left: -40px;
  bottom: -76px;
  color: #dde3d6;
  opacity: .65;
  pointer-events: none;
}

.value-strip {
  border-block: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: center;
  padding-block: 26px;
  gap: 32px;
}

.value-grid p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.value-grid strong {
  font-weight: 500;
  color: var(--pine);
}

.value-grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-left: 1px solid var(--line);
  font-size: 11px;
}

.value-grid .icon {
  width: 16px;
  height: 16px;
  color: #7b8c68;
}

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

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

.section-intro {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  max-width: 360px;
  padding-bottom: 5px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  padding: 29px 25px 23px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: #fbfbf7;
  transition: background .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  background: #eef1e8;
  box-shadow: inset 0 3px 0 var(--orange);
}

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

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

.service-icon {
  width: 35px;
  height: 35px;
  stroke: #648063;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.5px;
  font-weight: 400;
}

.service-card > p {
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.service-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
}

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

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

.about {
  padding-top: 13px;
  padding-bottom: 108px;
}

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

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

.about-visual > img {
  width: 100%;
  height: 409px;
  object-position: 48% center;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 28px 0 0 28px;
  background: #e8eade;
  z-index: -1;
}

.about-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #e8eade;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 27px;
}

.about-caption .small-cross {
  font-size: 39px;
  color: #688463;
}

.about-caption p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

.about-caption strong {
  font-weight: 400;
}

.about-copy h2 {
  margin-bottom: 23px;
}

.about-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.95;
  color: var(--muted);
  margin-top: 14px;
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 24px;
}

.about-principles > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.about-principles .icon {
  width: 16px;
  height: 16px;
  color: #698763;
}

.about-copy .text-link {
  margin-top: 31px;
  font-size: 12px;
}

.insights {
  background: var(--pine-deep);
  color: var(--ivory);
  padding-block: 82px;
}

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

.insights-copy .eyebrow {
  color: #b2c0a7;
  margin-bottom: 22px;
}

.insights-copy h2 {
  font-size: clamp(44px, 4.5vw, 62px);
}

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

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

.insight-tabs {
  margin-top: 28px;
}

.insight-tab {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  padding: 17px 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff21;
  color: #b7c7b8;
  font-size: 12px;
  transition: color .2s ease;
}

.insight-tab[aria-selected="true"] {
  color: #fff;
}

.tab-number {
  font-size: 9px;
  color: #88a586;
}

.insight-tab > .icon {
  margin-left: auto;
  width: 17px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.insight-tab[aria-selected="true"] > .icon {
  opacity: 1;
  transform: translateX(0);
  color: #d8a17a;
}

.insight-tab:hover {
  color: white;
}

.dashboard-shell {
  background: #f3f5ee;
  color: var(--pine);
  border-radius: 5px;
  box-shadow: 0 20px 50px #00150d26;
  overflow: hidden;
}

.dashboard-top {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce2d6;
  gap: 12px;
}

.dashboard-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 600;
}

.status-dot {
  width: 5px;
  height: 5px;
  background: #628966;
  border-radius: 50%;
}

.demo-badge {
  background: #e5eadf;
  padding: 5px 8px;
  font-size: 8px;
  color: #5c6e56;
  border-radius: 3px;
}

.dashboard-panel {
  padding: 25px 25px 18px;
  min-height: 368px;
}

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

.dashboard-kicker {
  font-size: 7px;
  letter-spacing: 1px;
  color: #7c8677;
  margin-bottom: 6px;
}

.dashboard-heading h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.6px;
}

.period-label {
  font-size: 8px;
  border: 1px solid #dce1d4;
  padding: 6px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.metric + .metric {
  border-left: 1px solid #dce1d4;
  padding-left: 22px;
}

.metric > span {
  color: #74816f;
  font-size: 9px;
}

.metric strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-block: 7px 4px;
}

.metric strong .icon {
  width: 14px;
  height: 14px;
  color: #789572;
}

.metric small {
  color: #7d8776;
  font-size: 8px;
}

.chart-title {
  margin-block: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 8px;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #7b8875;
  font-size: 7px;
}

.chart-legend i {
  background: #60805c;
  width: 10px;
  height: 2px;
}

.performance-chart {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-insight {
  background: #e7eddf;
  padding: 10px 11px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  color: #5d7454;
}

.dashboard-insight .icon {
  width: 13px;
  height: 13px;
}

.dashboard-bottom {
  padding: 13px 24px;
  border-top: 1px solid #dce2d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #75816e;
  font-size: 8px;
}

.dashboard-bottom .icon {
  width: 17px;
  height: 17px;
}

.panel-description {
  color: #74816f;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 17px;
  margin-bottom: 15px;
}

.priority-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid #dce2d6;
  padding-block: 14px;
}

.priority-index {
  background: #e3e9dc;
  color: #66805f;
  padding: 6px;
  font-size: 9px;
}

.priority-row strong, .review-step strong {
  font-size: 12px;
  font-weight: 500;
}

.priority-row p, .review-step p {
  font-size: 10px;
  color: #74816f;
  line-height: 1.7;
  margin-top: 4px;
}

.owner-label {
  display: block;
  font-size: 7px;
  letter-spacing: .6px;
  color: #6e815f;
  margin-top: 7px;
}

.review-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 13px;
}

.review-step > span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #b7c5aa;
  border-radius: 50%;
  font-size: 9px;
}

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

.process-number {
  border-top: 1px solid #bac5b4;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.process-number > span {
  color: #8c9b80;
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}

.process-number > .icon {
  width: 21px;
  color: #78916a;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.5px;
}

.process-step p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 310px;
  margin-top: 14px;
}

.contact {
  background: #e9ecdf;
  position: relative;
  overflow: hidden;
  padding-block: 66px;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact .eyebrow {
  color: #617158;
  margin-bottom: 22px;
}

.contact h2 {
  font-size: clamp(38px, 4.2vw, 57px);
}

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

.contact-inner > div > p:last-child:not(.eyebrow) {
  font-size: 12px;
  color: #6e7865;
  margin-top: 20px;
}

.contact-action {
  text-align: center;
  padding-right: 46px;
}

.contact-asterisk {
  display: block;
  color: #acb89b;
  font-size: 67px;
  line-height: 1;
  margin-bottom: 17px;
  font-weight: 300;
}

.contact-action .button {
  gap: 38px;
}

.contact-action #conversation-context {
  max-width: 300px;
  font-size: 10px;
  line-height: 1.6;
  margin-top: 13px;
}

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

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

.footer-brand > p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 22px;
}

.footer-column h3 {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.1px;
  margin-bottom: 19px;
  color: #65785e;
}

.footer-column > a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 7px;
}

.footer-column > a:hover {
  color: var(--orange);
}

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

.footer-column address {
  font-style: normal;
  font-size: 11px;
  line-height: 1.9;
  max-width: 245px;
  color: #697362;
}

.copy-email {
  border: 0;
  background: none;
  padding: 0;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #708064;
  font-size: 9px;
}

.copy-email .icon {
  width: 12px;
  height: 12px;
}

.copy-email:hover {
  color: var(--orange);
}

.copy-status {
  display: block;
  font-size: 9px;
  line-height: 1.6;
  min-height: 16px;
  color: #5b7651;
  margin-top: 5px;
}

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

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

.footer-bottom a span {
  font-size: 18px;
}

@media (min-width: 1450px) {
  .hero {
    padding-block: 57px 74px;
  }

  .hero-image {
    height: 601px;
  }

  .hero-copy {
    padding-top: 33px;
  }

}

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

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

  .hero-grid {
    gap: 40px;
  }

  .hero-image {
    height: 560px;
  }

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

  h1 {
    font-size: 73px;
  }

  .hero-note {
    width: 325px;
    padding: 20px;
    gap: 12px;
  }

  .hero-note p {
    font-size: 17px;
  }

  .value-grid {
    gap: 20px;
  }

  .value-grid > span {
    font-size: 10px;
    gap: 7px;
  }

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

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

  .service-link {
    font-size: 9px;
  }

  .about-grid {
    gap: 50px;
  }

  .insights-grid {
    gap: 55px;
  }

  .contact-action {
    padding-right: 0;
  }

  .footer-main {
    gap: 35px;
  }

}

@media (max-width: 900px) {
  .site-container {
    width: calc(100% - 56px);
  }

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

  .desktop-nav {
    gap: 18px;
    margin-right: 0;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-text > span {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    gap: 13px;
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero {
    padding-block: 32px 46px;
  }

  .hero-grid {
    gap: 32px;
  }

  h1 {
    font-size: 61px;
    letter-spacing: -3px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-image {
    height: 490px;
    border-top-left-radius: 115px;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-copy .button {
    font-size: 11px;
    padding: 16px 20px;
    gap: 22px;
  }

  .hero-footnote {
    font-size: 8px;
    margin-top: 23px;
  }

  .hero-note {
    width: 290px;
    left: -20px;
    padding: 17px;
  }

  .hero-note p {
    font-size: 15px;
  }

  .hero-note span {
    font-size: 9px;
  }

  .note-icon {
    width: 29px;
    height: 29px;
  }

  .image-caption {
    top: 20px;
    right: 12px;
    font-size: 6px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 19px 28px;
    padding-block: 24px;
  }

  .value-grid p {
    font-size: 11px;
  }

  .value-grid > span {
    justify-content: flex-start;
    border: 0;
    font-size: 11px;
  }

  .value-grid > span:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 30px;
  }

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

  h2 {
    font-size: 35px;
  }

  .section-intro {
    max-width: 270px;
    font-size: 11px;
  }

  .desktop-break {
    display: none;
  }

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

  .service-card {
    padding: 28px;
  }

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

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

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

  .service-link {
    font-size: 11px;
  }

  .about {
    padding-top: 0;
  }

  .about-grid {
    gap: 32px;
  }

  .about-visual > img {
    height: 390px;
  }

  .about-copy h2 {
    font-size: 31px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 11px;
  }

  .about-principles {
    gap: 12px;
  }

  .about-caption {
    padding: 17px;
    gap: 13px;
  }

  .about-caption p {
    font-size: 14px;
  }

  .insights-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
  }

  .insights-copy .eyebrow {
    font-size: 8px;
  }

  .insights-copy h2 {
    font-size: 48px;
  }

  .insight-tab {
    font-size: 10px;
    gap: 9px;
  }

  .dashboard-top {
    padding: 17px;
  }

  .dashboard-top > span:first-child {
    font-size: 7px;
    letter-spacing: .6px;
  }

  .dashboard-panel {
    padding: 20px 17px 17px;
    min-height: 340px;
  }

  .dashboard-heading h3 {
    font-size: 18px;
  }

  .period-label {
    font-size: 7px;
  }

  .metric strong {
    font-size: 26px;
  }

  .chart-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .dashboard-insight {
    font-size: 7px;
  }

  .process-grid {
    gap: 28px;
  }

  .process-step p {
    font-size: 11px;
  }

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

  .contact-action .button {
    gap: 18px;
    font-size: 11px;
  }

  .footer-main {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand > p {
    margin-top: 0;
  }

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 24px;
  }

  .site-container {
    width: calc(100% - 44px);
  }

  .header-inner {
    height: 78px;
  }

  .brand-text {
    font-size: 17px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .desktop-nav, .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-block: 35px 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    padding: 0;
  }

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

  h1 {
    font-size: clamp(57px, 14vw, 80px);
    letter-spacing: -2.8px;
    margin-top: 25px;
    line-height: 1.03;
  }

  .hero-description {
    font-size: 14px;
    margin-top: 23px;
    max-width: 400px;
    line-height: 1.8;
  }

  .hero-copy .button {
    margin-top: 25px;
    font-size: 12px;
    padding: 17px 22px;
    gap: 31px;
  }

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

  .hero-image {
    height: 390px;
    border-top-left-radius: 110px;
    object-position: center 53%;
  }

  .hero-note {
    left: -8px;
    bottom: 20px;
    padding: 20px;
    width: min(310px, calc(100% - 14px));
  }

  .hero-note p {
    font-size: 16px;
  }

  .hero-note span {
    font-size: 9px;
  }

  .image-caption {
    font-size: 6px;
    right: 14px;
    top: 22px;
  }

  .hero-contours {
    display: none;
  }

  .value-grid {
    gap: 20px 16px;
    padding-block: 25px;
  }

  .value-grid > span {
    font-size: 9px;
    gap: 7px;
    line-height: 1.6;
  }

  .value-grid p {
    font-size: 10px;
  }

  .value-grid > span:nth-child(even) {
    padding-left: 14px;
  }

  .value-grid .icon {
    width: 13px;
    height: 13px;
  }

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

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
  }

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

  h2 {
    font-size: 35px;
    letter-spacing: -1.25px;
  }

  .section-intro {
    font-size: 13px;
    line-height: 1.8;
    max-width: 350px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 27px;
  }

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

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

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

  .service-card > p {
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
  }

  .service-link {
    font-size: 11px;
  }

  .about {
    padding-top: 5px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual {
    padding-right: 18px;
    padding-bottom: 20px;
  }

  .about-visual > img {
    height: 320px;
    object-position: 48% center;
  }

  .about-caption {
    padding: 18px 20px;
  }

  .about-caption p {
    font-size: 15px;
  }

  .about-copy h2 {
    font-size: 35px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.85;
  }

  .about-principles {
    gap: 15px 18px;
  }

  .about-principles > span {
    font-size: 10px;
  }

  .about-copy .text-link {
    font-size: 12px;
    margin-top: 26px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .insights-copy .eyebrow {
    font-size: 9px;
  }

  .insights-copy h2 {
    font-size: 50px;
  }

  .insights-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 400px;
  }

  .insight-tabs {
    margin-top: 23px;
  }

  .insight-tab {
    font-size: 12px;
    padding-block: 18px;
  }

  .dashboard-panel {
    min-height: 356px;
    padding: 23px 18px 18px;
  }

  .dashboard-heading h3 {
    font-size: 20px;
  }

  .dashboard-top {
    padding: 18px;
  }

  .dashboard-top > span:first-child {
    font-size: 7px;
  }

  .metric strong {
    font-size: 29px;
  }

  .chart-title {
    margin-top: 23px;
  }

  .dashboard-bottom {
    padding-inline: 18px;
    font-size: 7px;
  }

  .priority-row strong, .review-step strong {
    font-size: 12px;
  }

  .priority-row p, .review-step p {
    font-size: 11px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .process-number {
    padding-top: 15px;
    margin-bottom: 14px;
  }

  .process-step h3 {
    font-size: 29px;
  }

  .process-step p {
    font-size: 13px;
    max-width: 100%;
    margin-top: 10px;
  }

  .contact {
    padding-block: 50px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

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

  .contact-inner > div > p:last-child:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 18px;
  }

  .contact-action {
    text-align: left;
  }

  .contact-asterisk {
    display: none;
  }

  .contact-action .button {
    font-size: 12px;
    gap: 35px;
  }

  .contact-action #conversation-context {
    font-size: 10px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-bottom: 30px;
  }

  .footer-brand {
    display: block;
    grid-column: auto;
  }

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

  .footer-column h3 {
    font-size: 8px;
    margin-bottom: 13px;
  }

  .footer-column > a {
    font-size: 13px;
  }

  .footer-column address {
    font-size: 12px;
    max-width: 280px;
  }

  .copy-email {
    font-size: 11px;
    min-height: 28px;
    margin-top: 9px;
  }

  .footer-bottom {
    font-size: 8px;
    gap: 14px;
    padding-block: 20px;
  }

  .footer-bottom a {
    gap: 8px;
    white-space: nowrap;
  }

}

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

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

}
