@charset "UTF-8";
:root {
  --paper: #f6f5f1;
  --ink: #252822;
  --muted: #71736c;
  --coral: #eb623e;
  --line: #ddded6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

button {
  cursor: pointer;
}

button:focus-visible, a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

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

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

[hidden] {
  display: none !important;
}

::selection {
  background: #eb623e;
  color: white;
}

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

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

.text-coral {
  color: var(--coral);
}

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

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

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

.site-header > div {
  min-height: 98px;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -1px;
  white-space: nowrap;
}

.brand-symbol {
  width: 40px;
  height: 40px;
}

.brand-dot {
  color: var(--coral);
}

.brand-dash {
  margin: 0 1px;
}

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

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 180ms ease;
}

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

.button {
  min-height: 51px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 180ms, transform 180ms;
}

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

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

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

.button-dark:hover {
  background: #3c4236;
}

.button-coral {
  background: var(--coral);
  color: #20241f;
}

.button-coral:hover {
  background: #f47754;
}

.header-cta {
  min-height: 45px;
  padding: 12px 21px;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  padding-top: 44px;
  padding-bottom: 62px;
}

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

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

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--coral);
}

h1 {
  margin: 24px 0 24px;
  font-size: clamp(60px, 5.6vw, 82px);
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: -4.8px;
}

.hero-description {
  color: #6b6e67;
  max-width: 390px;
  font-size: 15px;
  line-height: 1.8;
}

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

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

.text-link span {
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
}

.small-cross {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  font-size: 25px;
  font-weight: 300;
  border: 1px solid #cbcec3;
  border-radius: 50%;
  color: #747c68;
}

.hero-note p {
  color: #878980;
  font-size: 10px;
  line-height: 1.9;
}

.hero-note strong {
  font-weight: 400;
  color: #676c5f;
}

.hero-visual {
  height: 562px;
  position: relative;
  background: #64716d;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-position: center 53%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 30, 32, .3), transparent 40%, rgba(14, 26, 26, .28));
  pointer-events: none;
}

.image-topline {
  position: absolute;
  top: 25px;
  left: 28px;
  right: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  letter-spacing: 1.7px;
}

.image-topline > span:last-child {
  font-size: 26px;
  font-weight: 300;
}

.hero-image-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 151px;
  left: 28px;
  z-index: 1;
  color: white;
  font-size: 12px;
}

.caption-line {
  width: 25px;
  height: 1px;
  background: rgba(255,255,255,.7);
}

.insight-note {
  position: absolute;
  bottom: 29px;
  left: -28px;
  z-index: 2;
  background: var(--paper);
  min-width: 326px;
  padding: 23px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 7px 25px #17251c12;
}

.mini-label {
  font-size: 9px;
  letter-spacing: 1.25px;
  font-weight: 600;
}

.insight-note .mini-label {
  font-size: 7px;
  color: #6f7468;
  letter-spacing: 1.1px;
}

.insight-note p {
  font-size: 17px;
  letter-spacing: -.45px;
  line-height: 1.35;
  margin-top: 7px;
}

.insight-icon {
  height: 47px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 6px;
  border-bottom: 1px solid #dddfd6;
}

.insight-icon span {
  width: 7px;
  background: #dedfd6;
}

.insight-icon span:nth-child(1) {
  height: 12px;
}

.insight-icon span:nth-child(2) {
  height: 20px;
}

.insight-icon span:nth-child(3) {
  height: 26px;
}

.insight-icon span:nth-child(4) {
  height: 36px;
  background: var(--coral);
}

.insight-arrow {
  margin-left: auto;
  align-self: flex-start;
  color: var(--coral);
  font-size: 24px;
}

.image-coordinate {
  position: absolute;
  right: 0;
  bottom: -21px;
  font-size: 7px;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.discipline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  letter-spacing: -.5px;
}

.strip-plus {
  color: #9a9f92;
  font-size: 21px;
  font-weight: 300;
}

.strip-mark {
  color: var(--coral);
  font-size: 28px;
}

h2 {
  font-size: clamp(34px, 3.3vw, 47px);
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: -1.95px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

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

.section-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  max-width: 390px;
  justify-self: end;
  padding-bottom: 3px;
}

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

