@charset "UTF-8";
:root {
  --paper: #f6f5ef;
  --ink: #252820;
  --muted: #6a6c62;
  --line: #dcded3;
  --olive: #343d2d;
  --accent: #bd4d2c;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

::selection {
  background: #e3d7ba;
  color: var(--ink);
}

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

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

[hidden] {
  display: none !important;
}

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

.icon-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.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

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

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

.brand-symbol {
  display: flex;
  align-items: flex-end;
  height: 36px;
  gap: 4px;
  transform: skewY(-17deg);
}

.brand-symbol span {
  width: 8px;
  background: var(--olive);
}

.brand-symbol span:nth-child(1) {
  height: 18px;
}

.brand-symbol span:nth-child(2) {
  height: 28px;
}

.brand-symbol span:nth-child(3) {
  height: 36px;
}

.brand-words {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1;
}

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

.brand-descriptor {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
}

.main-navigation > a {
  transition: color 180ms ease;
}

.main-navigation > a:hover {
  color: var(--accent);
}

.main-navigation .nav-contact {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: 4px;
  border: 1px solid var(--ink);
  padding: 12px 18px;
}

.nav-contact .icon {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 65px;
  padding-block: 64px 63px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 17px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 1.8px;
  font-weight: 600;
}

.accent-line {
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

body h1 {
  font-family: var(--serif);
  font-size: clamp(62px, 5.9vw, 85px);
  font-weight: 400;
  line-height: 1.055;
  letter-spacing: -4.2px;
  margin-top: 28px;
}

h1 em, h2 em {
  font-weight: 400;
  color: #626e51;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  min-height: 49px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button .icon {
  width: 16px;
  height: 16px;
}

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

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

.button-dark:hover {
  background: var(--olive);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  border-bottom: 1px solid transparent;
  padding-block: 8px;
}

.text-link:hover {
  border-color: var(--ink);
}

.hero-footnote {
  margin-top: auto;
  padding-top: 31px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
}

.status-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background: #7a8761;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(20 25 17 / 15%), transparent 23%, transparent 70%, rgb(20 25 17 / 26%));
  pointer-events: none;
}

.image-label {
  position: absolute;
  top: 25px;
  left: 26px;
  z-index: 1;
  color: white;
  font-size: 8px;
  letter-spacing: 1.65px;
}

.image-note {
  position: absolute;
  bottom: 52px;
  left: -23px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 307px;
  padding: 23px 22px;
  background: var(--paper);
  box-shadow: 0 6px 25px rgb(0 0 0 / 5%);
}

.note-icon {
  width: 41px;
  height: 41px;
  background: #e8eadd;
  display: grid;
  place-items: center;
}

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

.note-label {
  display: block;
  font-size: 7px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 6px;
}

.image-note p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.4px;
}

.note-arrow {
  width: 17px;
  height: 17px;
  align-self: flex-start;
  margin-left: auto;
}

.image-index {
  position: absolute;
  bottom: 18px;
  right: 24px;
  z-index: 1;
  color: white;
  font-size: 7px;
  letter-spacing: 1.6px;
}

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

.strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 34px;
  min-height: 110px;
}

.strip-inner > p {
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 1.45px;
  color: var(--muted);
}

.strip-inner > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--serif);
  font-size: 19px;
}

.strip-inner .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.25;
  color: #5c6850;
}

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

.section-label {
  display: flex;
  gap: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-bottom: 31px;
}

.section-number {
  color: var(--accent);
}

body h2 {
  font-family: var(--serif);
  font-size: clamp(35px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -1.9px;
  line-height: 1.13;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 100px;
}

.about-copy {
  max-width: 465px;
}

.about-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  margin-top: 16px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 0;
}

.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 31px;
  padding-block: 12px;
  border-bottom: 1px solid var(--ink);
  margin-top: 16px;
  font-size: 11px;
}

.underlined-link .icon {
  width: 16px;
  height: 16px;
}

.underlined-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.values-row > span {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
}

