:root {
  --paper: #f8f8f2;
  --paper-deep: #efefe7;
  --forest: #263f32;
  --ink: #26372d;
  --muted: #71766c;
  --olive: #879676;
  --line: #dbdfd3;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

button {
  cursor: pointer;
}

button, input, select, textarea {
  border-radius: 0;
}

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

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

::selection {
  background: #cbd5be;
  color: var(--forest);
}

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

[hidden] {
  display: none !important;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 30;
  padding: 14px 22px;
  background: var(--forest);
  color: white;
}

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

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

.header-inner {
  height: 105px;
  gap: 32px;
}

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

.brand-mark {
  height: 38px;
  width: 41px;
  display: flex;
  gap: 3px;
  align-items: center;
  overflow: hidden;
}

.brand-mark i {
  display: block;
  width: 8px;
  height: 34px;
  background: var(--forest);
  transform: skewY(-32deg);
}

.brand-mark i:nth-child(2) {
  height: 23px;
  align-self: flex-end;
}

.brand-mark i:nth-child(3) {
  height: 25px;
  align-self: flex-start;
}

.brand-type {
  font-size: 29px;
  line-height: .94;
  font-weight: 750;
  letter-spacing: 1px;
}

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

.desktop-nav {
  gap: 38px;
  margin-left: 90px;
  font-size: 13px;
}

.desktop-nav a, .footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover, .footer-links a:hover {
  color: var(--olive);
}

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

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

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

.button-dark:hover {
  background: #3c5844;
}

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

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

.header-cta {
  min-height: 45px;
  padding: 12px 20px;
  gap: 30px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding-block: 62px 85px;
  align-items: center;
}

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

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

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

.hero h1 {
  font-size: clamp(64px, 6.2vw, 89px);
  font-weight: 400;
  letter-spacing: -4.8px;
  line-height: 1.035;
  margin: 28px 0 26px;
}

h1 em, h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -3px;
}

h1 em {
  color: #6a7d59;
}

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

.hero-actions {
  gap: 26px;
  margin-top: 30px;
}

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

.text-link:hover {
  color: #698152;
}

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

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

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

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

.small-star {
  font-size: 26px;
  line-height: 1;
  color: #6d805f;
}

.hero-visual {
  position: relative;
  height: 565px;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-position: 52% center;
}

.image-label {
  position: absolute;
  top: 21px;
  right: 20px;
  padding: 11px 13px;
  background: rgba(248,248,242,.94);
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 7px;
  letter-spacing: 1px;
  font-weight: 600;
}

.image-label .status-dot {
  width: 5px;
  height: 5px;
}

.insight-card {
  position: absolute;
  bottom: 42px;
  left: -44px;
  background: var(--paper);
  width: 346px;
  padding: 22px 24px 19px;
  box-shadow: 0 12px 35px #172c2514;
  border: 1px solid #e7e9df;
}

.insight-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.5px;
}

.insight-heading .icon {
  width: 17px;
  height: 17px;
}

.insight-card > p {
  margin: 12px 0 15px;
  font-size: 23px;
  letter-spacing: -.8px;
}

.insight-card > p em {
  font-family: Georgia, 'Times New Roman', serif;
  color: #6a7d59;
}

.mini-chart {
  height: 55px;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #e3e6dd;
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.chart-area {
  fill: #87967612;
}

.chart-line {
  fill: none;
  stroke: #7d9363;
  stroke-width: 2;
}

.mini-chart circle {
  fill: #637951;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: var(--muted);
  margin-top: 12px;
}

.image-caption {
  position: absolute;
  bottom: -26px;
  right: 0;
  font-size: 9px;
  color: var(--muted);
}

.expertise-strip {
  background: var(--forest);
  color: #f7f8f0;
  padding-block: 24px;
}

.expertise-strip a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 25px;
  border-right: 1px solid #ffffff24;
  font-size: 11px;
  white-space: nowrap;
}

.expertise-strip a:first-child {
  padding-left: 0;
}

.expertise-strip a:last-child {
  padding-right: 0;
  border-right: 0;
}

.expertise-strip a > span {
  color: #a7b799;
  font-size: 9px;
  margin-right: 4px;
}

.expertise-strip .icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
  color: #a7b799;
}

.expertise-strip a:hover {
  color: #c2d0ae;
}

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

.section-marker {
  width: 6px;
  height: 6px;
  background: var(--olive);
}

.section-number {
  font-size: 8px;
  letter-spacing: 1.1px;
  color: var(--muted);
}

