:root {
  --forest: #244c3e;
  --forest-dark: #183b30;
  --ink: #252e29;
  --muted: #70766f;
  --cream: #f9faf6;
  --sage: #eef1e8;
  --lime: #dcedbc;
  --border: #dde2d8;
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  font: inherit;
}

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

button, a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

button, input {
  font-family: inherit;
}

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

:focus-visible {
  outline: 2px solid #7c974d;
  outline-offset: 5px;
}

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

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

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

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

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

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

.section-label {
  color: var(--forest);
  margin-bottom: 25px;
}

body h2 {
  font-size: clamp(34px, 3.35vw, 49px);
  line-height: 1.14;
  letter-spacing: -1.8px;
  font-weight: 500;
}

.serif-italic {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 17px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .2s, transform .2s;
}

.button-green {
  color: #fff;
  background: var(--forest);
}

.button-green:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

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

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

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

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

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

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

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

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

.brand-mark {
  width: 37px;
  height: 38px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.brand-mark i {
  display: block;
  width: 10px;
  background: var(--forest);
  border-radius: 5px 0 0 0;
}

.brand-mark i:nth-child(1) {
  height: 24px;
}

.brand-mark i:nth-child(2) {
  height: 38px;
}

.brand-mark i:nth-child(3) {
  height: 31px;
}

.brand-type {
  font-size: 33px;
  letter-spacing: 3px;
  line-height: .96;
  font-weight: 600;
}

.brand-type > span {
  display: block;
  margin-top: 8px;
  font-size: 7px;
  letter-spacing: 1.65px;
  font-weight: 500;
}

.desktop-nav {
  gap: 34px;
  margin-left: 45px;
}

.desktop-nav a {
  font-size: 12px;
  color: #545e55;
  padding: 15px 0;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--forest);
  bottom: 6px;
  left: 0;
  right: 100%;
  transition: right .2s;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-contact {
  padding: 13px 18px;
  gap: 30px;
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-block: 38px 43px;
}

.hero-copy {
  padding-block: 46px 17px;
  align-self: center;
}

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

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d8c50;
  box-shadow: 0 0 0 4px #e9eddf;
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(64px, 6.8vw, 98px);
  line-height: 1.01;
  letter-spacing: -5px;
  font-weight: 500;
}

h1 > span {
  color: #52704c;
}

.hero-description {
  max-width: 383px;
  margin-top: 27px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

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

.hero-actions .button {
  padding: 16px 19px;
  gap: 20px;
}

.hero-actions .text-link {
  font-size: 11px;
  gap: 13px;
}

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

.small-orbit {
  font-size: 34px;
  line-height: 1;
  color: #728066;
}

.hero-note p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-note strong {
  font-weight: 400;
  color: #454f43;
}

.hero-visual {
  min-height: 609px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.hero-image {
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #0c211cb3);
  pointer-events: none;
}

.image-label {
  position: absolute;
  top: 23px;
  left: 23px;
  background: #f8faf0ed;
  border: 1px solid #ffffff70;
  border-radius: 3px;
  color: var(--forest-dark);
  padding: 11px 13px;
  font-size: 8px;
  letter-spacing: 1.1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.image-label > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
}

.hero-insight {
  position: absolute;
  bottom: 58px;
  left: 28px;
  right: 28px;
  background: #fbfcf2ee;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff60;
  border-radius: 4px;
  padding: 22px 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.micro-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #6e7863;
}

.hero-insight p {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.6px;
  margin-top: 9px;
}

.insight-arrow {
  background: var(--lime);
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-arrow .icon {
  width: 26px;
  height: 26px;
}

.image-index {
  position: absolute;
  bottom: 23px;
  left: 29px;
  color: #eef0e7;
  font-size: 8px;
  letter-spacing: 1.6px;
  z-index: 1;
}

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

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

.strip-inner > span {
  color: #838a7d;
  font-size: 8px;
  letter-spacing: 1.4px;
  max-width: 94px;
  line-height: 1.8;
}

.strip-inner p {
  font-size: 13px;
  color: #4d594c;
}

.strip-inner i {
  font-size: 18px;
  font-style: normal;
  color: #91a17a;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

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

.about-copy .lead {
  color: #3b493b;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.about-copy .text-link {
  margin-top: 8px;
  color: var(--forest);
}

.expertise-section {
  background: var(--sage);
}

.section-heading {
  gap: 36px;
  margin-bottom: 45px;
}

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

.services-grid {
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #dde2d6;
  background: var(--cream);
  border-radius: 4px;
  padding: 27px 25px 23px;
  color: var(--ink);
  transition: background .25s, transform .25s, border-color .25s;
}

.service-card:hover {
  background: #e3ebd7;
  border-color: #b7c5a3;
  transform: translateY(-5px);
}

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

.service-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.35;
  stroke-linejoin: round;
  stroke-linecap: round;
}

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

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.6px;
  margin-bottom: 19px;
}

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

.service-link {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--forest);
}

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

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

.insights-copy > p:not(.eyebrow) {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.9;
  margin-top: 24px;
  color: var(--muted);
}

.insight-checks {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-block: 24px 32px;
}

.insight-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.insight-checks .icon {
  color: var(--forest);
  width: 16px;
  height: 16px;
}

.analytics-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 14px 50px #26372106;
  padding: 28px;
  transform: rotate(-1.5deg);
}

