:root {
  --paper: #f5f3ed;
  --ink: #292d27;
  --muted: #73746c;
  --copper: #a45238;
  --line: #dcdcd2;
  --serif: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

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

button:disabled {
  cursor: wait;
  opacity: .65;
}

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

[hidden] {
  display: none !important;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

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

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

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

.header-inner {
  height: 100px;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 37px;
  stroke-width: 1.6;
}

.brand-type {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 1.3px;
  font-weight: 700;
}

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

.desktop-nav {
  gap: 32px;
}

.desktop-nav a {
  font-size: 12px;
  color: #5f635b;
  transition: color .2s;
  position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--copper);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .2s;
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 51px;
  padding: 14px 23px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.button:hover svg {
  transform: translate(2px, -2px);
}

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

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

.header-cta {
  min-height: 42px;
  padding: 11px 19px;
  gap: 31px;
}

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

.button-dark:hover {
  background: #464e42;
}

.button-copper {
  background: var(--copper);
  color: #fffaf4;
}

.button-copper:hover {
  background: #88432e;
}

.button-light {
  border-color: #6b7164;
  color: var(--paper);
}

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

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

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  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 {
  padding: 8px 24px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.mobile-nav a span {
  color: var(--muted);
  font-size: 11px;
}

.mobile-nav svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  padding-block: 48px 56px;
}

.hero-content {
  padding-block: 25px 18px;
}

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

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

body h1 {
  font-family: var(--serif);
  font-size: clamp(62px, 6.25vw, 90px);
  line-height: 1.015;
  font-weight: 400;
  letter-spacing: -4.8px;
  margin: 31px 0 23px;
}

h1 em, h2 em {
  font-weight: 400;
  color: var(--copper);
}

.hero-description {
  max-width: 380px;
  color: #73746c;
  font-size: 14px;
  line-height: 1.85;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  font-size: 12px;
  transition: color .2s;
}

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

.text-link svg {
  height: 16px;
  width: 16px;
}

.text-link > span {
  font-size: 18px;
}

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

.asterisk {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--copper);
}

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

.hero-note strong {
  color: #555b51;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  background: #55534c;
  color: #fffdf5;
}

.hero-visual > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,28,24,.13) 0%, transparent 40%, rgba(25,28,24,.72) 100%);
}

.image-topline {
  position: absolute;
  inset: 27px 29px auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
}

.image-cross {
  font-size: 23px;
  font-weight: 300;
}

.image-caption {
  position: absolute;
  bottom: 89px;
  left: 34px;
  right: 28px;
  z-index: 1;
}

.caption-rule {
  display: block;
  width: 34px;
  height: 1px;
  background: #c7aa89;
  margin-bottom: 23px;
}

.image-caption p {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -.5px;
}

.caption-label {
  display: block;
  margin-top: 20px;
  font-size: 7px;
  letter-spacing: 1.6px;
  color: #d3d4c9;
}

.image-index {
  position: absolute;
  z-index: 1;
  inset: auto 34px 27px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff40;
  padding-top: 15px;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #d3d4c9;
}

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

.discipline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
  font-size: 13px;
}

.strip-star {
  color: var(--copper);
  font-size: 20px;
}

.section-kicker {
  margin-bottom: 28px;
}

.section-number {
  color: var(--copper);
  border-right: 1px solid #c4c4b9;
  padding-right: 12px;
  margin-right: 2px;
  font-size: 10px;
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about-image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 8px;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.about-image figcaption svg {
  width: 17px;
  height: 17px;
  color: var(--copper);
}

.about-copy {
  padding-bottom: 17px;
}

.lead-copy {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -.6px;
  margin-bottom: 19px;
}

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

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 21px;
  padding-block: 13px 26px;
}

.about-principles > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}

.small-cross {
  color: var(--copper);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.about-copy .text-link {
  border-bottom: 1px solid #bcbfb1;
  padding-bottom: 9px;
}

.expertise-section {
  background: #ebece5;
}

.expertise-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 45px;
}

.expertise-heading > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 5px;
}

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

.service-card {
  padding: 27px 24px 0;
  background: var(--paper);
  border-top: 2px solid transparent;
  min-width: 0;
  transition: border-color .2s;
}

.service-card:hover, .service-card:has([aria-expanded='true']) {
  border-top-color: var(--copper);
}

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

.service-icon {
  height: 35px;
  width: 35px;
  stroke-width: 1.25;
  color: var(--copper);
}

.service-top > span {
  color: #85867d;
  font-size: 9px;
}

.service-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.17;
  letter-spacing: -.7px;
  margin-bottom: 17px;
}

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

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

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

