:root {
  --paper: #f7f7f0;
  --white: #fffefa;
  --ink: #233f35;
  --green: #214b3e;
  --muted: #73786f;
  --line: #d9ddd2;
  --lime: #d6e7a7;
}

* {
  box-sizing: border-box;
}

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

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

button, input {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

button, a {
  touch-action: manipulation;
}

button:focus-visible, a:focus-visible {
  outline: 3px solid #8caa55;
  outline-offset: 5px;
}

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

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

svg {
  display: inline-block;
  flex-shrink: 0;
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

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

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

.section-space {
  padding-top: 100px;
  padding-bottom: 104px;
}

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

.small-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 0 12px 3px 0;
}

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

body h2 {
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.15;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  min-height: 51px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  transition: background .2s, transform .2s;
}

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

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

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

.button-primary:hover {
  background: #153b2e;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: #e8ecdf;
}

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

.button-lime:hover {
  background: #e4efc6;
}

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

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link .icon {
  width: 18px;
  height: 18px;
}

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

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

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

.header-inner {
  min-height: 98px;
}

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

.brand-monogram {
  font-family: Georgia, serif;
  font-size: 49px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -7px;
  padding-right: 6px;
}

.brand-monogram span {
  color: #93a871;
}

.brand-type {
  padding-left: 16px;
  border-left: 1px solid #aeb8a6;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1.3px;
}

.brand-type > span {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--muted);
}

.desktop-nav {
  gap: 35px;
  margin-left: 40px;
}

.desktop-nav a {
  font-size: 12px;
  position: relative;
  padding: 14px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width .2s;
}

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

.header-cta {
  min-height: 43px;
  padding: 9px 19px;
  gap: 35px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 11px 7px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 0;
  transition: transform .2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  padding: 10px 24px 22px;
  border-top: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 60px;
  padding-top: 52px;
  padding-bottom: 69px;
  align-items: center;
}

.hero-content {
  padding-top: 8px;
}

.hero h1 {
  font-size: clamp(56px, 5.65vw, 82px);
  line-height: 1.085;
  letter-spacing: -4.3px;
  font-weight: 400;
  margin-top: 25px;
}

.hero h1 em {
  letter-spacing: -3.8px;
}

.hero-description {
  max-width: 398px;
  font-size: 15px;
  line-height: 1.85;
  color: #686f65;
  margin-top: 25px;
}

.hero-actions {
  gap: 21px;
  margin-top: 28px;
}

.hero-actions .button {
  gap: 22px;
}

.hero-note {
  gap: 13px;
  margin-top: 38px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-note strong {
  color: var(--ink);
  font-weight: 400;
}

.note-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.note-icon .icon {
  width: 17px;
  height: 17px;
  stroke-width: 1;
}

.hero-visual {
  position: relative;
  padding-top: 24px;
  padding-bottom: 22px;
}

.image-label {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1.4px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #899e68;
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  height: 546px;
  border-radius: 120px 4px 4px 4px;
  object-position: 50% 54%;
}

.photo-caption {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 7px;
  color: var(--muted);
  letter-spacing: 1.5px;
}

.insight-card {
  position: absolute;
  left: -34px;
  bottom: 53px;
  width: 280px;
  padding: 22px 23px 17px;
  background: var(--white);
  box-shadow: 0 8px 30px #18392b0d;
  border: 1px solid #e5e7dd;
  border-radius: 4px;
}

.insight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-card .eyebrow {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--muted);
}

.mini-arrow {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eddd;
}

.mini-arrow .icon {
  width: 13px;
  height: 13px;
}

.insight-card > p {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.7px;
  margin: 8px 0 19px;
}

.insight-card strong {
  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.insight-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.insight-bottom > span {
  max-width: 95px;
  font-size: 8px;
  line-height: 1.5;
  color: var(--muted);
}

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

.mini-bars i {
  display: block;
  background: #8ca078;
  width: 9px;
  height: 7px;
}

.mini-bars i:nth-child(2) {
  height: 11px;
}

.mini-bars i:nth-child(3) {
  height: 10px;
}

.mini-bars i:nth-child(4) {
  height: 16px;
}

.mini-bars i:nth-child(5) {
  height: 21px;
  background: #55764f;
}

.mini-bars i:nth-child(6) {
  height: 24px;
  background: #3f6345;
}

.mini-bars i:nth-child(7) {
  height: 29px;
  background: var(--green);
}

.principles-bar {
  border-block: 1px solid var(--line);
}

.principles-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
}

.principles-inner > p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  padding-right: 45px;
  border-right: 1px solid var(--line);
}

