:root {
  --navy: #102b34;
  --navy-deep: #0c242c;
  --ivory: #f8f8f2;
  --lime: #d5ee9d;
  --muted: #626b6b;
  --line: #dce0d7;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button, summary, a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
button, a, summary {
  touch-action: manipulation;
}
::selection {
  background: var(--lime);
  color: var(--navy);
}
:focus-visible {
  outline: 2px solid #659335;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.site-container {
  width: min(1240px, calc(100% - 112px));
  max-width: none;
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: var(--lime);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: relative;
  z-index: 20;
  background: var(--ivory);
}
.header-inner {
  min-height: 100px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px;
  height: 42px;
}
.brand-type {
  font-size: 22px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 1.4px;
}
.brand-type > span {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5.15px;
}
.desktop-nav {
  gap: 35px;
  margin-left: 60px;
  font-size: 13px;
}
.desktop-nav a {
  padding-block: 12px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.desktop-nav a:hover {
  border-color: var(--navy);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 18px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: background .2s, transform .2s;
}
.button svg, .text-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .2s;
}
.button:hover svg, .text-link:hover svg {
  transform: translate(3px, -2px);
}
.button-dark {
  background: var(--navy);
  color: white;
}
.button-dark:hover {
  background: #21434c;
}
.button-lime {
  background: var(--lime);
  color: var(--navy-deep);
}
.button-lime:hover {
  background: #e3f7bb;
}
.header-cta {
  padding: 13px 20px;
  gap: 34px;
}
.menu-toggle, .mobile-nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 685px;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--ivory);
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center 52%;
}
.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 28, 35, .96) 0%, rgba(8, 28, 35, .79) 36%, rgba(8, 28, 35, .12) 80%), linear-gradient(0deg, rgba(8, 28, 35, .64), transparent 35%);
}
.hero-content {
  padding-top: 73px;
  padding-bottom: 118px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.7px;
}
.eyebrow.light {
  color: #dbe2dd;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px #d5ee9d12;
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.15vw, 88px);
  font-weight: 400;
  line-height: 1.035;
  letter-spacing: -4px;
}
.hero h1 > span, .approach-copy h2 > span {
  color: var(--lime);
}
.hero-description {
  margin: 26px 0 30px;
  color: #cad3d2;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  gap: 27px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 600;
}
.light-link {
  font-weight: 400;
}
.hero-caption {
  position: absolute;
  right: max(56px, calc((100% - 1240px) / 2));
  bottom: 130px;
  font-size: 9px;
  letter-spacing: 1.7px;
  line-height: 1.8;
}
.caption-line {
  display: block;
  width: 37px;
  height: 2px;
  margin-bottom: 17px;
  background: var(--lime);
}
.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 21px;
  border-top: 1px solid #ffffff30;
  font-size: 9px;
  letter-spacing: 1.8px;
}
.hero-bottom a > span {
  margin-left: 22px;
  font-size: 18px;
}

.expertise-strip {
  background: #eef0e8;
  border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 30px;
}
.strip-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid #cdd4c9;
  font-size: 12px;
}
.strip-grid > div:first-child {
  justify-content: flex-start;
}
.strip-grid > div:last-child {
  border: 0;
  justify-content: flex-end;
}
.strip-grid svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.3;
}
.about-grid {
  gap: 90px;
  align-items: center;
}
.small-line {
  width: 21px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}
