:root {
  --paper: #f7f8f2;
  --ink: #233c2f;
  --muted: #6a7068;
  --line: #dce0d5;
  --green: #203d30;
  --lime: #dce9ac;
  --serif: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

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

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

body.dialog-open {
  overflow: hidden;
}

button, input, select, textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

button {
  color: inherit;
}

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

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

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

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

:focus-visible {
  outline: 2px solid #719249;
  outline-offset: 5px;
}

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

.icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

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

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

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

.eyebrow:has(.status-dot) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: #7d9359;
  border-radius: 50%;
}

.small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #839b56;
}

body h1, body h2, body h3 {
  font-weight: 500;
}

body h1 {
  font-size: clamp(47px, 4.65vw, 70px);
  line-height: 1.1;
  letter-spacing: -3.3px;
}

body h2 {
  font-size: clamp(35px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.8px;
}

h1 em, h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 180ms ease, transform 180ms ease;
}

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

.button-dark:hover {
  background: #36543d;
  transform: translateY(-2px);
}

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

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

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

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

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

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

/* Header and first impression */
.site-header {
  border-bottom: 1px solid var(--line);
}

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

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

.brand-symbol {
  width: 35px;
  height: 35px;
  color: var(--green);
}

.brand-copy {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 1.1px;
  line-height: 1.3;
}

.brand-copy > span {
  display: block;
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: 1.6px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-left: 80px;
}

.desktop-nav a {
  color: #535b50;
  font-size: 12px;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: #182e21;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-cta {
  padding: 11px 18px;
  gap: 30px;
}

.menu-toggle {
  display: none;
  background: transparent;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 15px 24px 24px;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  gap: 32px;
  padding-block: 65px 78px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 5px;
}

.hero-copy .eyebrow {
  margin-bottom: 26px;
  font-size: 9px;
  letter-spacing: 1.3px;
}

.hero-description {
  color: var(--muted);
  max-width: 425px;
  font-size: 15px;
  line-height: 1.85;
  margin-top: 27px;
}

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

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

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

.note-symbol {
  font-size: 34px;
  line-height: 1;
  color: #557545;
}

.hero-visual {
  position: relative;
  padding-left: 14px;
}

.artwork-frame {
  position: relative;
  height: 526px;
  overflow: hidden;
  background: #e4e7db;
  border-radius: 3px 85px 3px 3px;
}

.artwork-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork-caption {
  position: absolute;
  top: 27px;
  left: 27px;
  font-size: 8px;
  letter-spacing: 1.35px;
  color: #4f5a45;
}

.orbit-badge {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 65px;
  right: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px solid #66745380;
  border-radius: 50%;
  transform: rotate(13deg);
}

.orbit-badge .icon {
  width: 28px;
  height: 28px;
}

.orbit-badge span {
  font-size: 6px;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}

.image-coordinate {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #536047;
}

.insight-card {
  position: absolute;
  left: -23px;
  bottom: 30px;
  width: 258px;
  padding: 18px 19px 13px;
  background: #fffffff5;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 12px 30px #25341b0c;
}

.insight-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-cross {
  margin-left: auto;
  font-size: 15px;
  font-weight: 400;
  color: #77836a;
}

.insight-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin: 15px 0 19px;
}

.insight-card-body p {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -.3px;
}

.insight-card-body strong {
  font-weight: 500;
}

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

.mini-bars i {
  width: 9px;
  background: #a8ba86;
  border-radius: 2px 2px 0 0;
}

.mini-bars i:nth-child(1) {
  height: 13px;
  background: #e1e7d2;
}

.mini-bars i:nth-child(2) {
  height: 20px;
  background: #cbd7b4;
}

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

.mini-bars i:nth-child(4) {
  height: 35px;
  background: #6f8a57;
}

.mini-bars i:nth-child(5) {
  height: 44px;
  background: #2d5139;
}

.insight-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-top: 1px solid #e6e9e0;
  padding-top: 10px;
  font-size: 7px;
  color: #77816e;
}

.insight-card-bottom .icon {
  width: 13px;
  height: 13px;
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 24px;
}

.principles > div {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-left: 30px;
  border-right: 1px solid var(--line);
}

