:root {
  --green: #193e32;
  --green-dark: #15372d;
  --ink: #213c31;
  --muted: #70766d;
  --paper: #f8f8f2;
  --sage: #e9ede3;
  --line: #dce0d5;
  --accent: #c2cfab;
}

* {
  box-sizing: border-box;
}

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

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

::selection {
  background: #d6dfc9;
  color: var(--green);
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

button:focus-visible, a:focus-visible, summary:focus-visible, [tabindex="0"]:focus-visible {
  outline: 2px solid #77905b;
  outline-offset: 6px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

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

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

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

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

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

.header-inner {
  height: 108px;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 39px;
  height: 45px;
}

.brand-type {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 1.1px;
}

.brand-type > span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
}

.desktop-nav {
  gap: 35px;
  margin-left: 65px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

.button-primary:hover {
  background: #2a5341;
}

.header-contact {
  min-height: 44px;
  padding: 10px 18px;
  gap: 27px;
}

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

.hero {
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 58px;
  padding-top: 49px;
  padding-bottom: 59px;
}

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

.status-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #71845c;
  box-shadow: 0 0 0 4px #71845c13;
}

.hero h1 {
  margin-top: 30px;
  font-size: clamp(62px, 6.05vw, 87px);
  line-height: 1.045;
  font-weight: 400;
  letter-spacing: -4.3px;
}

h1 em, h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: #607453;
}

.hero-description {
  max-width: 415px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

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

.text-link:hover .icon {
  transform: translateX(4px);
}

.text-link .icon {
  width: 18px;
  transition: transform 180ms ease;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 47px;
  color: #818679;
  font-size: 8px;
  letter-spacing: 1.3px;
}

.fine-line {
  width: 29px;
  height: 1px;
  background: #aeb9a0;
}

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

.hero-image {
  height: 583px;
  border-radius: 3px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  top: 24px;
  right: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #ffffff5c;
  border-radius: 3px;
  background: #f7f8efc9;
  font-size: 8px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

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

.perspective-card {
  position: absolute;
  left: -28px;
  bottom: 38px;
  width: 279px;
  padding: 22px 24px 20px;
  border: 1px solid #ffffff75;
  border-radius: 3px;
  background: #f7f8f0f2;
  box-shadow: 0 10px 30px #16342613;
  backdrop-filter: blur(16px);
}

.perspective-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.2px;
}

.perspective-top .icon {
  width: 18px;
}

.perspective-card > p {
  margin-top: 14px;
  font-size: 27px;
  line-height: 1.17;
  letter-spacing: -0.8px;
}

.perspective-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #dce1d5;
  color: #6b7566;
  font-size: 10px;
}

.mini-bars {
  display: flex;
  height: 18px;
  align-items: flex-end;
  gap: 3px;
}

.mini-bars i {
  width: 5px;
  height: 6px;
  background: #6c8359;
}

.mini-bars i:nth-child(2) { height: 9px; }
.mini-bars i:nth-child(3) { height: 11px; }
.mini-bars i:nth-child(4) { height: 14px; }
.mini-bars i:nth-child(5) { height: 18px; }

.image-caption {
  position: absolute;
  right: 0;
  bottom: -22px;
  color: #7c8275;
  font-size: 7px;
  letter-spacing: 1.5px;
}

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

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