.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 23px;
}

.analytics-brand {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tiny-mark {
  font-size: 23px;
  color: var(--forest);
}

.example-badge {
  font-size: 6px;
  color: #596650;
  letter-spacing: .8px;
  background: var(--sage);
  padding: 6px 8px;
  border-radius: 3px;
}

.chart-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #e7eae1;
  margin-bottom: 25px;
}

.chart-tabs button {
  color: #7b8276;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0 0 12px;
  font-size: 10px;
}

.chart-tabs button[aria-selected="true"] {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.chart-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 27px;
}

.chart-metric > div > span {
  font-size: 10px;
  color: var(--muted);
}

.chart-metric p {
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: -1.5px;
  margin-top: 5px;
}

.chart-metric p > span {
  font-size: 9px;
  letter-spacing: 0;
  margin-left: 8px;
  color: #8b9087;
}

.trend-label {
  font-size: 8px;
  padding: 6px 8px;
  background: #edf3e4;
  color: #4d6743;
  border-radius: 3px;
}

.chart-container {
  position: relative;
  padding-left: 26px;
}

.chart-container > svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-y {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #969d90;
  font-size: 8px;
  padding-top: 4px;
}

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

.chart-baseline {
  stroke: #acb69e;
  stroke-dasharray: 4 5;
  fill: none;
}

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

#chart-point {
  fill: #658449;
  stroke: #fff;
  stroke-width: 2;
}

.chart-x {
  display: flex;
  justify-content: space-between;
  color: #959c90;
  font-size: 8px;
  margin-top: 11px;
}

.chart-summary {
  display: flex;
  gap: 12px;
  background: #f4f6ee;
  border: 1px solid #e9eddf;
  border-radius: 4px;
  padding: 14px;
  margin-top: 24px;
}

.summary-icon {
  color: #759257;
  font-size: 25px;
}

.chart-summary p {
  font-size: 9px;
  color: #6d7863;
  line-height: 1.7;
}

.chart-summary strong {
  color: #4d6044;
  font-weight: 500;
}

.chart-disclaimer {
  color: #7c8377;
  font-size: 7px;
  margin-top: 14px;
}

.approach-section {
  background: var(--forest-dark);
  color: #f2f5e9;
}

.approach-section .section-label {
  color: #c5d6ab;
}

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

.process-grid {
  gap: 53px;
  margin-top: 56px;
}

.process-number {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c5d9aa;
  font-size: 12px;
}

.process-number > span {
  height: 1px;
  flex: 1;
  background: #ffffff24;
}

.process-grid h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.4px;
  margin-block: 27px 16px;
}

.process-grid article > p {
  font-size: 12px;
  line-height: 1.9;
  color: #b4c4b7;
  max-width: 310px;
}

.process-output {
  display: block;
  margin-top: 33px;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #95af9a;
}

.process-output strong {
  display: block;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0;
  color: #e0ead7;
  margin-top: 10px;
}

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

.review-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.review-image-wrap img {
  aspect-ratio: 1.26;
}

.review-image-tag {
  position: absolute;
  bottom: 21px;
  left: 22px;
  padding: 11px 13px;
  background: #f6f8eae8;
  color: var(--forest);
  font-size: 7px;
  letter-spacing: 1.1px;
  border-radius: 2px;
}

.perspective-copy h2 {
  font-size: clamp(31px, 2.8vw, 41px);
}

.perspective-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-block: 25px;
  max-width: 420px;
}

.perspective-copy .text-link {
  color: var(--forest);
}

.contact-section {
  background: #e9efde;
  padding-block: 75px 51px;
}

.contact-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding-bottom: 54px;
}

.contact-heading .eyebrow {
  color: #5c6f50;
  margin-bottom: 22px;
}