.service-card {
  border: 1px solid var(--line);
  padding: 30px 28px 23px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, background 200ms, transform 200ms;
}

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

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

.service-top .mini-label {
  color: #7a7c72;
  font-size: 8px;
}

.service-top svg {
  width: 40px;
  height: 40px;
  color: #6b735f;
}

.service-card h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.7px;
  margin-bottom: 18px;
}

.service-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 23px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 25px;
}

.service-tags span {
  border: 1px solid #e0e2d8;
  padding: 5px 7px;
  font-size: 8px;
  color: #6b7061;
  background: #eef0e7;
}

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

.service-link span {
  font-size: 22px;
  font-weight: 400;
  color: var(--coral);
}

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

.about-section {
  background: #edece6;
}

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

.about-image {
  position: relative;
  height: 420px;
}

.about-image img {
  width: 100%;
  height: 100%;
}

.about-image-label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 21px;
  left: 21px;
  padding: 14px 16px;
  background: var(--paper);
  font-size: 8px;
  letter-spacing: 1.35px;
}

.about-copy h2 {
  margin: 20px 0 25px;
}

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

.about-principles {
  display: flex;
  gap: 25px;
  border-top: 1px solid #d5d7cc;
  padding-top: 21px;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 9px;
}

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

.about-principles > span > span {
  color: var(--coral);
  font-size: 17px;
}

.analytics-section {
  padding-bottom: 0;
}

.analytics-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 55px;
  background: #292f28;
  padding: 64px 54px;
  color: var(--paper);
}

.analytics-copy {
  align-self: center;
}

.analytics-copy .eyebrow {
  color: #c1c6b7;
  font-size: 8px;
  letter-spacing: 1.25px;
}

.analytics-copy h2 {
  margin: 23px 0;
  font-size: 52px;
  letter-spacing: -2px;
}

.analytics-copy > p:not(.eyebrow) {
  color: #b7beae;
  font-size: 13px;
  line-height: 1.85;
  max-width: 335px;
}

.light-link {
  margin-top: 25px;
  color: #f0f0e9;
}

.light-link span {
  color: var(--coral);
}

.dashboard {
  background: var(--paper);
  color: var(--ink);
  padding: 27px 25px 19px;
  border-radius: 3px;
  transform: rotate(-2deg);
  box-shadow: 0 15px 20px #11180f18;
}

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

.dashboard-heading .mini-label {
  color: var(--muted);
  font-size: 7px;
}

.dashboard-heading h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.4px;
  margin-top: 7px;
}

.dashboard-icon {
  display: grid;
  place-items: center;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.chart-tabs {
  display: flex;
  gap: 5px;
  margin-top: 23px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.chart-tab {
  border: 1px solid transparent;
  padding: 7px 12px;
  background: transparent;
  font-size: 9px;
  color: var(--muted);
  border-radius: 3px;
  transition: background 150ms;
}

.chart-tab.active {
  color: var(--ink);
  background: #e5e8dd;
}

.chart-tab:hover {
  border-color: #d1d6c6;
}

.chart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
}

.metric-value {
  font-size: 36px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.metric-value > span {
  font-size: 25px;
}

.chart-summary p {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  margin-top: 4px;
}

.trend-badge {
  color: #52684c;
  font-size: 7px;
  background: #e7ebdf;
  border-radius: 3px;
  padding: 6px;
  white-space: nowrap;
}

.chart-container {
  height: 150px;
  position: relative;
  margin-top: 21px;
  padding-left: 25px;
}

.chart-grid {
  position: absolute;
  inset: 0 0 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid span {
  width: 100%;
  color: #92978c;
  font-size: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-grid span::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e2e4dc;
}

.chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 12px;
  height: 100%;
  position: relative;
}

.chart-bars > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 35px;
}

.chart-bars > div > span {
  width: 100%;
  height: var(--bar-height);
  max-height: calc(100% - 23px);
  background: #bcc4ad;
  border-radius: 2px 2px 0 0;
  transition: height 350ms ease;
}

.chart-bars > div:nth-last-child(2) > span {
  background: #929f7d;
}

.chart-bars > div:last-child > span {
  background: var(--coral);
}

.chart-bars small {
  height: 23px;
  font-size: 7px;
  padding-top: 10px;
  color: #888d80;
}

.dashboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  margin-top: 14px;
  color: #747b68;
  font-size: 7px;
}