.service-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

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

.service-details {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 18px;
  font-size: 11px;
  line-height: 1.7;
}

.service-details h4 {
  font-weight: 600;
  margin-bottom: 9px;
}

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

.service-details li {
  margin-bottom: 8px;
}

.service-details a {
  color: var(--copper);
  display: inline-flex;
  gap: 8px;
}

.service-details a:hover {
  text-decoration: underline;
}

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

.approach-section {
  background: #2c332b;
  color: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}

.approach-section .section-kicker {
  color: #d3d4c8;
}

.approach-section .section-number {
  color: #d29678;
  border-color: #59604f;
}

.approach-section h2 em {
  color: #d39b7d;
}

.approach-intro > p:not(.eyebrow) {
  max-width: 350px;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.9;
  color: #b5bcb0;
}

.approach-intro .button {
  margin-top: 31px;
}

.approach-steps {
  padding-top: 10px;
}

.approach-step {
  display: flex;
  gap: 24px;
  padding-block: 30px;
  border-top: 1px solid #525b4d;
}

.approach-step:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.step-number {
  flex-shrink: 0;
  color: #d39b7d;
  font-size: 11px;
  padding-top: 7px;
}

.approach-step h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.approach-step p {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.85;
  color: #b5bcb0;
}

.step-tag {
  display: block;
  margin-top: 17px;
  font-size: 7px;
  letter-spacing: 1.7px;
  color: #d39b7d;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 10%;
}

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

.contact-intro .button {
  margin-top: 28px;
}

.contact-caption {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 9px;
}

.contact-details {
  padding-top: 21px;
  min-width: 0;
}

.contact-item {
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 13px;
  color: var(--copper);
  font-size: 8px;
  letter-spacing: 1.8px;
}

.contact-item a {
  font-size: 17px;
  line-height: 1.6;
  transition: color .2s;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--copper);
}

.email-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

#copy-email {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 9px;
  width: 36px;
  height: 36px;
  transition: color .2s, border-color .2s;
}

#copy-email:hover {
  color: var(--copper);
  border-color: var(--copper);
}

#copy-email svg {
  width: 16px;
  height: 16px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 35px;
}

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

.footer-main .brand-mark {
  width: 40px;
}

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

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

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

.back-top:hover {
  color: var(--copper);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
}

.footer-bottom > span {
  font-size: 7px;
  letter-spacing: 1.3px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 40;
  max-width: calc(100% - 32px);
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 8px 30px #0002;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}

.toast.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1600px) {
  .hero {
    gap: 7%;
  }

  .hero-visual {
    min-height: 630px;
  }

  .hero-content {
    padding-block: 36px;
  }

  body h1 {
    margin-top: 38px;
  }

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

}

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

  .desktop-nav {
    gap: 22px;
  }

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

  .brand-mark {
    width: 43px;
  }

  .hero {
    gap: 4%;
  }

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

  body h1 {
    letter-spacing: -3.6px;
  }

  .hero-visual {
    min-height: 575px;
  }

  .hero-actions {
    gap: 17px;
  }

  .hero-actions .button {
    padding-inline: 17px;
    gap: 18px;
  }

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

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

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

  .services-grid {
    gap: 12px;
  }

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

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

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

  .about-grid {
    gap: 6%;
  }

  .about-image img {
    height: 370px;
  }

  .about-principles {
    gap: 9px 15px;
  }

  .approach-grid {
    gap: 7%;
  }

  .contact-section {
    gap: 6%;
  }

  .contact-item a {
    font-size: 14px;
  }

}

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

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

  .hero-visual {
    min-height: 588px;
  }

  body h1 {
    font-size: 62px;
  }

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

  .image-caption {
    left: 25px;
    right: 20px;
  }

  .image-caption p {
    font-size: 26px;
  }

  .image-index {
    left: 25px;
    right: 25px;
  }

  .image-index span:first-child {
    font-size: 6px;
  }

  .image-topline {
    left: 25px;
    right: 25px;
  }

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

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

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

  .expertise-heading > p {
    max-width: 250px;
  }

  .discipline-inner {
    font-size: 11px;
  }

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

  .about-grid {
    gap: 35px;
  }

  .about-image img {
    height: 410px;
  }

  .about-copy > p:not(.lead-copy) {
    font-size: 12px;
  }

  .about-principles {
    padding-block: 8px 21px;
  }

  .approach-step {
    gap: 17px;
  }

  .approach-step h3 {
    font-size: 24px;
  }

  .footer-main > p {
    max-width: 170px;
    text-align: center;
    line-height: 1.7;
  }

}