.principles-inner > p {
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.principles-inner > p strong {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.principles-inner > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 32px;
  border-left: 1px solid var(--line);
  font-size: 12px;
}

.principles-inner .icon {
  width: 17px;
  color: #71845c;
}

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

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

.section-label {
  margin-bottom: 21px;
}

.section-label > span {
  margin-right: 4px;
  color: #8d9782;
}

body h2 {
  font-size: clamp(35px, 3.3vw, 47px);
  line-height: 1.17;
  font-weight: 400;
  letter-spacing: -1.8px;
}

.section-intro {
  max-width: 370px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 15px;
}

.service-card {
  border: 1px solid #d9dfd2;
  border-radius: 3px;
  background: #f5f6ef;
  transition: background 180ms ease, border-color 180ms ease;
}

.service-card:hover, .service-card[open] {
  border-color: #9bab8f;
  background: #eef1e7;
}

.service-card summary {
  padding: 25px 23px 20px;
  list-style: none;
  cursor: pointer;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

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

.service-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.35;
}

.service-top > span {
  align-self: flex-start;
  padding-top: 2px;
  color: #929b86;
  font-size: 10px;
  letter-spacing: 1px;
}

.service-card h3 {
  min-height: 58px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.65px;
}

.service-card summary > p {
  min-height: 88px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.service-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid #dce2d3;
  font-size: 10px;
}

.expand-icon {
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-card[open] .expand-icon {
  transform: rotate(45deg);
}

.service-detail {
  padding: 0 23px 23px;
  font-size: 12px;
  line-height: 1.8;
}

.service-detail > p {
  padding-top: 17px;
  border-top: 1px solid #dce2d3;
  color: #66735f;
}

.service-detail ul {
  margin: 12px 0 17px;
  padding-left: 15px;
  list-style-type: disc;
}

.service-detail a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.expertise-note {
  margin-top: 26px;
  color: #7d8376;
  font-size: 11px;
  text-align: center;
}

.about-section {
  background: #eeefe8;
}

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

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

.about-visual > img {
  height: 407px;
  border-radius: 3px;
  object-fit: cover;
}

.about-image-note {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 245px;
  padding: 22px 27px;
  background: var(--paper);
}

.note-line {
  width: 3px;
  height: 40px;
  background: #8b9c72;
}

.about-image-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.about-image-note strong {
  color: var(--ink);
  font-weight: 500;
}

.about-copy h2 {
  font-size: clamp(32px, 3.1vw, 43px);
}

.about-copy > p:not(.eyebrow) {
  margin-top: 21px;
  color: #72776b;
  font-size: 13px;
  line-height: 1.85;
}

.about-values {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #d7dccf;
}

.about-values .icon {
  width: 19px;
  margin-bottom: 10px;
  color: #738361;
}

.about-values h3 {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
}

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

.insights-section {
  background: var(--green);
  color: #f1f3e9;
}

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

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

.insights-copy h2 {
  font-size: clamp(34px, 3.2vw, 45px);
}

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

.insights-copy > p:not(.eyebrow) {
  max-width: 393px;
  margin-top: 23px;
  color: #b9c7ba;
  font-size: 13px;
  line-height: 1.85;
}

.insight-points {
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.insight-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 11px;
  font-size: 12px;
}

.insight-points li > span {
  color: #a7b994;
  font-size: 9px;
}

.light-link {
  padding-bottom: 8px;
  border-bottom: 1px solid #71856e;
}

.review-card {
  padding: 27px 30px 21px;
  border-radius: 5px;
  background: #f9faf5;
  color: var(--ink);
  box-shadow: 0 18px 40px #0a241d20;
}

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

.review-heading .eyebrow {
  font-size: 9px;
  letter-spacing: 1.1px;
}

.review-period {
  color: #7b8473;
  font-size: 8px;
  letter-spacing: 1px;
}

.review-tabs {
  display: flex;
  gap: 5px;
  margin-top: 22px;
  padding: 4px;
  border-radius: 4px;
  background: #eaece3;
}

.review-tabs button {
  flex: 1;
  padding: 9px 6px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #6c7864;
  font-size: 11px;
  transition: background 180ms ease;
}

.review-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--green);
  box-shadow: 0 1px 4px #203d2610;
}

.review-stat-row {
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
}

.review-stat-row p {
  margin-bottom: 8px;
  color: #78816f;
  font-size: 11px;
}

.review-stat-row strong {
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.7px;
}

.trend {
  text-align: right;
}

.trend > span {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 3px;
  background: #e6eddc;
  color: #506b3c;
  font-size: 11px;
}

.trend > small {
  display: block;
  margin-top: 7px;
  color: #7f8776;
  font-size: 8px;
}

.chart {
  position: relative;
  height: 184px;
  margin-top: 21px;
}

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

.chart-grid > span {
  width: 100%;
  border-bottom: 1px dashed #dce2d5;
}

.chart-bars {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  gap: 14px;
  padding-inline: 9px;
}

.chart-column {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.bar {
  display: block;
  width: 100%;
  max-width: 39px;
  height: var(--bar-height);
  border-radius: 2px 2px 0 0;
  background: #b0bea0;
  transition: height 350ms ease;
}

.chart-column:nth-child(even) .bar {
  background: #879d76;
}

.chart-column:last-child .bar {
  background: var(--green);
}

.bar-value {
  margin-bottom: 5px;
  color: #6d7b63;
  font-size: 8px;
}

.bar-label {
  height: 25px;
  padding-top: 9px;
  color: #79836e;
  font-size: 9px;
}

.chart-caption {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: #6e7a65;
  font-size: 9px;
}

.legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7e946d;
}

.chart-caption > span:last-child {
  margin-left: auto;
  color: #929b89;
}