.dashboard-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dashboard-footer i {
  width: 4px;
  height: 4px;
  background: #8a9a76;
  border-radius: 50%;
}

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

.approach-section {
  padding-top: 104px;
  padding-bottom: 108px;
}

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

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cacdbf;
  padding-top: 18px;
  margin-bottom: 28px;
  color: #898f7c;
  font-size: 11px;
}

.process-number > span:last-child {
  font-size: 20px;
  color: var(--coral);
}

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

.process-grid p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 315px;
}

.contact-section {
  background: #eaece3;
  padding: 75px 0 49px;
}

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

.contact-top h2 {
  font-size: clamp(46px, 5vw, 69px);
  margin-top: 24px;
  line-height: 1.05;
  letter-spacing: -3px;
}

.contact-top h2 > span {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.contact-top p:not(.eyebrow) {
  font-size: 13px;
  color: #6d7563;
  margin-top: 21px;
}

.contact-circle {
  width: 147px;
  height: 147px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #afb6a2;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  margin-right: 62px;
  transition: background 200ms, border-color 200ms;
}

.contact-circle > span:first-child {
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
}

.contact-circle:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.contact-details {
  display: grid;
  grid-template-columns: 1.15fr .65fr 1fr;
  gap: 40px;
  border-top: 1px solid #cdd2c2;
  padding-top: 30px;
  margin-top: 55px;
}

.contact-details .mini-label {
  color: #747b68;
  font-size: 8px;
  margin-bottom: 13px;
}

.contact-details a, .contact-details address {
  font-size: 12px;
  line-height: 1.85;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-details a span {
  display: inline-block;
  margin-left: 12px;
  font-size: 15px;
}

.contact-details a:hover {
  color: #b44428;
}

.site-footer {
  padding: 27px 0;
}

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

.site-footer .brand {
  font-size: 19px;
  gap: 6px;
}

.site-footer .brand-symbol {
  width: 30px;
  height: 30px;
}

.site-footer p {
  color: #8b8e82;
  font-size: 9px;
}

.back-top {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.back-top span {
  font-size: 17px;
}

.service-dialog {
  width: min(570px, calc(100% - 40px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 100px #0003;
  overflow-y: auto;
}

.service-dialog::backdrop {
  background: #20251ecd;
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  right: 15px;
  top: 10px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  font-size: 30px;
  color: var(--muted);
}

.service-dialog .eyebrow {
  color: #b94628;
  font-size: 9px;
}

.service-dialog h2 {
  margin: 20px 0;
  font-size: 34px;
}

.service-dialog > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.service-dialog h3 {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}

.service-dialog ul {
  margin: 16px 0 24px;
  padding-left: 18px;
  list-style: disc;
  font-size: 13px;
  line-height: 1.8;
}

.service-dialog li {
  margin-bottom: 8px;
}

.service-dialog li::marker {
  color: var(--coral);
}

.service-dialog .dialog-note {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  font-size: 11px !important;
}

.service-dialog .button {
  margin-top: 24px;
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1500px) {
  .hero {
    gap: 80px;
  }
  .hero-visual {
    height: 600px;
  }
  .hero-copy {
    padding-top: 48px;
  }
}

@media (max-width: 1100px) {
  .page-width {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 40px;
  }
  h1 {
    font-size: 65px;
    letter-spacing: -3.8px;
  }
  .hero-copy {
    padding-top: 20px;
  }
  .hero-visual {
    height: 560px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .service-card {
    padding: 24px 20px 20px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .about-grid {
    gap: 45px;
  }
  .about-principles {
    flex-direction: column;
    gap: 10px;
  }
  .analytics-panel {
    padding: 45px 33px;
    gap: 35px;
  }
  .dashboard {
    padding: 23px 20px 17px;
  }
  .trend-badge {
    max-width: 76px;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
  .contact-details {
    gap: 25px;
  }
  .contact-details a, .contact-details address {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }
  .page-width {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 64px;
  }
  .site-header > div {
    min-height: 78px;
  }
  .brand {
    font-size: 22px;
    gap: 7px;
  }
  .brand-symbol {
    width: 34px;
    height: 34px;
  }
  .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
  }
  .menu-toggle span {
    height: 1px;
    width: 22px;
    background: var(--ink);
    transition: transform 180ms;
  }
  .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 {
    padding: 5px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 46px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  h1 {
    font-size: clamp(54px, 11.5vw, 79px);
    margin-top: 24px;
    margin-bottom: 22px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 440px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 22px;
  }
  .hero-actions .button {
    padding-inline: 19px;
    gap: 25px;
  }
  .hero-actions .text-link {
    gap: 12px;
  }
  .hero-note {
    margin-top: 26px;
  }
  .hero-visual {
    height: 440px;
    margin-left: 12px;
  }
  .hero-visual > img {
    object-position: center 58%;
  }
  .image-topline {
    left: 22px;
    right: 22px;
  }
  .insight-note {
    left: -12px;
    bottom: 27px;
    padding: 19px;
    min-width: 285px;
  }
  .hero-image-caption {
    bottom: 143px;
    left: 22px;
  }
  .image-coordinate {
    font-size: 6px;
    letter-spacing: .9px;
  }
  .discipline-strip {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 23px;
    font-size: 12px;
    letter-spacing: -.3px;
  }
  .strip-plus {
    font-size: 15px;
  }
  .strip-mark {
    display: none;
  }
  .discipline-strip > span:nth-child(5) {
    flex-basis: 100%;
    text-align: center;
  }
  .discipline-strip > span:nth-child(4) {
    display: none;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .section-heading h2 {
    margin-top: 17px;
  }
  .section-intro {
    justify-self: start;
    font-size: 13px;
    max-width: 450px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 27px 25px 22px;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    font-size: 27px;
  }
  .service-card > p {
    font-size: 13px;
    max-width: 440px;
  }
  .service-tags {
    margin-bottom: 22px;
  }
  .service-tags span {
    font-size: 9px;
  }
  .service-link {
    min-height: 47px;
    font-size: 12px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-image {
    height: 310px;
  }
  .about-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .about-principles {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }
  .analytics-section {
    padding-bottom: 0;
  }
  .analytics-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 37px 23px;
  }
  .analytics-copy h2 {
    font-size: 45px;
  }
  .analytics-copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .dashboard {
    transform: none;
    padding: 23px 18px 17px;
  }
  .dashboard-heading h3 {
    font-size: 14px;
  }
  .dashboard-icon {
    width: 27px;
    height: 27px;
    font-size: 17px;
  }
  .chart-tabs {
    gap: 2px;
  }
  .chart-tab {
    padding: 9px 10px;
    min-height: 36px;
  }
  .metric-value {
    font-size: 32px;
  }
  .chart-bars {
    gap: 11px;
  }
  .dashboard-footer {
    font-size: 6px;
  }
  .dashboard-footer > span:last-child {
    font-size: 5px;
    letter-spacing: .3px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-number {
    margin-bottom: 19px;
    padding-top: 15px;
  }
  .process-grid h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .process-grid p {
    font-size: 13px;
    max-width: 440px;
  }
  .contact-section {
    padding-top: 55px;
    padding-bottom: 35px;
  }
  .contact-top {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .contact-top h2 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }
  .contact-top p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-circle {
    margin: 8px 0 0 auto;
    width: 118px;
    height: 118px;
    font-size: 10px;
  }
  .contact-circle > span:first-child {
    font-size: 33px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
    padding-top: 28px;
  }
  .contact-details .mini-label {
    margin-bottom: 8px;
  }
  .contact-details a, .contact-details address {
    font-size: 13px;
  }
  .footer-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .site-footer p {
    order: 3;
    width: 100%;
    font-size: 8px;
  }
  .service-dialog {
    padding: 42px 25px 30px;
  }
  .service-dialog h2 {
    font-size: 31px;
  }
}

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