.principles > div:first-child {
  padding-left: 0;
}

.principles > div:last-child {
  border-right: 0;
}

.principles span {
  color: #869276;
  font-size: 10px;
  font-family: monospace;
}

.principles p {
  font-size: 13px;
  letter-spacing: -.1px;
}

/* About and connected expertise */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
}

.about .eyebrow {
  margin-bottom: 23px;
  font-size: 9px;
}

.about-copy {
  padding-top: 4px;
}

.body-lead {
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: -.3px;
  max-width: 430px;
}

.about-copy > p + p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-block: 16px 20px;
  max-width: 435px;
}

.expertise {
  background: #eff1e9;
  border-block: 1px solid #e8ebe1;
}

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

.section-heading .eyebrow {
  margin-bottom: 20px;
}

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

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

.service-card {
  background: #f9faf5;
  border: 1px solid #e1e5d9;
  padding: 29px 28px 25px;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
}

.service-featured {
  background: var(--green);
  color: #f3f5ec;
  border-color: var(--green);
}

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

.service-top > span {
  font-size: 10px;
  font-family: monospace;
  color: #839077;
}

.service-icon {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.service-featured .service-icon, .service-featured .service-top > span {
  color: var(--lime);
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.5px;
  margin-bottom: 17px;
}

.service-card > p {
  color: #6b7265;
  font-size: 12px;
  line-height: 1.85;
}

.service-featured > p {
  color: #bbc9b9;
}

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

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-block: 9px;
  font-size: 10px;
}

.service-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #92a67c;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-featured li::before {
  background: var(--lime);
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  background: transparent;
  border-top: 1px solid #dce1d3;
  padding: 19px 0 0;
  text-align: left;
  font-size: 11px;
  margin-top: auto;
}

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

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

.service-featured .service-link {
  border-color: #536951;
  color: var(--lime);
}

.expertise-footnote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #737d69;
  margin-top: 27px;
}

/* Process and contact */
.approach {
  color: #f3f5e9;
  background: var(--green);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
}

.approach .eyebrow {
  color: #c2d69a;
  margin-bottom: 22px;
}

.approach h2 em {
  color: #d6e5b3;
}

.approach-intro > p:not(.eyebrow) {
  color: #b3c1b2;
  font-size: 13px;
  line-height: 1.85;
  max-width: 375px;
  margin-top: 23px;
}

.data-art {
  margin-top: 33px;
  position: relative;
  width: 340px;
  max-width: 100%;
  height: 107px;
  overflow: hidden;
  border: 1px solid #47614a;
  border-radius: 3px;
}

.data-art img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: .75;
}

.data-art > span {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 7px;
  letter-spacing: 1.4px;
}

.data-art > .icon {
  position: absolute;
  top: 13px;
  right: 16px;
  width: 16px;
  height: 16px;
}

.process-list {
  padding-top: 6px;
}

.process-step {
  border-top: 1px solid #4a6050;
}

.process-step:last-of-type {
  border-bottom: 1px solid #4a6050;
}

.process-step summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 23px;
  cursor: pointer;
  padding: 24px 0;
  font-size: 17px;
  letter-spacing: -.3px;
}

.process-step summary::-webkit-details-marker {
  display: none;
}

.step-number {
  font-size: 11px;
  font-family: monospace;
  color: #bbcc9c;
  min-width: 18px;
}

.expand-icon {
  margin-left: auto;
  position: relative;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.expand-icon::before, .expand-icon::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 3px;
  width: 12px;
  height: 1px;
  background: #c6d3b2;
}

.expand-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.process-step[open] .expand-icon::after {
  transform: rotate(0);
}

.process-step[open] summary {
  color: #dbe9b8;
}

.process-description {
  padding: 0 35px 26px 41px;
}

.process-description p {
  font-size: 12px;
  color: #bbc6b6;
  line-height: 1.9;
}

.process-description > span {
  display: block;
  margin-top: 17px;
  font-size: 7px;
  letter-spacing: 1.6px;
  color: #cbdca8;
}

.process-note {
  color: #9daf9c;
  font-size: 10px;
  margin-top: 24px;
}