.principles-inner strong {
  font-weight: 400;
  color: var(--ink);
}

.principles-inner > div {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}

.principle-mark {
  color: #6a805a;
  font-size: 27px;
  line-height: 1;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 39px;
}

.section-index {
  font-size: 9px;
  letter-spacing: 1px;
  color: #858b7e;
  white-space: nowrap;
}

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

.about-copy .lead {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-top: 0;
}

.about-copy > p {
  margin-top: 21px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 505px;
}

.about-copy .text-link {
  margin-top: 20px;
}

.expertise-section {
  background: #eeefe7;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

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

.service-grid {
  gap: 20px;
  margin-top: 44px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #dde1d5;
  border-radius: 4px;
  padding: 29px;
}

.featured-service {
  background: #e1e7d9;
  border-color: #d6dece;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-icon {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-card h3 {
  font-size: 26px;
  letter-spacing: -.8px;
  line-height: 1.25;
  font-weight: 400;
  margin-top: 30px;
}

.service-card > p {
  font-size: 12px;
  color: #707668;
  line-height: 1.85;
  margin-top: 17px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}

.service-card li {
  font-size: 10px;
  position: relative;
  padding-left: 13px;
  margin: 7px 0;
}

.service-card li::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #829570;
  position: absolute;
  left: 0;
  top: 7px;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid #d3d9ca;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
}