@media (max-width: 767px) {
  .page-width {
    width: calc(100% - 40px);
  }

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

  .header-inner {
    height: 80px;
  }

  .brand-type {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .brand-type > span {
    font-size: 7px;
    letter-spacing: 3px;
    margin-top: 6px;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 33px 30px;
  }

  .hero-content {
    padding: 0;
  }

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

  body h1 {
    font-size: clamp(60px, 10.8vw, 78px);
    letter-spacing: -3.4px;
    margin-block: 25px 23px;
    line-height: 1.01;
  }

  .hero-description {
    max-width: 390px;
    font-size: 13px;
    line-height: 1.85;
  }

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

  .hero-actions .button {
    padding-inline: 18px;
  }

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

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

  .hero-note p {
    font-size: 9px;
  }

  .asterisk {
    font-size: 33px;
  }

  .hero-visual {
    height: 450px;
    min-height: 0;
  }

  .hero-visual > img {
    object-position: 60% 44%;
  }

  .image-topline {
    top: 21px;
  }

  .image-caption {
    bottom: 78px;
  }

  .image-caption p {
    font-size: 28px;
  }

  .caption-label {
    font-size: 6px;
    letter-spacing: 1.5px;
  }

  .image-index {
    bottom: 23px;
  }

  .discipline-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px 16px;
    padding-block: 25px;
    font-size: 11px;
  }

  .discipline-inner > span:not(.strip-star)::before {
    content: '+';
    color: var(--copper);
    margin-right: 12px;
  }

  .strip-star {
    display: none;
  }

  .section-kicker {
    font-size: 7px;
    letter-spacing: 1.2px;
    margin-bottom: 23px;
  }

  .section-number {
    font-size: 9px;
    padding-right: 10px;
  }

  body h2 {
    font-size: clamp(35px, 6.8vw, 46px);
    letter-spacing: -1.4px;
    line-height: 1.15;
  }

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

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

  .about-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-image figcaption {
    font-size: 7px;
  }

  .about-copy {
    padding-bottom: 0;
  }

  .lead-copy {
    font-size: 28px;
  }

  .about-copy > p:not(.lead-copy) {
    font-size: 13px;
  }

  .about-principles {
    gap: 10px 20px;
    padding-block: 13px 26px;
  }

  .expertise-heading {
    display: block;
    margin-bottom: 31px;
  }

  .expertise-heading > p {
    max-width: 350px;
    margin-top: 21px;
    font-size: 13px;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    padding: 22px 18px 0;
  }

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

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

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

  .service-card > p {
    font-size: 11px;
    min-height: 105px;
  }

  .service-toggle {
    margin-top: 22px;
    font-size: 9px;
  }

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

  .expertise-note {
    font-size: 9px;
  }

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

  .approach-intro > p:not(.eyebrow) {
    max-width: 400px;
  }

  .approach-steps {
    padding: 0;
  }

  .approach-step {
    gap: 22px;
  }

  .approach-step h3 {
    font-size: 26px;
  }

  .approach-step p {
    max-width: 100%;
    font-size: 12px;
  }

  .step-tag {
    font-size: 7px;
  }

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

  .contact-intro > p:not(.eyebrow) {
    font-size: 12px;
  }

  .contact-details {
    padding-top: 0;
  }

  .contact-item {
    padding-block: 23px;
  }

  .contact-item a {
    font-size: 15px;
  }

  .email-row {
    justify-content: space-between;
    gap: 8px;
  }

  .contact-item address {
    font-size: 12px;
  }

  .footer-main {
    flex-wrap: wrap;
    padding-block: 29px;
    gap: 24px 14px;
  }

  .footer-main > p {
    text-align: left;
    max-width: none;
    order: 3;
    flex-basis: 100%;
    font-size: 10px;
  }

  .footer-main .brand {
    gap: 9px;
  }

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

  .footer-main .brand-type > span {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .footer-main .brand-mark {
    width: 33px;
  }

  .back-top {
    gap: 13px;
    font-size: 9px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 11px;
    padding-block: 20px;
    font-size: 7px;
  }

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

}

@media (max-width: 389px) {
  .page-width {
    width: calc(100% - 32px);
  }

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

  body h1 {
    font-size: 58px;
  }

  .hero-actions {
    gap: 15px;
  }

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

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

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

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

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

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

  .service-toggle {
    font-size: 11px;
  }

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

  .contact-item a {
    font-size: 13px;
  }

  .section-kicker {
    letter-spacing: .8px;
  }

}

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

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

}