.values-row > span:nth-child(2) {
  justify-content: center;
}

.values-row > span:nth-child(3) {
  justify-content: flex-end;
}

.value-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

.services {
  background: #eeefe7;
}

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

.section-heading > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  padding-bottom: 5px;
}

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

.service-card {
  padding: 29px 28px 0;
  border: 1px solid #d4d8c9;
  background: var(--paper);
  transition: border-color 200ms ease;
}

.service-card:hover {
  border-color: #939c84;
}

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

.service-icon {
  width: 40px;
  height: 40px;
  color: #5d6b4f;
  stroke-width: 1.35;
}

.card-top > span {
  color: #858b7b;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}

.card-eyebrow {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #717a65;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.6px;
  margin-top: 13px;
}

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

.service-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 21px 0;
  margin-top: 20px;
  font-size: 11px;
  text-align: left;
}

.service-toggle:hover {
  color: var(--accent);
}

.service-toggle .icon {
  width: 17px;
  height: 17px;
  transition: transform 200ms ease;
}

.service-toggle[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

.service-details {
  border-top: 1px solid var(--line);
  padding-block: 20px 25px;
  font-size: 12px;
}

.service-details h4 {
  font-weight: 600;
}

.service-details ul {
  list-style: disc;
  padding-left: 16px;
  color: var(--muted);
  margin: 13px 0 18px;
}

.service-details li {
  margin-block: 7px;
}

.service-details a {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.services-note {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 29px;
}

.approach {
  background: var(--olive);
  color: var(--paper);
}

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

.approach .section-number {
  color: #c5cda9;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 116px;
}

.approach h2 em {
  color: #c1cba9;
}

.approach-intro > p {
  margin-top: 25px;
  max-width: 370px;
  font-size: 13px;
  line-height: 1.9;
  color: #ccd1c4;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  margin-top: 32px;
}

.button-light:hover {
  background: #dce3cd;
}

.approach-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  color: #c0c9b3;
  margin-top: 29px;
}

.approach-caption .status-dot {
  background: #b6c394;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 27px;
}

.process-step + .process-step {
  padding-top: 27px;
  border-top: 1px solid #5a634e;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-number {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: #b5c099;
  line-height: 1.5;
}

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

.process-step p {
  color: #ccd1c4;
  font-size: 12px;
  line-height: 1.85;
  margin-top: 9px;
}

.process-outcome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  color: #b7c399;
  font-size: 7px;
  letter-spacing: 1.2px;
  margin-top: 15px;
}

.process-outcome > span {
  font-size: 10px;
  color: #e4e7dd;
  letter-spacing: .1px;
}

.conversation {
  text-align: center;
  padding-block: 82px 89px;
}

.conversation-mark {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 41px;
  line-height: 1;
  margin-bottom: 25px;
}

.conversation .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  font-size: 8px;
}

.conversation h2 {
  font-size: clamp(43px, 4.5vw, 61px);
  letter-spacing: -2.4px;
}