body h2 {
  margin: 0;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -2px;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 16px;
}
.about-copy > p.body-intro {
  margin-top: 27px;
  color: var(--navy);
  font-size: 17px;
}
.about-copy .text-link {
  margin-top: 20px;
  border-bottom: 1px solid var(--navy);
}
.about-values {
  display: flex;
  gap: 21px;
  margin-top: 36px;
  color: #657064;
  font-size: 10px;
}
.about-values > span::before {
  content: "+";
  color: #567a34;
  margin-right: 9px;
}
.about-visual {
  position: relative;
  margin-bottom: 22px;
  padding-left: 18px;
}
.about-visual::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 56%;
  height: 60%;
  background: #e3e7dc;
  z-index: -1;
}
.about-visual > img {
  width: 100%;
  height: 424px;
  object-fit: cover;
  object-position: center;
}
.photo-note {
  position: absolute;
  display: flex;
  gap: 22px;
  align-items: center;
  bottom: 34px;
  left: -21px;
  padding: 24px 28px;
  background: var(--lime);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -.4px;
}
.photo-note strong {
  font-weight: 500;
}
.photo-note svg {
  width: 43px;
  height: 43px;
}
.photo-label {
  position: absolute;
  right: 0;
  bottom: -35px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #73796f;
}
.services-section {
  background: #eef0e9;
  border-block: 1px solid #e2e6dc;
}
.section-heading {
  gap: 24px;
  margin-bottom: 44px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 5px;
}
.service-grid {
  gap: 20px;
  align-items: start;
}
.service-card {
  padding: 30px 28px 0;
  background: var(--ivory);
  border: 1px solid #dee3d8;
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: #a5b68c;
  box-shadow: 0 8px 24px #102b3408;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}
.service-icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.2;
}
.card-top > span {
  font-size: 11px;
  color: #7b857a;
}
.service-card h3 {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.8px;
  line-height: 1.2;
  margin: 0 0 20px;
}
.service-card > p {
  min-height: 80px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.service-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 25px 0 28px;
  font-size: 10px;
  color: #586654;
}
.service-tags > span::before {
  content: "↗";
  margin-right: 8px;
}
.service-card details {
  border-top: 1px solid var(--line);
}
.service-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.expand-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s;
}
.service-card details[open] .expand-icon {
  transform: rotate(45deg);
}
.service-detail {
  padding-bottom: 24px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.services-footnote {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
  font-size: 11px;
}
.services-footnote > span {
  color: var(--muted);
}
.services-footnote a > span {
  margin-left: 20px;
}

.approach-section {
  background: var(--navy);
  color: var(--ivory);
}
.approach-grid {
  gap: 96px;
  align-items: center;
}
.approach-copy .eyebrow .small-line {
  background: var(--lime);
}
.approach-copy h2 {
  font-size: clamp(42px, 4.1vw, 58px);
}
.approach-copy > p:not(.eyebrow) {
  color: #b4c3c4;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.9;
}
.process-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: flex;
  gap: 19px;
  padding-block: 18px;
  border-top: 1px solid #ffffff20;
}
.process-list li > span {
  color: var(--lime);
  font-size: 10px;
  padding-top: 3px;
}
.process-list h3 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
}
.process-list p {
  color: #a4b7b8;
  font-size: 11px;
  line-height: 1.7;
}
.insight-card {
  padding: 30px;
  background: var(--ivory);
  color: var(--navy);
  box-shadow: 18px 18px 0 #ffffff05;
}
.insight-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 27px;
}
.report-eyebrow {
  font-size: 8px;
  color: #737e73;
  letter-spacing: 1.5px;
}
.insight-heading h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.4px;
}
.insight-heading > svg {
  width: 28px;
  height: 28px;
  color: #778967;
  flex-shrink: 0;
}
.analytics-tabs {
  display: flex;
  padding: 4px;
  margin-bottom: 28px;
  background: #e9ede3;
  gap: 4px;
}
.analytics-tabs > button {
  flex: 1;
  padding: 10px 7px;
  color: #64715e;
  font-size: 10px;
  border: 0;
  background: transparent;
  transition: color .2s, background .2s;
}
.analytics-tabs > button[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
}
.analytics-tabs > button:hover:not([aria-selected="true"]) {
  background: #dce3d3;
}
.chart-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  margin-bottom: 20px;
}
.chart-key {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7c8576;
  font-size: 8px;
}
.chart-key i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #829c55;
}
.chart {
  display: flex;
  gap: 16px;
  height: 170px;
  padding-right: 5px;
}
.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 9px 23px;
  color: #8b9484;
  font-size: 8px;
}
.line-chart {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: visible;
  stroke-linecap: butt;
}
.grid-lines {
  stroke: #dde3d7;
  stroke-width: 1;
  stroke-dasharray: 3 4;
}
#chart-area {
  stroke: none;
}
#chart-line {
  stroke: #819954;
  stroke-width: 2.5;
  stroke-linejoin: round;
}
#chart-dot {
  fill: #819954;
  stroke: var(--ivory);
  stroke-width: 3;
}
.chart-quarters {
  display: flex;
  justify-content: space-between;
  margin-left: 31px;
  color: #8b9484;
  font-size: 8px;
}
.insight-summary {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 27px;
  padding: 17px 14px;
  background: #eaf0df;
}
.insight-bullet {
  font-size: 23px;
}
.insight-summary h4 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}
.insight-summary p {
  color: #6b7860;
  font-size: 10px;
  line-height: 1.6;
}
.illustration-note {
  margin-top: 17px;
  font-size: 8px;
  color: #818b7d;
}
.insight-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #afc0bb;
}
.insight-caption > span {
  width: 24px;
  height: 1px;
  background: var(--lime);
}
.contact-section {
  padding-block: 87px;
  background: var(--lime);
}
.contact-top {
  gap: 30px;
}
.contact-top h2 {
  font-size: clamp(42px, 4.6vw, 65px);
  letter-spacing: -2.7px;
}
.contact-top h2 > span {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}
.contact-top p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.85;
  color: #435637;
}
.contact-button {
  min-width: 240px;
  margin-bottom: 6px;
}
.site-footer {
  padding-top: 64px;
  background: var(--ivory);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1fr;
  gap: 45px;
  padding-bottom: 58px;
}
.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
}
.footer-brand .brand-type {
  font-size: 20px;
}
.footer-brand .brand-type > span {
  font-size: 8px;
  letter-spacing: 5.1px;
}
.footer-brand > p {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
}
.legal-name {
  display: block;
  margin-top: 14px;
  font-size: 8px;
  color: #6d7768;
  letter-spacing: .4px;
}
.footer-main h3 {
  margin: 8px 0 24px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.4px;
}
.footer-contact > a {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  margin-top: 12px;
  font-size: 12px;
}
.footer-contact > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.email-link > span {
  margin-left: 6px;
}
.footer-address address {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  font-style: normal;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: #737e6d;
  font-size: 9px;
}
.footer-bottom a {
  color: var(--navy);
  white-space: nowrap;
}
.footer-bottom a > span {
  margin-left: 16px;
  font-size: 15px;
}