.contact-cta {
  background: #e9eddf;
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.contact-cta .eyebrow {
  margin-bottom: 23px;
  font-size: 9px;
}

.contact-invitation {
  max-width: 380px;
  margin-left: 0;
}

.contact-invitation > p {
  color: #67715e;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 23px;
}

.invitation-note {
  display: block;
  margin-top: 14px;
  color: #747d6c;
  font-size: 9px;
}

.site-footer {
  padding-block: 57px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: .85fr 1.1fr 1fr;
  gap: 46px;
  padding-bottom: 51px;
}

.footer-brand .brand-copy {
  font-size: 14px;
}

.footer-brand .brand-symbol {
  width: 30px;
  height: 30px;
}

.footer-brand .brand-copy > span {
  font-size: 6px;
  letter-spacing: 1.1px;
}

.footer-brand > p {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-name {
  display: block;
  color: #7c8475;
  font-size: 8px;
  margin-top: 18px;
}

.footer-grid h3 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-block: 5px 22px;
}

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

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

.footer-contact a > span {
  flex-shrink: 0;
  color: #7d8b6e;
}

.footer-address address {
  font-size: 10px;
  font-style: normal;
  line-height: 1.9;
  color: #6e7866;
  max-width: 330px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #727c6b;
  font-size: 8px;
}

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

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

.footer-bottom .icon {
  width: 12px;
  height: 12px;
}

/* Native dialog keeps keyboard focus inside the conversation. */
#review-dialog {
  width: min(580px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  overflow-y: auto;
}

#review-dialog::backdrop {
  background: #13241dd4;
  backdrop-filter: blur(5px);
}

.dialog-inner {
  position: relative;
  padding: 37px 39px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 19px;
  width: 36px;
  height: 36px;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
}

.dialog-close:hover {
  background: #e7ebdf;
}

.dialog-inner .eyebrow {
  margin-bottom: 16px;
  font-size: 8px;
}

.dialog-inner h2 {
  font-size: 42px;
}

#dialog-description {
  margin-block: 18px 25px;
  color: var(--muted);
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#review-form label {
  display: block;
  font-size: 11px;
  margin-bottom: 16px;
}

#review-form input, #review-form select, #review-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  margin-top: 6px;
  background: #fffefa;
  border: 1px solid #cfd6c6;
  border-radius: 3px;
  font-size: 12px;
}

#review-form textarea {
  resize: vertical;
  min-height: 85px;
}

#review-form input::placeholder, #review-form textarea::placeholder {
  color: #929b88;
}

.form-submit {
  width: 100%;
}

.form-privacy {
  margin-top: 13px;
  font-size: 9px;
  line-height: 1.7;
  color: #737d69;
}

.email-ready {
  padding-block: 8px 0;
}

.ready-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #e0e9cb;
  border-radius: 50%;
  margin-bottom: 14px;
}

.email-ready h3 {
  font-size: 22px;
}

.email-ready > p {
  margin-block: 12px 22px;
  font-size: 13px;
  color: var(--muted);
}

.edit-details {
  margin-left: 16px;
}

.email-ready .email-fallback {
  font-size: 10px;
  margin-bottom: 0;
}

.email-fallback a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}

/* Responsive composition */
@media (min-width: 1500px) {
  .hero {
    gap: 65px;
  }

  .artwork-frame {
    height: 570px;
  }

}

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

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

  .brand-copy {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
  }

  body h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }

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

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

  .hero-actions {
    gap: 18px;
  }

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

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

  .artwork-frame {
    height: 490px;
  }

  .artwork-caption {
    font-size: 6px;
    left: 21px;
  }

  .insight-card {
    width: 237px;
    left: -12px;
  }

  .principles > div {
    padding-left: 23px;
    gap: 14px;
  }

  .principles p {
    font-size: 11px;
  }

  .about, .approach-grid, .contact-grid {
    gap: 50px;
  }

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

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

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

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

  .process-step summary {
    font-size: 15px;
    gap: 17px;
  }

  .process-description {
    padding-left: 35px;
  }

  .footer-grid {
    gap: 30px;
    grid-template-columns: .9fr 1.05fr 1fr;
  }

  .footer-contact a {
    font-size: 10px;
  }

}