body h2 {
  font-size: clamp(36px, 3.8vw, 53px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -2.4px;
  margin: 0;
}

h2 em {
  letter-spacing: -2px;
  color: #6b7e5b;
}

.about-grid {
  gap: 85px;
}

.about-copy {
  max-width: 510px;
  padding-top: 2px;
}

.about-copy > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 0 17px;
}

.about-copy > .lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
}

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

.principles {
  gap: 40px;
  margin-top: 53px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.principles > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.principle-icon {
  font-size: 31px;
  color: #758563;
  line-height: 1;
  width: 35px;
  text-align: center;
}

.principles p {
  margin: 0;
}

.principles strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}

.principles p > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.expertise-section {
  background: var(--paper-deep);
  border-block: 1px solid #e5e7dc;
}

.expertise-intro {
  gap: 30px;
  margin-bottom: 45px;
}

.expertise-intro > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 5px;
  padding-right: 15px;
}

.service-grid {
  gap: 20px;
  align-items: start;
}

.service-card {
  background: var(--paper);
  padding: 30px;
  border: 1px solid #dddfd4;
  scroll-margin-top: 25px;
}

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

.service-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #7a8e69;
  stroke-width: 1.25;
}

.service-top > span {
  font-size: 10px;
  color: var(--muted);
}

.service-card h3 {
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 17px;
}

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

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 50px;
  align-content: start;
}

.service-tags span {
  border: 1px solid #dfe3d7;
  padding: 6px 8px;
  font-size: 8px;
  line-height: 1.3;
  color: #6c7662;
}

.service-details {
  border-top: 1px solid var(--line);
  margin-top: 17px;
}

.service-details summary {
  padding-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  list-style: none;
}

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

.service-details summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 150ms ease;
}

.service-details[open] summary .icon {
  transform: rotate(45deg);
}

.when-open, .service-details[open] .when-closed {
  display: none;
}

.service-details[open] .when-open {
  display: inline;
}

.service-details > div {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

.service-details > div p {
  margin-block: 0 15px;
}

.service-details strong {
  color: var(--ink);
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
}

.service-details .text-link {
  font-size: 11px;
  color: var(--forest);
}

.expertise-footnote {
  text-align: center;
  margin: 30px 0 0;
  font-size: 10px;
  color: var(--muted);
}

.expertise-footnote .status-dot {
  width: 5px;
  height: 5px;
  margin-right: 8px;
}

.approach-grid {
  align-items: center;
  gap: 85px;
}

.approach-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}

.approach-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: 42% center;
}

.review-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: var(--paper);
  padding: 20px;
}

.review-note-icon {
  font-size: 30px;
  color: #738762;
}

.review-note strong {
  font-size: 14px;
  font-weight: 500;
}

.review-note p {
  font-size: 10px;
  color: var(--muted);
  margin: 5px 0 0;
}

.approach-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 22px 0 27px;
  max-width: 420px;
}

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

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

.process-list li > span {
  color: var(--olive);
  font-size: 10px;
  padding-top: 3px;
}

.process-list h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
}

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

.contact-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding-block: 76px;
}

.contact-grid {
  align-items: center;
  gap: 85px;
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  color: #c9d2c0;
  margin-bottom: 26px;
}

.contact-section h2 {
  font-size: clamp(43px, 4.4vw, 62px);
}

.contact-section h2 em {
  color: #c5d0b4;
}

.contact-copy > p {
  font-size: 15px;
  line-height: 1.9;
  color: #d1d9ca;
  margin: 0 0 28px;
}

.contact-microcopy {
  display: block;
  font-size: 9px;
  color: #bac8b2;
  margin-top: 19px;
}

.contact-decoration {
  display: flex;
  gap: 32px;
  position: absolute;
  right: -90px;
  top: -50px;
  transform: rotate(-25deg);
  opacity: .035;
}

.contact-decoration span {
  width: 70px;
  height: 520px;
  background: white;
}

.site-footer {
  padding-top: 64px;
}

.site-footer .footer-grid {
  grid-template-columns: 1.15fr 1.5fr 1.35fr .55fr;
  gap: 32px;
  padding-bottom: 49px;
}

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

.site-footer h3 {
  font-size: 9px;
  letter-spacing: 1.3px;
  font-weight: 500;
  margin: 0 0 22px;
  color: var(--muted);
}

.footer-contact > a, .footer-links > a {
  display: block;
  font-size: 11px;
  margin-bottom: 13px;
  width: fit-content;
}

.email-link {
  overflow-wrap: anywhere;
}

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