@media (min-width: 1600px) {
  .hero-image {
    object-position: center 58%;
  }
}

@media (max-width: 1100px) {
  .site-container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 23px;
    margin-left: 0;
  }
  .hero h1 {
    font-size: 74px;
  }
  .about-grid, .approach-grid {
    gap: 48px;
  }
  .service-card {
    padding-inline: 23px;
  }
  .service-card > p {
    min-height: 104px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .strip-grid > div {
    gap: 9px;
    font-size: 10px;
  }
  .insight-card {
    padding: 24px;
  }
  .footer-main {
    gap: 26px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 18px;
  }
  .site-container {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 70px;
  }
  .header-inner {
    min-height: 80px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .brand-type {
    font-size: 19px;
  }
  .brand-type > span {
    font-size: 8px;
    letter-spacing: 4.9px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid #d5dbce;
    background: transparent;
    align-items: center;
  }
  .menu-toggle > span {
    width: 19px;
    height: 1px;
    background: var(--navy);
    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;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 20px 20px;
    background: var(--ivory);
    box-shadow: 0 15px 20px #102b3414;
  }
  .mobile-nav a {
    padding: 16px 4px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child {
    display: flex;
    justify-content: space-between;
  }
  .hero {
    min-height: 654px;
  }
  .hero-content {
    padding-top: 54px;
    padding-bottom: 100px;
  }
  .hero-image {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, #081c23e8, #081c2373), linear-gradient(0deg, #081c23b3, transparent 60%);
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.25px;
    gap: 10px;
    margin-bottom: 27px;
  }
  .hero h1 {
    font-size: clamp(44px, 10.7vw, 69px);
    letter-spacing: -2.4px;
    line-height: 1.1;
  }
  .hero-description {
    max-width: 420px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
  }
  .desktop-break {
    display: none;
  }
  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-actions .button {
    padding: 17px 22px;
  }
  .hero-caption {
    display: none;
  }
  .hero-bottom {
    font-size: 7px;
    letter-spacing: 1px;
    padding-block: 18px;
  }
  .hero-bottom a > span {
    margin-left: 7px;
    font-size: 15px;
  }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
    padding-block: 25px;
  }
  .strip-grid > div, .strip-grid > div:last-child {
    justify-content: flex-start;
    border: 0;
    font-size: 10px;
    gap: 10px;
  }
  .strip-grid svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .about-grid, .approach-grid {
    gap: 48px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 24px;
  }
  body h2 {
    font-size: 38px;
    letter-spacing: -1.6px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .about-copy > p.body-intro {
    font-size: 16px;
  }
  .about-visual {
    padding-left: 12px;
    margin-left: 9px;
  }
  .about-visual > img {
    height: 360px;
  }
  .photo-note {
    bottom: 25px;
    left: -9px;
    font-size: 16px;
    padding: 19px 22px;
    gap: 17px;
  }
  .photo-label {
    font-size: 6px;
    letter-spacing: 1.1px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 30px;
  }
  .service-grid {
    gap: 16px;
  }
  .service-card {
    padding: 27px 25px 0;
  }
  .card-top {
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 28px;
  }
  .service-card > p {
    min-height: 0;
  }
  .service-tags {
    margin-block: 22px;
  }
  .services-footnote {
    flex-direction: column;
    font-size: 11px;
    gap: 14px;
  }
  .approach-copy h2 {
    font-size: 45px;
  }
  .approach-copy > p:not(.eyebrow) {
    max-width: 390px;
  }
  .insight-card {
    padding: 24px 20px;
    box-shadow: 9px 9px 0 #ffffff05;
  }
  .insight-heading h3 {
    font-size: 16px;
  }
  .contact-top {
    gap: 32px;
  }
  .contact-top h2 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }
  .contact-button {
    min-width: 0;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 37px;
  }
  .footer-main h3 {
    margin: 0 0 18px;
  }
  .footer-contact > a {
    font-size: 13px;
  }
  .footer-address address {
    font-size: 12px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.8;
    gap: 24px;
  }
  .footer-bottom > p {
    max-width: 230px;
  }
}

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