@media (max-width: 800px) {
  .site-container {
    width: calc(100% - 48px);
  }

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

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

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 24px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 42px;
    padding: 8px;
  }

  .menu-toggle > span {
    width: 20px;
    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);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 48px 52px;
    gap: 40px;
  }

  body h1 {
    font-size: clamp(44px, 7.7vw, 66px);
    line-height: 1.1;
    letter-spacing: -2.6px;
  }

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

  .hero-description {
    max-width: 440px;
    font-size: 15px;
    margin-top: 23px;
  }

  .hero-actions .button {
    font-size: 12px;
    padding: 15px 20px;
  }

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

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

  .hero-visual {
    padding-left: 19px;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

  .artwork-frame {
    height: 480px;
  }

  .artwork-caption {
    font-size: 8px;
  }

  .insight-card {
    left: 0;
    bottom: 26px;
    width: 258px;
  }

  .principles {
    gap: 14px;
    padding-block: 22px;
  }

  .principles > div {
    display: block;
    padding-left: 12px;
  }

  .principles span {
    font-size: 9px;
  }

  .principles p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.5;
  }

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

  body h2 {
    font-size: 41px;
  }

  .about-copy > p + p {
    max-width: 600px;
  }

  .body-lead {
    max-width: 530px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading > p br {
    display: none;
  }

  .service-grid {
    gap: 13px;
  }

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

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

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

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

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

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

  .process-step summary {
    font-size: 18px;
  }

  .process-description p {
    font-size: 13px;
  }

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

  .contact-invitation {
    max-width: 450px;
  }

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

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

  .footer-brand > p {
    margin-top: 15px;
  }

  .footer-contact a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom > span {
    width: 100%;
  }

}

@media (max-width: 580px) {
  .header-cta {
    display: none;
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
  }

  .brand-copy {
    font-size: 14px;
  }

  .brand-copy > span {
    font-size: 6px;
  }

  .hero {
    padding-top: 39px;
  }

  body h1 {
    font-size: clamp(37px, 9.4vw, 54px);
    letter-spacing: -1.9px;
  }

  .hero-copy .eyebrow {
    font-size: 6.7px;
    letter-spacing: .8px;
    gap: 7px;
  }

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

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

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

  .artwork-frame {
    height: 400px;
    border-top-right-radius: 65px;
  }

  .artwork-caption {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .orbit-badge {
    width: 66px;
    height: 66px;
    top: 62px;
    right: 20px;
  }

  .orbit-badge .icon {
    width: 22px;
    height: 22px;
  }

  .orbit-badge span {
    font-size: 5px;
  }

  .insight-card {
    width: 235px;
    bottom: 22px;
    padding: 15px 16px 12px;
  }

  .insight-card-body p {
    font-size: 14px;
  }

  .image-coordinate {
    font-size: 6px;
    right: 16px;
    bottom: 13px;
  }

  .principles > div {
    padding-left: 5px;
  }

  .principles p {
    font-size: 9px;
  }

  .principles span {
    font-size: 8px;
  }

  body h2 {
    font-size: 35px;
    letter-spacing: -1.25px;
  }

  .about .eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
  }

  .body-lead {
    font-size: 18px;
  }

  .about-copy > p + p {
    font-size: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px;
  }

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

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

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

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

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

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

  .expertise-footnote {
    font-size: 9px;
    align-items: flex-start;
    line-height: 1.8;
    text-align: center;
  }

  .expertise-footnote .small-dot {
    flex-shrink: 0;
    margin-top: 5px;
  }

  .process-step summary {
    font-size: 15px;
    gap: 14px;
    padding-block: 23px;
  }

  .process-description {
    padding-left: 32px;
    padding-right: 13px;
  }

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

  .contact-cta .eyebrow {
    font-size: 7px;
  }

  .contact-invitation > p {
    font-size: 12px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-address address {
    max-width: 100%;
    font-size: 9px;
  }

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

  .footer-bottom > a {
    margin-left: auto;
  }

  .dialog-inner {
    padding: 32px 24px;
  }

  .dialog-inner h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #review-form input, #review-form select, #review-form textarea {
    font-size: 16px;
  }

  .edit-details {
    display: flex;
    margin: 20px 0 0;
  }

}

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

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

}