.contact-heading h2 {
  font-size: clamp(37px, 4.1vw, 59px);
  letter-spacing: -2px;
  color: var(--forest-dark);
}

.contact-heading p:not(.eyebrow) {
  color: #6e7963;
  font-size: 12px;
  margin-top: 24px;
}

.contact-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 105px;
  background: var(--forest);
  color: #edf3e3;
  border-radius: 50%;
  margin-right: 24px;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}

.contact-circle:hover {
  background: #3f6043;
  transform: rotate(8deg);
}

.contact-circle .icon {
  width: 43px;
  height: 43px;
  stroke-width: 1.2;
}

.contact-details {
  border-top: 1px solid #cdd7bf;
  padding-top: 31px;
  grid-template-columns: 1.25fr .85fr 1fr;
  gap: 32px;
}

.contact-label {
  display: block;
  color: #6f7c61;
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

.contact-details a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  transition: color .2s;
}

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

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

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

.email-link {
  overflow-wrap: anywhere;
}

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

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

.footer-main .brand {
  transform: scale(.8);
  transform-origin: left center;
}

.footer-main > p {
  color: #777f71;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
}

.back-top {
  display: flex;
  align-items: center;
  gap: 21px;
  color: #5e6b55;
  font-size: 10px;
}

.back-top .icon {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 21px;
  color: #848b7d;
  font-size: 8px;
}

dialog {
  width: min(580px, calc(100% - 32px));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 100px #0003;
  max-height: calc(100dvh - 40px);
}

dialog::backdrop {
  background: #10271ee0;
  backdrop-filter: blur(5px);
}

.dialog-inner {
  padding: 44px;
  position: relative;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 8px;
  color: var(--forest);
  background: transparent;
}

.dialog-close:hover {
  background: var(--sage);
}

.dialog-inner h2 {
  font-size: 38px;
  max-width: 390px;
}

#dialog-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-block: 22px 26px;
}

.dialog-inner h3 {
  font-size: 13px;
  font-weight: 600;
}

#dialog-list {
  list-style: disc;
  padding-left: 19px;
  margin-block: 15px 25px;
  color: #58694f;
  font-size: 13px;
  line-height: 1.8;
}

#dialog-list li {
  margin-block: 8px;
  padding-left: 4px;
}

.dialog-outcome {
  background: var(--sage);
  padding: 18px;
  border-radius: 4px;
  margin-bottom: 25px;
}

.dialog-outcome span {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #71815e;
}

.dialog-outcome p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1500px) {
  .hero-visual {
    min-height: 670px;
  }
  .hero-copy {
    padding-block: 40px;
  }
}