.conversation > p:not(.eyebrow) {
  margin-top: 23px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

.conversation .button {
  margin-top: 29px;
}

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

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

.footer-brand .brand-name {
  font-size: 32px;
}

.footer-brand .brand-symbol {
  transform: scale(.85) skewY(-17deg);
  transform-origin: left center;
  margin-right: -5px;
}

.company-name {
  font-size: 9px;
  line-height: 1.85;
  letter-spacing: .6px;
  margin-top: 21px;
  max-width: 275px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 10px;
  margin-top: 12px;
}

.site-footer h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  margin-top: 10px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-contact > a {
  display: block;
  width: fit-content;
  font-size: 12px;
  line-height: 1.7;
}

.footer-contact .email-link {
  display: flex;
  gap: 9px;
  align-items: baseline;
  border-bottom: 1px solid #8c9481;
  padding-bottom: 6px;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
}

.footer-contact > a:hover {
  color: var(--accent);
}

.footer-address address {
  font-style: normal;
  font-size: 10px;
  line-height: 1.9;
  color: #5b6252;
  max-width: 245px;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  margin-top: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 23px;
  border-top: 1px solid #d0d5c5;
  font-size: 9px;
  color: #636c58;
}

.footer-bottom > span {
  font-size: 8px;
}

.footer-bottom a {
  display: flex;
  gap: 18px;
  color: var(--ink);
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (min-width: 1450px) {
  .hero {
    gap: 88px;
  }
  .hero-visual {
    height: 608px;
  }
}

@media (max-width: 1100px) {
  .page-container {
    width: calc(100% - 72px);
  }
  .main-navigation {
    gap: 24px;
  }
  .hero {
    gap: 43px;
    padding-top: 49px;
  }
  body h1 {
    font-size: 66px;
    letter-spacing: -3.5px;
  }
  .hero-visual {
    height: 550px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .button {
    padding-inline: 16px;
    gap: 17px;
  }
  .strip-inner {
    gap: 20px;
  }
  .strip-inner > span {
    font-size: 17px;
    gap: 10px;
  }
  .about-grid {
    gap: 60px;
  }
  .service-card {
    padding-inline: 22px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    min-height: 132px;
  }
  .approach-grid {
    gap: 60px;
  }
  .footer-main {
    gap: 33px;
    grid-template-columns: 1fr 1.15fr 1fr;
  }
  .footer-contact > a {
    font-size: 10px;
  }
}

@media (max-width: 800px) {
  .page-container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 89px;
  }
  .brand-name {
    font-size: 32px;
  }
  .brand-descriptor {
    font-size: 6px;
  }
  .main-navigation {
    gap: 19px;
    font-size: 10px;
  }
  .main-navigation .nav-contact {
    gap: 14px;
    padding: 9px 12px;
  }
  .hero {
    gap: 30px;
    padding-block: 42px 45px;
  }
  body h1 {
    font-size: 55px;
    letter-spacing: -3px;
  }
  .hero-visual {
    height: 510px;
  }
  .hero .eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
    gap: 6px;
  }
  .hero-copy {
    padding-top: 10px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.85;
  }
  .hero-actions {
    gap: 9px 17px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .image-label {
    font-size: 6px;
    left: 17px;
  }
  .image-note {
    width: 260px;
    left: -15px;
    padding: 19px 16px;
    gap: 11px;
  }
  .image-note p {
    font-size: 17px;
  }
  .note-label {
    font-size: 6px;
  }
  .strip-inner {
    grid-template-columns: repeat(3, 1fr);
    min-height: 90px;
    gap: 10px;
  }
  .strip-inner > p {
    display: none;
  }
  .strip-inner > span {
    font-size: 16px;
  }
  .strip-inner .icon {
    width: 25px;
    height: 25px;
  }
  .section-space {
    padding-block: 70px;
  }
  .about-grid {
    gap: 35px;
  }
  body h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .about-copy .lead {
    font-size: 15px;
  }
  .about-copy p {
    font-size: 12px;
  }
  .service-grid {
    gap: 13px;
  }
  .service-card {
    padding: 23px 17px 0;
  }
  .card-eyebrow {
    font-size: 6px;
    letter-spacing: .8px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card > p {
    font-size: 11px;
    min-height: 145px;
  }
  .service-toggle {
    font-size: 9px;
  }
  .approach-grid {
    gap: 35px;
  }
  .process-step {
    gap: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 60px;
  }
  .footer-brand {
    grid-row: span 2;
  }
  .footer-contact > a {
    font-size: 12px;
  }
  .footer-address h2 {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 20px;
  }
  .page-container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 84px;
  }
  .brand-name {
    font-size: 31px;
  }
  .brand-symbol {
    transform: scale(.85) skewY(-17deg);
    transform-origin: left center;
    margin-right: -4px;
  }
  .brand-descriptor {
    font-size: 6px;
    letter-spacing: 1.15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 11px;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    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);
  }
  .main-navigation {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px 20px 23px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 14px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 18px rgb(37 40 32 / 6%);
  }
  .main-navigation.is-open {
    display: flex;
  }
  .main-navigation > a {
    padding: 13px 0;
  }
  .main-navigation .nav-contact {
    margin: 9px 0 0;
    padding: 13px 16px;
    justify-content: space-between;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 40px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.15px;
    gap: 9px;
  }
  .accent-line {
    width: 20px;
  }
  body h1 {
    font-size: clamp(53px, 14.5vw, 75px);
    line-height: 1.05;
    letter-spacing: -2.9px;
    margin-top: 23px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 22px;
    max-width: 400px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
  }
  .button {
    min-height: 49px;
    font-size: 11px;
    padding-inline: 17px;
  }
  .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .hero-footnote {
    font-size: 9px;
    padding-top: 26px;
  }
  .hero-visual {
    height: 440px;
    margin-left: 12px;
  }
  .hero-image {
    object-position: center 60%;
  }
  .image-label {
    font-size: 7px;
    left: 20px;
    top: 21px;
  }
  .image-note {
    width: 285px;
    left: -12px;
    bottom: 44px;
    padding: 22px 19px;
  }
  .note-label {
    font-size: 7px;
  }
  .image-note p {
    font-size: 19px;
  }
  .image-index {
    font-size: 6px;
    bottom: 16px;
    right: 17px;
  }
  .strip-inner {
    min-height: 106px;
    gap: 8px;
  }
  .strip-inner > span {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    white-space: nowrap;
  }
  .strip-inner .icon {
    width: 26px;
    height: 26px;
  }
  .section-space {
    padding-block: 59px;
  }
  .section-label {
    font-size: 8px;
    margin-bottom: 24px;
  }
  body h2 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1.6px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .about-copy {
    max-width: none;
  }
  .about-copy .lead {
    font-size: 17px;
  }
  .about-copy p {
    font-size: 14px;
  }
  .underlined-link {
    font-size: 12px;
  }
  .values-row {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 36px;
    padding-top: 25px;
  }
  .values-row > span {
    font-size: 12px;
  }
  .values-row > span:nth-child(n) {
    justify-content: flex-start;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading > p {
    margin-top: 20px;
    font-size: 13px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 27px 27px 0;
  }
  .card-top {
    margin-bottom: 27px;
  }
  .card-eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .service-card h3 {
    font-size: 30px;
    margin-top: 12px;
  }
  .service-card > p {
    min-height: 0;
    font-size: 14px;
    margin-top: 18px;
  }
  .service-toggle {
    font-size: 12px;
    margin-top: 24px;
    padding-block: 21px;
  }
  .service-details {
    font-size: 13px;
  }
  .services-note {
    align-items: flex-start;
    font-size: 10px;
    gap: 8px;
  }
  .services-note .status-dot {
    margin-top: 6px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .approach-intro > p {
    font-size: 14px;
    max-width: none;
    margin-top: 22px;
  }
  .approach-caption {
    font-size: 10px;
  }
  .process-step {
    gap: 22px;
  }
  .process-step h3 {
    font-size: 27px;
  }
  .process-step p {
    font-size: 13px;
  }
  .process-outcome {
    font-size: 7px;
  }
  .process-outcome > span {
    font-size: 10px;
  }
  .conversation {
    padding-block: 56px 62px;
  }
  .conversation h2 {
    font-size: 41px;
    letter-spacing: -1.8px;
  }
  .conversation > p:not(.eyebrow) {
    font-size: 13px;
  }
  .conversation > p br {
    display: none;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-bottom: 33px;
  }
  .footer-brand {
    grid-row: auto;
  }
  .company-name {
    font-size: 10px;
    max-width: 310px;
  }
  .footer-tagline {
    font-size: 11px;
  }
  .site-footer h2 {
    font-size: 9px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .footer-contact > a {
    font-size: 13px;
  }
  .footer-address address {
    font-size: 11px;
    max-width: 295px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 9px;
  }
  .footer-bottom > span {
    display: none;
  }
}

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