.footer-address address {
  font-size: 11px;
  line-height: 1.9;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  padding-block: 22px;
}

.footer-bottom p {
  margin: 0;
}

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

body.dialog-open {
  overflow: hidden;
}

dialog {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  width: min(560px, calc(100% - 32px));
  max-height: calc(100% - 40px);
  padding: 0;
  margin: auto;
}

dialog::backdrop {
  background: #17261fe0;
  backdrop-filter: blur(5px);
}

.dialog-inner {
  padding: 40px;
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 38px;
  height: 38px;
  font-size: 28px;
  line-height: 1;
  border: 0;
  background: transparent;
  color: var(--forest);
}

.dialog-inner h2 {
  margin-block: 22px 17px;
  font-size: 44px;
}

.dialog-inner > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

#contact-form {
  margin-top: 24px;
}

.form-row {
  gap: 15px;
}

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

#contact-form input, #contact-form select, #contact-form textarea {
  width: 100%;
  display: block;
  border: 1px solid #d3d9cb;
  padding: 12px;
  margin-top: 8px;
  background: #fdfdf8;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
}

#contact-form textarea {
  resize: vertical;
  min-height: 95px;
}

#contact-form .button {
  width: 100%;
}

.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 11px;
}

.form-status {
  padding: 13px;
  background: #e5eadc;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 14px;
}

.dialog-alternative {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 20px;
}

.dialog-alternative a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 1440px) {
  .hero {
    gap: 100px;
  }
  .hero-visual {
    height: 590px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 410px;
  }
}

@media (max-width: 1150px) {
  body .container {
    width: calc(100% - 80px);
  }
  .desktop-nav {
    margin-left: 20px;
    gap: 26px;
  }
  .hero {
    gap: 52px;
  }
  .hero h1 {
    font-size: 73px;
  }
  .hero-visual {
    height: 530px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    gap: 16px;
    padding-inline: 17px;
  }
  .hero-actions .text-link {
    gap: 10px;
    font-size: 11px;
  }
  .insight-card {
    width: 315px;
    left: -25px;
  }
  .expertise-strip a {
    padding-inline: 17px;
    gap: 7px;
    font-size: 10px;
  }
  .expertise-strip a > span {
    margin-right: 0;
  }
  .about-grid, .approach-grid, .contact-grid {
    gap: 55px;
  }
  .service-card {
    padding: 25px;
  }
  .service-tags {
    min-height: 66px;
  }
  .service-card > p {
    min-height: 88px;
  }
  .site-footer .footer-grid {
    gap: 25px;
  }
}