@media (max-width: 1199px) {
  .page-width {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    margin-left: 0;
    gap: 25px;
  }
  .hero {
    gap: 27px;
  }
  .hero-visual {
    min-height: 579px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    gap: 14px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-insight {
    padding: 19px;
    left: 22px;
    right: 22px;
  }
  .hero-insight p {
    font-size: 21px;
  }
  .service-card {
    padding: 24px 18px 21px;
  }
  .service-link {
    font-size: 9px;
  }
  .about-section, .insights-section, .perspective-section {
    gap: 48px;
  }
  .analytics-panel {
    padding: 22px;
  }
  .contact-details {
    gap: 20px;
  }
  .contact-details a {
    font-size: 11px;
    gap: 8px;
  }
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card {
    padding: 28px;
  }
  .service-link {
    font-size: 11px;
  }
  .service-top {
    margin-bottom: 30px;
  }
  .service-card > p {
    max-width: 310px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 600px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .hero-insight p {
    font-size: 19px;
  }
  .insight-arrow {
    width: 36px;
    height: 36px;
  }
  .insight-arrow .icon {
    width: 21px;
    height: 21px;
  }
  .strip-inner {
    gap: 13px;
  }
  .strip-inner p {
    font-size: 11px;
  }
  .strip-inner > span {
    font-size: 7px;
  }
  .section-space {
    padding-block: 80px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 12px;
  }
  .insights-section {
    gap: 35px;
  }
  .chart-metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .chart-tabs {
    gap: 20px;
  }
  .chart-disclaimer {
    line-height: 1.6;
  }
  .process-grid {
    gap: 30px;
  }
  .process-grid h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 24px;
  }
  .page-width {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 81px;
  }
  .brand {
    gap: 9px;
  }
  .brand-mark {
    transform: scale(.82);
    transform-origin: left center;
    width: 30px;
  }
  .brand-type {
    font-size: 28px;
  }
  .brand-type > span {
    font-size: 6px;
    letter-spacing: 1.4px;
    margin-top: 7px;
  }
  .site-header .desktop-nav, .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: transparent;
  }
  .menu-toggle span {
    height: 1px;
    width: 20px;
    background: var(--forest);
    transition: transform .2s;
  }
  .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:not([hidden]) {
    display: flex;
    flex-direction: column;
    padding: 10px 20px 24px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav a {
    padding: 15px 8px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 15px 28px;
  }
  .hero-copy {
    padding-block: 28px 4px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.25px;
  }
  .hero h1 {
    font-size: clamp(64px, 13.4vw, 91px);
    letter-spacing: -3.7px;
    margin-top: 26px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 390px;
    margin-top: 22px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 17px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 10px;
    gap: 13px;
    padding: 15px 14px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .hero-note {
    margin-top: 27px;
  }
  .hero-visual {
    min-height: 0;
    height: 460px;
  }
  .hero-image {
    object-position: 50% 45%;
  }
  .hero-insight {
    bottom: 52px;
    left: 19px;
    right: 19px;
    padding: 20px;
  }
  .hero-insight p {
    font-size: 23px;
  }
  .image-label {
    top: 19px;
    left: 19px;
  }
  .image-index {
    left: 21px;
    bottom: 21px;
  }
  .insight-arrow {
    width: 43px;
    height: 43px;
  }
  .strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    padding-block: 24px;
    gap: 19px 13px;
  }
  .strip-inner > span {
    grid-column: 1 / -1;
    max-width: none;
    font-size: 7px;
  }
  .strip-inner p {
    font-size: 11px;
  }
  .strip-inner i {
    display: none;
  }
  .strip-inner p::before {
    content: '✳';
    color: #8d9d77;
    margin-right: 9px;
  }
  .section-space {
    padding-block: 63px;
  }
  body h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .section-label {
    margin-bottom: 21px;
    font-size: 9px;
  }
  .about-section, .insights-section, .perspective-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-copy {
    padding-top: 0;
  }
  .about-copy .lead {
    font-size: 18px;
  }
  main .section-heading {
    display: block;
    margin-bottom: 31px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 22px;
    font-size: 12px;
  }
  .services-grid {
    gap: 13px;
  }
  .service-card {
    padding: 20px 16px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card > p {
    font-size: 11px;
    margin-bottom: 23px;
  }
  .service-top {
    margin-bottom: 29px;
  }
  .service-icon {
    width: 27px;
    height: 27px;
  }
  .service-link {
    font-size: 9px;
    gap: 5px;
    align-items: flex-end;
    line-height: 1.6;
  }
  .service-link .icon {
    width: 14px;
    height: 14px;
  }
  .insights-section {
    gap: 42px;
  }
  .analytics-panel {
    transform: none;
    padding: 22px;
  }
  .chart-metric {
    flex-direction: row;
    align-items: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 36px;
  }
  .process-grid h3 {
    font-size: 22px;
    margin-top: 22px;
  }
  .process-grid article > p {
    max-width: none;
  }
  .process-output {
    margin-top: 20px;
  }
  .perspective-section {
    gap: 36px;
  }
  .review-image-wrap img {
    aspect-ratio: 1.3;
  }
  .perspective-copy h2 {
    font-size: 33px;
  }
  .contact-section {
    padding-block: 57px 42px;
  }
  .contact-heading {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 32px;
  }
  .contact-heading h2 {
    font-size: 39px;
    letter-spacing: -1.6px;
  }
  .contact-heading h2 br {
    display: none;
  }
  .contact-heading p:not(.eyebrow) {
    line-height: 1.8;
    max-width: 280px;
  }
  .contact-circle {
    width: 63px;
    height: 63px;
    margin-top: 6px;
  }
  .contact-circle .icon {
    width: 30px;
    height: 30px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-details a {
    font-size: 13px;
  }
  .contact-details address {
    font-size: 12px;
  }
  .contact-label {
    margin-bottom: 10px;
  }
  .site-footer {
    padding-top: 24px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 25px;
  }
  .footer-main > p {
    order: 3;
    width: 100%;
    font-size: 16px;
  }
  .back-top {
    gap: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
  }
  .dialog-inner {
    padding: 40px 25px 28px;
  }
  .dialog-inner h2 {
    font-size: 33px;
  }
}

@media (max-width: 359px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 26px;
  }
  .service-card h3 br {
    display: none;
  }
  .chart-metric {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-insight p {
    font-size: 20px;
  }
}

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