.review-takeaway {
  min-height: 48px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #dfe4d7;
  color: #586c4b;
  font-size: 10px;
  line-height: 1.6;
}

.illustration-note {
  margin-top: 9px;
  color: #87907e;
  font-size: 8px;
}

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

.step-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid #cdd6c2;
}

.step-track > span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8d2bc;
  border-radius: 50%;
  color: #738363;
  font-size: 10px;
}

.step-track .icon {
  width: 19px;
  color: #8c9a7b;
}

.process-step h3 {
  margin-top: 24px;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.7px;
}

.process-step > p {
  max-width: 330px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.step-output {
  display: block;
  margin-top: 23px;
  color: #8b9380;
  font-size: 8px;
  letter-spacing: 1px;
}

.step-output strong {
  display: block;
  margin-top: 7px;
  color: #5a6c4d;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-section {
  padding-block: 73px;
  border-top: 1px solid #e0e4d7;
  background: #e8edde;
}

.contact-grid {
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 70px;
}

.contact-grid h2 {
  margin-top: 24px;
  font-size: clamp(37px, 3.7vw, 52px);
  letter-spacing: -2px;
}

.contact-action {
  justify-self: end;
}

.contact-action > p {
  margin-bottom: 22px;
  color: #6d7863;
  font-size: 13px;
  line-height: 1.8;
}

.contact-action .button {
  min-width: 230px;
}

.contact-action > span {
  display: block;
  margin-top: 13px;
  color: #7f8b73;
  font-size: 9px;
}

.site-footer {
  padding-top: 63px;
  background: var(--green-dark);
  color: #e7eddf;
}

.footer-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 65px;
  padding-bottom: 47px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 39px;
}

.footer-brand .brand-type {
  font-size: 16px;
}

.footer-brand-block > p {
  margin-top: 21px;
  font-size: 12px;
}

.footer-brand-block > span {
  display: block;
  margin-top: 9px;
  color: #9fb29e;
  font-size: 10px;
}

.footer-grid h3 {
  margin: 7px 0 25px;
  color: #adc0a6;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: fit-content;
  max-width: 100%;
  margin-top: 13px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.footer-contact > a:hover {
  color: #c5d4ac;
}

.footer-contact > a span {
  color: #92a888;
}

.footer-address address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.85;
}

.footer-address > span {
  display: block;
  margin-top: 13px;
  color: #9fb29e;
  font-size: 9px;
}

.footer-bottom {
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #49614c;
  color: #a9b9a3;
  font-size: 9px;
}