@media (max-width: 1023px) {
  .hero {
    gap: 44px;
    padding-top: 45px;
  }
  .hero h1 {
    font-size: 63px;
    letter-spacing: -3.7px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .hero-visual {
    height: 530px;
  }
  .hero-note {
    margin-top: 24px;
  }
  .insight-card {
    width: 285px;
    padding: 20px;
    bottom: 38px;
  }
  .insight-card > p {
    font-size: 20px;
  }
  .expertise-strip {
    padding-block: 8px;
  }
  .expertise-strip a {
    padding: 15px 25px;
  }
  .expertise-strip a:nth-child(3) {
    padding-left: 0;
  }
  .expertise-strip a:nth-child(2) {
    padding-right: 0;
    border: 0;
  }
  .section-space {
    padding-block: 80px;
  }
  .about-grid, .approach-grid, .contact-grid {
    gap: 35px;
  }
  .about-copy {
    max-width: 650px;
  }
  .about-copy > .lead {
    font-size: 18px;
  }
  .principles {
    gap: 20px;
  }
  .principles > div {
    gap: 10px;
    align-items: flex-start;
  }
  .principles strong {
    line-height: 1.6;
  }
  .principles p > span {
    line-height: 1.7;
  }
  .service-card {
    padding: 23px 20px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card > p {
    min-height: 110px;
  }
  .approach-visual {
    min-height: 420px;
  }
  .approach-copy > p {
    max-width: 650px;
  }
  .process-list p {
    max-width: none;
  }
  .contact-section {
    padding-block: 65px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 767px) {
  body .container {
    width: calc(100% - 44px);
  }
  .header-inner {
    height: 82px;
    gap: 15px;
  }
  .brand-mark {
    width: 34px;
    height: 33px;
    gap: 2px;
  }
  .brand-mark i {
    width: 7px;
    height: 29px;
  }
  .brand-mark i:nth-child(2) {
    height: 21px;
  }
  .brand-mark i:nth-child(3) {
    height: 22px;
  }
  .brand-type {
    font-size: 25px;
  }
  .brand-type > span {
    font-size: 7px;
    letter-spacing: 2px;
    margin-top: 7px;
  }
  .header-cta {
    margin-left: auto;
    min-height: 40px;
    padding: 10px 13px;
    gap: 15px;
    font-size: 11px;
  }
  .header-cta .icon {
    width: 16px;
    height: 16px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 42px;
    border: 0;
    background: none;
    padding: 7px;
  }
  .menu-toggle > span {
    width: 22px;
    height: 1px;
    background: var(--forest);
    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);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 22px 24px;
    gap: 3px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    padding: 13px 0;
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 41px 60px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .hero h1 {
    font-size: clamp(64px, 11.7vw, 85px);
    letter-spacing: -3.7px;
    margin: 25px 0 23px;
  }
  h1 em {
    letter-spacing: -2.8px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 450px;
    line-height: 1.85;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 20px;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 48px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    margin-top: 24px;
  }
  .hero-visual {
    height: 470px;
    margin-left: 17px;
  }
  .hero-image {
    object-position: center 45%;
  }
  .insight-card {
    left: -17px;
    bottom: 28px;
    width: 290px;
  }
  .image-label {
    top: 17px;
    right: 15px;
    font-size: 6px;
    padding: 10px;
  }
  .image-caption {
    font-size: 8px;
  }
  .expertise-strip a {
    white-space: normal;
    font-size: 10px;
    padding: 15px 12px;
    gap: 8px;
  }
  .expertise-strip a > span {
    font-size: 8px;
  }
  .expertise-strip .icon {
    width: 13px;
    height: 13px;
  }
  .section-space {
    padding-block: 63px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .section-number {
    display: none;
  }
  body h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  h2 em {
    letter-spacing: -1.4px;
  }
  .about-grid {
    gap: 28px;
  }
  .about-copy > .lead {
    font-size: 16px;
  }
  .about-copy > p {
    font-size: 13px;
  }
  .principles {
    gap: 24px;
    margin-top: 30px;
    padding-top: 28px;
  }
  .principles > div {
    align-items: center;
    gap: 16px;
  }
  .principles strong {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .principles p > span {
    font-size: 11px;
  }
  .expertise-intro {
    gap: 20px;
    margin-bottom: 30px;
  }
  .service-grid {
    gap: 15px;
  }
  .service-card {
    padding: 27px;
  }
  .service-top {
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 29px;
  }
  .service-card > p {
    min-height: 0;
    font-size: 13px;
    max-width: 460px;
  }
  .service-tags {
    min-height: 0;
    margin-bottom: 23px;
  }
  .service-tags span {
    font-size: 9px;
  }
  .service-details summary {
    font-size: 12px;
  }
  .expertise-footnote {
    font-size: 9px;
  }
  .approach-grid {
    gap: 35px;
  }
  .approach-visual {
    min-height: 365px;
  }
  .review-note {
    left: 17px;
    right: 17px;
    bottom: 17px;
    padding: 17px;
  }
  .process-list li {
    gap: 20px;
  }
  .contact-section {
    padding-block: 53px;
  }
  .contact-section h2 {
    font-size: 46px;
  }
  .contact-grid {
    gap: 28px;
  }
  .contact-copy > p {
    font-size: 13px;
  }
  .contact-microcopy {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 45px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    padding-bottom: 35px;
  }
  .footer-brand, .footer-contact {
    grid-column: span 2;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-brand > p {
    margin: 0;
    font-size: 10px;
  }
  .site-footer h3 {
    margin-bottom: 15px;
  }
  .footer-contact > a {
    font-size: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px;
    font-size: 9px;
  }
  .footer-bottom p {
    width: 100%;
    line-height: 1.7;
  }
  .footer-bottom > span {
    font-size: 8px;
  }
  .dialog-inner {
    padding: 33px 23px 25px;
  }
  .dialog-inner h2 {
    font-size: 39px;
  }
}

@media (max-width: 374px) {
  body .container {
    width: calc(100% - 36px);
  }
  .header-cta {
    gap: 8px;
    padding-inline: 10px;
  }
  .brand {
    gap: 9px;
  }
  .hero-visual {
    height: 410px;
  }
  .insight-card {
    width: 267px;
    padding: 18px;
  }
  .expertise-strip a {
    font-size: 9px;
    gap: 5px;
  }
  body h2 {
    font-size: 34px;
  }
  .contact-section h2 {
    font-size: 42px;
  }
}

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