.service-link .icon {
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

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

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

.expertise-note a {
  color: var(--ink);
  margin-left: 3px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.approach-visual {
  position: relative;
  height: 506px;
}

.approach-visual > img {
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 110px 4px;
  object-position: 47% center;
}

.approach-image-note {
  position: absolute;
  left: 0;
  bottom: 36px;
  padding: 21px 27px;
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 36px;
}

.approach-image-note span {
  font-size: 9px;
  letter-spacing: 1.2px;
  line-height: 1.9;
}

.approach-image-note strong {
  font-weight: 500;
}

.approach-image-note > .icon {
  width: 29px;
  height: 29px;
}

.approach-content h2 {
  font-size: clamp(36px, 3.15vw, 46px);
}

.approach-description {
  margin-top: 20px;
  max-width: 400px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.process-list > li {
  display: flex;
  gap: 19px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-number {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: #748660;
  line-height: 1.45;
}

.process-list h3 {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.process-list p {
  max-width: 355px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.review-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 54px 62px;
  border-radius: 4px;
  background: var(--green);
  color: var(--paper);
}

.review-banner > div:not(.review-banner-mark), .review-banner > a {
  position: relative;
  z-index: 1;
}

.review-banner .eyebrow {
  color: #c1d0b1;
  font-size: 9px;
}

.review-banner h2 {
  font-size: 39px;
  letter-spacing: -1px;
  margin-top: 17px;
}

.review-banner h2 em {
  color: #d6e3be;
}

.review-banner p:not(.eyebrow) {
  color: #c1cec2;
  font-size: 11px;
  margin-top: 19px;
}

.review-banner .button {
  flex-shrink: 0;
  margin-top: 24px;
}

.review-banner-mark {
  position: absolute;
  right: 6px;
  top: -170px;
  font-size: 530px;
  line-height: 1;
  color: #315846;
  font-family: Arial, sans-serif;
  font-weight: 200;
  pointer-events: none;
}

.contact-footer {
  padding-top: 102px;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: end;
  gap: 35px;
}

.contact-heading h2 {
  font-size: 48px;
}

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

.contact-circle {
  display: grid;
  place-items: center;
  border: 1px solid #adb99d;
  border-radius: 50%;
  width: 69px;
  height: 69px;
  align-self: center;
  transition: background .2s;
}

.contact-circle:hover {
  background: #e5ebda;
}

.contact-circle .icon {
  width: 27px;
  height: 27px;
  stroke-width: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr;
  gap: 44px;
  padding-top: 38px;
  padding-bottom: 47px;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.contact-item > .eyebrow {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 17px;
}

.contact-item > a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 14px;
}

.contact-item > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-item > a .icon {
  width: 14px;
  height: 14px;
}

.contact-item > .email-link {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.contact-item > p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
}

.contact-item address {
  font-style: normal;
  font-size: 10px;
  color: #68715f;
  line-height: 1.9;
  max-width: 280px;
}

.copy-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
}

.copy-email:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  font-size: 22px;
  letter-spacing: -1px;
  font-family: Georgia, serif;
}

.footer-wordmark > span {
  color: #92a973;
}

.footer-company > p {
  font-size: 7px;
  line-height: 1.8;
  letter-spacing: .8px;
  color: var(--muted);
  margin-top: 8px;
}

.footer-bottom > p {
  color: var(--muted);
  font-size: 9px;
}

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

.back-to-top > span {
  font-size: 19px;
}

#service-dialog {
  width: min(570px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  overscroll-behavior: contain;
}

#service-dialog::backdrop {
  background: #0a251bd4;
  backdrop-filter: blur(5px);
}

body.dialog-open {
  overflow: hidden;
}

.dialog-content {
  position: relative;
  padding: 45px 38px 38px;
}

.dialog-close {
  position: absolute;
  top: 9px;
  right: 12px;
  width: 37px;
  height: 37px;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.dialog-content h2 {
  font-size: 37px;
  margin: 20px 0;
}

.dialog-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}

.dialog-content h3 {
  font-weight: 600;
  font-size: 13px;
  margin-top: 25px;
}

.dialog-content ul {
  font-size: 13px;
  line-height: 1.75;
  padding-left: 17px;
  margin: 12px 0 25px;
}

.dialog-content li {
  margin-bottom: 9px;
  padding-left: 4px;
}

.dialog-outcome {
  background: #e8ecdf;
  padding: 18px;
  margin-bottom: 25px;
}

.dialog-outcome .eyebrow {
  font-size: 8px;
}

.dialog-outcome p {
  font-size: 13px;
  margin-top: 7px;
}

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

@media (min-width: 1600px) {
  .hero {
    padding-top: 68px;
    padding-bottom: 82px;
  }

  .hero-image {
    height: 595px;
  }

}

@media (max-width: 1150px) {
  body .container {
    width: calc(100% - 72px);
  }

  .hero {
    gap: 40px;
  }

  .hero h1 {
    font-size: 62px;
    letter-spacing: -3.5px;
  }

  .hero h1 em {
    letter-spacing: -3px;
  }

  .hero-image {
    height: 515px;
  }

  .hero-actions {
    gap: 12px;
  }

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

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

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

  .principles-inner {
    gap: 20px;
  }

  .principles-inner > p {
    padding-right: 24px;
  }

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

  .service-card {
    padding: 25px 22px;
  }

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

  .approach-grid {
    gap: 45px;
  }

  .review-banner {
    padding: 46px 40px;
  }

  .review-banner h2 {
    font-size: 34px;
  }

  .contact-grid {
    gap: 26px;
  }

  .contact-heading {
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
  }

  .contact-heading h2 {
    font-size: 42px;
  }

}

@media (max-width: 900px) {
  .brand-type {
    font-size: 10px;
    padding-left: 11px;
  }

  .brand {
    gap: 10px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-cta {
    gap: 17px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 53px;
    letter-spacing: -2.8px;
  }

  .hero {
    gap: 32px;
  }

  .hero-image {
    height: 495px;
    border-top-left-radius: 95px;
  }

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

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

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

  .hero-note {
    margin-top: 23px;
  }

  .insight-card {
    width: 244px;
    left: -22px;
    padding: 19px;
  }

  .insight-card > p {
    font-size: 21px;
  }

  .principles-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 25px;
    gap: 22px;
  }

  .principles-inner > p {
    width: 100%;
    border-right: 0;
    text-align: center;
    padding: 0;
  }

  .principles-inner > p br {
    display: none;
  }

  .about-grid {
    gap: 35px;
  }

  .about-copy .lead {
    font-size: 19px;
  }

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

  .service-grid {
    gap: 12px;
  }

  .service-card {
    padding: 23px 18px;
  }

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

  .service-card li {
    font-size: 9px;
  }

  .service-link {
    font-size: 10px;
  }

  .approach-grid {
    gap: 34px;
  }

  .approach-content h2 {
    font-size: 34px;
  }

  .approach-visual {
    height: 505px;
  }

  .review-banner {
    gap: 25px;
    padding: 40px 30px;
  }

  .review-banner h2 {
    font-size: 31px;
  }

  .review-banner .button {
    font-size: 11px;
    padding-inline: 17px;
    gap: 13px;
  }

  .contact-footer {
    padding-top: 75px;
  }

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

  .contact-heading > p {
    font-size: 11px;
  }

  .contact-circle {
    width: 55px;
    height: 55px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    row-gap: 30px;
  }

  .contact-item:last-child {
    grid-column: 1 / -1;
  }

  .contact-item address {
    max-width: 440px;
  }

}

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

  body .container {
    width: calc(100% - 44px);
  }

  .header-inner {
    min-height: 79px;
  }

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

  .brand-monogram {
    font-size: 42px;
  }

  .brand-type {
    font-size: 11px;
  }

  .brand-type > span {
    font-size: 7px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 33px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding-top: 0;
  }

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

  .hero h1 {
    font-size: clamp(49px, 10.5vw, 69px);
    margin-top: 22px;
    letter-spacing: -2.8px;
    line-height: 1.075;
  }

  .hero h1 em {
    letter-spacing: -2.5px;
  }

  .hero-description {
    max-width: 415px;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 22px;
  }

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

  .hero-actions .button {
    font-size: 10px;
    gap: 13px;
    padding-inline: 14px;
    min-height: 46px;
  }

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

  .hero-note {
    margin-top: 24px;
  }

  .hero-visual {
    padding-top: 22px;
    margin-left: 17px;
  }

  .hero-image {
    height: 390px;
    border-top-left-radius: 85px;
    object-position: center 58%;
  }

  .insight-card {
    left: -17px;
    width: 232px;
    bottom: 46px;
    padding: 19px 20px 15px;
  }

  .insight-card > p {
    margin-bottom: 15px;
  }

  .photo-caption {
    font-size: 6px;
  }

  .principles-inner {
    justify-content: space-between;
    gap: 22px 9px;
    padding-block: 25px;
  }

  .principles-inner > div {
    flex-direction: column;
    text-align: center;
    gap: 11px;
    font-size: 8px;
  }

  .principles-inner > p {
    font-size: 10px;
  }

  .principle-mark {
    font-size: 24px;
  }

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

  .section-intro {
    margin-bottom: 29px;
  }

  .section-intro .eyebrow {
    font-size: 8px;
    letter-spacing: 1.25px;
  }

  .section-index {
    display: none;
  }

  .small-line {
    width: 19px;
    margin-right: 8px;
  }

  body h2 {
    font-size: 39px;
    letter-spacing: -1.6px;
  }

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

  .about-copy .lead {
    font-size: 20px;
  }

  .about-copy > p {
    font-size: 12px;
    margin-top: 16px;
  }

  .about-copy .text-link {
    margin-top: 17px;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 23px;
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 29px;
  }

  .service-card {
    padding: 27px;
  }

  .service-card h3 {
    margin-top: 23px;
    font-size: 29px;
  }

  .service-card > p {
    font-size: 13px;
  }

  .service-card li {
    font-size: 11px;
  }

  .service-link {
    font-size: 12px;
  }

  .service-card ul {
    margin-block: 20px 25px;
  }

  .expertise-note {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    font-size: 10px;
    line-height: 1.8;
  }

  .expertise-note > a {
    margin-left: 15px;
  }

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

  .approach-visual {
    height: 340px;
  }

  .approach-visual > img {
    border-bottom-right-radius: 85px;
    object-position: center 45%;
  }

  .approach-content h2 {
    font-size: 37px;
  }

  .approach-description {
    font-size: 12px;
  }

  .process-list {
    margin-top: 25px;
  }

  .process-list h3 {
    font-size: 13px;
  }

  .process-list p {
    font-size: 12px;
  }

  .review-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 25px;
    gap: 0;
  }

  .review-banner h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .review-banner .eyebrow {
    font-size: 8px;
  }

  .review-banner p:not(.eyebrow) {
    font-size: 11px;
    max-width: 240px;
  }

  .review-banner .button {
    margin-top: 27px;
    min-height: 48px;
  }

  .review-banner-mark {
    right: -100px;
    top: 0;
    font-size: 450px;
  }

  .contact-footer {
    padding-top: 62px;
  }

  .contact-heading {
    grid-template-columns: 1fr auto;
    gap: 22px 10px;
  }

  .contact-heading h2 {
    font-size: 39px;
  }

  .contact-heading > p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 12px;
  }

  .contact-circle {
    width: 45px;
    height: 45px;
    align-self: start;
    margin-top: 6px;
  }

  .contact-circle .icon {
    width: 21px;
    height: 21px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 29px;
    padding-block: 30px;
  }

  .contact-item:last-child {
    grid-column: auto;
  }

  .contact-item > .eyebrow {
    margin-bottom: 10px;
  }

  .contact-item > .email-link {
    font-size: 12px;
  }

  .contact-item address {
    max-width: 300px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px 15px;
    padding-bottom: 23px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-company > p {
    font-size: 7px;
  }

  .dialog-content {
    padding: 43px 24px 26px;
  }

  .dialog-content h2 {
    font-size: 31px;
  }

  .dialog-content > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }

}

@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

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

  .hero-image {
    height: 345px;
  }

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

  .principles-inner > div {
    font-size: 7px;
  }

}

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

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

}