.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom .icon {
  width: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (min-width: 1600px) {
  .hero {
    gap: 85px;
    padding-block: 60px 70px;
  }

  .hero-image {
    height: 620px;
  }
}

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

  .desktop-nav {
    gap: 23px;
    margin-left: 0;
  }

  .hero {
    gap: 36px;
  }

  .hero h1 {
    font-size: 67px;
  }

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

  .hero-image {
    height: 570px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero-footnote {
    margin-top: 29px;
  }

  .hero-actions .button {
    gap: 15px;
    padding-inline: 17px;
    font-size: 12px;
  }

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

  .service-card summary {
    padding-inline: 18px;
  }

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

  .service-card summary > p {
    min-height: 105px;
  }

  .about-grid, .insights-grid {
    gap: 48px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .brand-type {
    font-size: 15px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 12px;
  }

  .hero {
    gap: 35px;
  }

  .hero h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }

  .hero-image {
    height: 535px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-footnote {
    font-size: 6px;
  }

  .perspective-card {
    left: -16px;
    width: 243px;
    padding: 19px;
  }

  .principles-inner {
    gap: 15px;
  }

  .principles-inner > span {
    gap: 8px;
    font-size: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card summary {
    padding: 24px;
  }

  .service-card summary > p {
    min-height: 62px;
  }

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

  .section-heading {
    gap: 40px;
  }

  .about-grid, .insights-grid {
    gap: 35px;
  }

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

  .about-values .icon {
    float: left;
    margin-right: 10px;
  }

  .about-values p {
    padding-left: 29px;
  }

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

  .review-card {
    padding: 22px 19px;
  }

  .insights-grid {
    grid-template-columns: 0.95fr 1fr;
  }

  .process-grid {
    gap: 25px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-grid h2 {
    font-size: 36px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

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

  .page-shell {
    width: calc(100% - 44px);
  }

  .header-inner {
    height: 86px;
  }

  .brand-mark {
    width: 32px;
    height: 38px;
  }

  .brand-type {
    font-size: 15px;
    letter-spacing: 0.8px;
  }

  .brand-type > span {
    font-size: 8px;
    letter-spacing: 3.5px;
  }

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

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #c5cebb;
    border-radius: 3px;
    background: transparent;
  }

  .menu-toggle > span {
    width: 19px;
    height: 1px;
    background: var(--green);
    transition: transform 180ms ease;
  }

  .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]) {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 12px 22px 20px;
    border-bottom: 1px solid #cdd6c2;
    background: var(--paper);
    box-shadow: 0 15px 22px #1c3a2510;
  }

  .mobile-nav > a {
    display: flex;
    justify-content: space-between;
    padding: 16px 5px;
    border-bottom: 1px solid #e0e4d7;
    font-size: 14px;
  }

  .mobile-nav > a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-top: 39px;
    padding-bottom: 45px;
  }

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

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(57px, 13vw, 79px);
    line-height: 1.035;
    letter-spacing: -3px;
  }

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

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 19px;
    margin-top: 25px;
  }

  .hero-actions .button {
    gap: 13px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero-actions .text-link {
    gap: 6px;
    font-size: 10px;
  }

  .hero-footnote {
    margin-top: 27px;
    font-size: 7px;
    letter-spacing: 0.9px;
  }

  .hero-image {
    height: 435px;
    object-position: center 52%;
  }

  .image-label {
    top: 17px;
    right: 16px;
    font-size: 7px;
  }

  .perspective-card {
    left: -9px;
    bottom: 25px;
    width: 240px;
  }

  .perspective-card > p {
    font-size: 26px;
  }

  .principles-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    padding-block: 26px;
  }

  .principles-inner > span {
    justify-content: flex-start;
    padding-left: 12px;
    font-size: 10px;
  }

  .principles-inner > span:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 29px;
  }

  .section-label {
    margin-bottom: 18px;
    font-size: 9px;
  }

  body h2, .about-copy h2, .insights-copy h2 {
    font-size: clamp(33px, 7.3vw, 43px);
    letter-spacing: -1.5px;
  }

  .section-intro {
    max-width: 440px;
    font-size: 13px;
  }

  .services-grid {
    gap: 13px;
  }

  .service-card summary {
    padding: 20px 17px 15px;
  }

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

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

  .service-card h3 {
    min-height: 54px;
    font-size: 20px;
  }

  .service-card summary > p {
    min-height: 98px;
    margin-top: 12px;
    font-size: 11px;
  }

  .service-more {
    min-height: 44px;
    font-size: 9px;
    line-height: 1.4;
  }

  .service-detail {
    padding: 0 17px 20px;
    font-size: 11px;
  }

  .expertise-note {
    max-width: 250px;
    margin-inline: auto;
    font-size: 10px;
    line-height: 1.7;
  }

  .about-grid, .insights-grid {
    grid-template-columns: 1fr;
    gap: 41px;
  }

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

  .about-image-note {
    right: -6px;
    min-width: 228px;
    padding: 19px 24px;
  }

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

  .about-values .icon {
    float: none;
    margin-bottom: 9px;
  }

  .about-values p {
    padding-left: 0;
  }

  .review-card {
    padding: 25px 22px 20px;
  }

  .chart {
    height: 195px;
  }

  .insights-copy > p:not(.eyebrow) {
    max-width: 460px;
  }

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

  .process-step h3 {
    margin-top: 19px;
  }

  .process-step > p {
    max-width: 440px;
    margin-top: 12px;
    font-size: 13px;
  }

  .step-output {
    margin-top: 18px;
  }

  .contact-section {
    padding-block: 56px;
  }

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

  .contact-grid h2 {
    font-size: 39px;
    line-height: 1.2;
  }

  .contact-action {
    justify-self: start;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-bottom: 35px;
  }

  .footer-grid h3 {
    margin-bottom: 17px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-block: 22px;
    font-size: 8px;
  }

  .footer-bottom > p {
    max-width: 215px;
    line-height: 1.7;
  }

  .footer-bottom > a {
    flex-shrink: 0;
    gap: 5px;
  }
}

@media (max-width: 370px) {
  .page-shell {
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero .eyebrow {
    font-size: 7px;
  }

  .hero-actions {
    gap: 21px;
  }

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

  .service-card summary > p {
    min-height: auto;
    margin-bottom: 20px;
  }

  .hero-image {
    height: 395px;
  }

  .contact-grid h2 {
    font-size: 34px;
  }
}

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

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