@charset "UTF-8";

:root {
  --paper: #f8f7f3;
  --ink: #282a27;
  --muted: #6b6c65;
  --accent: #be4935;
  --accent-dark: #a43928;
  --line: #deded5;
  --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: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible, a:focus-visible, [tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p {
  margin: 0;
}
::selection {
  background: #ecd1c4;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.container.container {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin-inline: auto;
}
.section-space {
  padding-block: 104px;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 1px;
}
.section-number {
  color: var(--accent);
  margin-right: 13px;
}
body h2 {
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 400;
  letter-spacing: -1.9px;
  line-height: 1.16;
}
h2 em {
  font-family: var(--serif);
  font-weight: 400;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 180ms, color 180ms, transform 180ms;
}
.button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms;
}
.button:hover span {
  transform: translate(2px, -2px);
}
.button-primary {
  background: var(--accent);
  color: white;
}
.button-primary:hover {
  background: var(--accent-dark);
}
.button-outline {
  border-color: var(--line);
}
.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #e9dfd5;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
}
.text-link span {
  color: var(--accent);
  font-size: 20px;
}
.text-link:hover {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* A quiet, confident masthead. */
.site-header {
  position: relative;
  z-index: 10;
}
.header-inner {
  height: 102px;
  border-bottom: 1px solid var(--line);
}
.brand {
  gap: 13px;
  flex-shrink: 0;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  background: var(--accent);
  border-radius: 2px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -3px;
  line-height: 1;
  padding-right: 3px;
  padding-bottom: 3px;
}
.brand-mark > span {
  font-size: 25px;
}
.brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.05px;
  line-height: 1.5;
}
.brand-name > span {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 1.65px;
  color: var(--muted);
}
.site-header .desktop-nav {
  gap: 35px;
  margin-left: 24px;
}
.desktop-nav a {
  font-size: 12px;
  padding-block: 10px;
  transition: color 180ms;
}
.desktop-nav a:hover {
  color: var(--accent);
}
.header-cta {
  min-height: 42px;
  padding: 9px 18px;
  gap: 34px;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 3px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  margin-block: 5px;
  transition: transform 180ms;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 24px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 15px 20px #282a270d;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a span {
  color: var(--accent);
}

/* The opening point of view. */
.hero {
  grid-template-columns: 1.02fr 1fr;
  gap: 66px;
  padding-top: 46px;
  padding-bottom: 60px;
}
.hero-copy {
  padding-top: 20px;
}
.hero h1 {
  margin-top: 25px;
  font-size: clamp(62px, 6.4vw, 91px);
  font-weight: 400;
  line-height: 1.025;
  letter-spacing: -5.6px;
}
.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -4.9px;
}
.hero-description {
  margin-top: 29px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.hero-actions {
  gap: 25px;
  margin-top: 28px;
}
.hero-footnote {
  gap: 13px;
  margin-top: auto;
  padding-top: 38px;
}
.hero-footnote p {
  font-size: 8px;
  letter-spacing: 1.5px;
  line-height: 1.8;
}
.hero-footnote p span {
  color: var(--muted);
}
.coordinate-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  font-size: 27px;
  font-weight: 300;
  border: 1px solid var(--line);
  color: var(--accent);
  line-height: 1;
}
.hero-visual {
  position: relative;
  min-height: 587px;
  border-radius: 4px;
}
.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 4px;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #1f251f30, transparent 24%, transparent 70%, #1f251f40);
  pointer-events: none;
}
.image-topline {
  position: absolute;
  z-index: 1;
  top: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fffdf5;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.tiny-square {
  display: block;
  width: 5px;
  height: 5px;
  background: #fffdf5;
}
.perspective-card {
  position: absolute;
  z-index: 2;
  left: -27px;
  bottom: 43px;
  width: 274px;
  padding: 22px 24px 21px;
  background: var(--paper);
  border: 1px solid #ffffff70;
  border-radius: 3px;
  box-shadow: 0 10px 30px #1d21151a;
}
.perspective-card-top {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.4px;
}
.small-arrow {
  color: var(--accent);
  font-size: 23px;
  line-height: 1;
}
.perspective-card p {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.perspective-card strong {
  font-weight: 400;
  font-family: var(--serif);
  font-style: italic;
}
.card-line {
  height: 2px;
  background: var(--line);
  margin-top: 18px;
}
.card-line span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--accent);
}
.image-caption {
  position: absolute;
  right: 22px;
  bottom: 17px;
  z-index: 1;
  color: #fffdf5;
  font-size: 7px;
  letter-spacing: 1.5px;
}
.principles-strip {
  grid-template-columns: 1.05fr 1fr 1.05fr 0.9fr;
  align-items: center;
  gap: 26px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles-strip > p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}
.principles-strip strong {
  color: var(--ink);
  font-weight: 500;
}
.principle {
  gap: 13px;
  font-size: 11px;
}
.principle svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  stroke: var(--accent);
  stroke-width: 1.2;
}

/* Independent perspective and connected expertise. */
.about-section {
  grid-template-columns: 0.85fr 2.3fr;
  gap: 64px;
}
.section-label {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  height: fit-content;
  padding-top: 9px;
}
.section-label .section-number {
  font-size: 10px;
  letter-spacing: 1px;
}
.label-rule {
  height: 1px;
  background: var(--line);
  width: 45px;
  margin-top: 25px;
  flex-basis: 45px;
  margin-right: calc(100% - 45px);
}
.about-content h2 {
  font-size: clamp(34px, 3.1vw, 45px);
}
.about-columns {
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  margin-top: 31px;
}
.about-columns p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.about-link {
  margin-top: 29px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.expertise-section {
  background: #eeeee7;
  border-top: 1px solid #e4e4db;
  border-bottom: 1px solid #e4e4db;
}
.section-heading.flex {
  gap: 40px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-top: 22px;
}
.section-intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  padding-bottom: 4px;
}
.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d8d9cf;
  border-radius: 3px;
  overflow: hidden;
}
.service-card {
  padding: 28px 24px 20px;
  min-height: 341px;
  background: #f8f7f380;
  transition: background 200ms;
}
.service-card + .service-card {
  border-left: 1px solid #d8d9cf;
}
.service-card:hover {
  background: var(--paper);
}
.service-top {
  margin-bottom: 31px;
}
.service-icon {
  width: 37px;
  height: 37px;
  stroke: var(--accent);
  stroke-width: 1.4;
}
.service-top > span {
  align-self: flex-start;
  font-size: 9px;
  color: #77796d;
  letter-spacing: 1px;
}
.service-card h3 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.25;
}
.service-card > p {
  margin-top: 17px;
  margin-bottom: 27px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.service-link {
  width: 100%;
  margin-top: auto;
  padding-top: 17px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-size: 10px;
  gap: 8px;
}
.service-link span {
  font-size: 21px;
  color: var(--accent);
  transition: transform 180ms;
}
.service-link:hover {
  color: var(--accent);
}
.service-link:hover span {
  transform: translate(2px, -2px);
}
.expertise-note.flex {
  gap: 20px;
  margin-top: 24px;
}
.expertise-note > p {
  color: var(--muted);
  font-size: 10px;
}
.expertise-note .text-link {
  font-size: 10px;
}

/* An illustrative review, not a claim about client results. */
.process-section {
  grid-template-columns: 1.08fr 1fr;
  gap: 90px;
  align-items: center;
  padding-block: 112px;
}
.analytics-wrap {
  min-width: 0;
}
.analytics-card {
  background: #fffefa;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 12px 30px #393d2910;
}
.analytics-heading .eyebrow {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1.4px;
}
.analytics-heading h3 {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.7px;
  margin-top: 7px;
}
.analytics-symbol {
  display: grid;
  place-items: center;
  background: #f3eee6;
  color: var(--accent);
  width: 34px;
  height: 34px;
  font-size: 23px;
  border-radius: 50%;
}
.analytics-tabs {
  gap: 4px;
  padding: 4px;
  margin-top: 26px;
  background: #efefe8;
  border-radius: 3px;
}
.analytics-tabs button {
  flex: 1;
  padding: 9px 4px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-size: 11px;
  color: var(--muted);
  transition: background 180ms, color 180ms;
}
.analytics-tabs button[aria-selected="true"] {
  background: #fffefa;
  color: var(--ink);
  box-shadow: 0 1px 4px #2b302312;
}
.analytics-tabs button:hover {
  color: var(--accent);
}
.metric-summary {
  margin-top: 24px;
  margin-bottom: 22px;
  gap: 12px;
}
.metric-summary p {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 2px;
}
.metric-value {
  font-size: 43px;
  letter-spacing: -1.7px;
  line-height: 1.1;
}
.metric-unit {
  font-size: 12px;
  color: #818378;
  margin-left: 7px;
}
.metric-change {
  color: #4b6350;
  font-size: 9px;
  background: #edf0e7;
  border-radius: 3px;
  padding: 4px 7px;
  margin-bottom: 4px;
}
.chart {
  display: flex;
  gap: 13px;
  height: 183px;
  padding-bottom: 23px;
}
.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 23px;
  text-align: right;
  color: #818378;
  font-size: 8px;
}
.chart-axis span {
  line-height: 1;
  transform: translateY(-50%);
}
.chart-axis span:last-child {
  transform: translateY(50%);
}
.chart-plot {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.chart-gridlines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chart-gridlines i {
  display: block;
  height: 1px;
  width: 100%;
  background: #eaeae3;
}
.bar-group {
  display: flex;
  position: relative;
  align-items: flex-end;
  gap: 5px;
  width: 44px;
  z-index: 1;
}
.bar {
  width: 50%;
  height: var(--bar-height);
  border-radius: 2px 2px 0 0;
  transition: height 450ms cubic-bezier(0.2, 0.7, 0.4, 1);
}
.business-bar {
  background: #bd5b43;
}
.reference-bar {
  background: #dce0d1;
}
.bar-group > span {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  font-size: 9px;
  color: var(--muted);
  text-align: center;
}
.chart-legend {
  gap: 16px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  color: var(--muted);
}
.chart-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.chart-legend i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 1px;
}
.legend-business {
  background: #bd5b43;
}
.legend-reference {
  background: #dce0d1;
}
.chart-legend .chart-year {
  margin-left: auto;
  font-size: 7px;
  letter-spacing: 0.7px;
}
.analytics-footnote.flex {
  gap: 15px;
  margin-top: 15px;
  font-size: 8px;
  color: var(--muted);
}
.process-copy > .eyebrow {
  margin-bottom: 20px;
}
.process-copy h2 {
  font-size: clamp(34px, 3.2vw, 45px);
}
.process-intro {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.process-steps li {
  display: flex;
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}
.process-steps li:first-child {
  border-top: 1px solid var(--line);
}
.step-number {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
}
.process-steps h3 {
  font-size: 14px;
  font-weight: 500;
}
.process-steps p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
  margin-top: 4px;
}

/* A direct invitation, with real contact details. */
.contact-panel {
  padding: 36px 54px 52px;
  background: #292e29;
  color: var(--paper);
  border-radius: 4px;
  overflow: hidden;
}
.contact-topline .eyebrow {
  color: #d9ddd2;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.contact-topline .status-dot {
  background: #df826e;
}
.contact-decoration {
  color: #e8bdab;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.contact-grid {
  grid-template-columns: 1.45fr 1fr;
  gap: 50px;
  align-items: end;
  margin-top: 31px;
}
.contact-grid h2 {
  font-size: clamp(40px, 4.35vw, 63px);
  letter-spacing: -2.4px;
  line-height: 1.08;
}
.contact-grid h2 em {
  color: #e8b9a6;
}
.contact-copy {
  max-width: 330px;
  justify-self: end;
}
.contact-copy > p {
  font-size: 12px;
  color: #ccd0c5;
  line-height: 1.85;
  margin-bottom: 24px;
}
.contact-copy .button {
  min-height: 47px;
  font-size: 11px;
  gap: 38px;
  padding-inline: 18px;
}
.contact-small {
  display: block;
  margin-top: 13px;
  font-size: 8px;
  color: #b5beae;
}
.site-footer {
  padding-top: 63px;
}
.footer-grid {
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 55px;
  padding-bottom: 49px;
}
.footer-brand > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 19px;
  line-height: 1.8;
}
.site-footer h2.eyebrow {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.footer-location address {
  font-style: normal;
  font-size: 10px;
  line-height: 1.9;
}
.footer-email {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}
.footer-email span {
  color: var(--accent);
  font-size: 18px;
}
.footer-email:hover, .footer-phone:hover {
  color: var(--accent);
}
.footer-phone {
  display: block;
  width: fit-content;
  margin-top: 12px;
  font-size: 12px;
}
.footer-bottom {
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 21px;
  color: var(--muted);
  font-size: 9px;
}
.back-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.back-top span {
  color: var(--accent);
  font-size: 17px;
}

/* Accessible service detail panels. */
#service-dialog {
  width: min(600px, calc(100% - 36px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px #0003;
}
#service-dialog::backdrop {
  background: #20271f99;
  backdrop-filter: blur(4px);
}
.dialog-content {
  position: relative;
  padding: 47px 42px 40px;
}
.dialog-close {
  display: grid;
  place-items: center;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.dialog-close:hover {
  background: #ebe8e0;
}
.dialog-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 1.3;
}
.dialog-content .eyebrow {
  font-size: 8px;
  color: var(--accent);
}
.dialog-content h2 {
  font-size: 36px;
  margin-top: 19px;
  padding-right: 15px;
}
#dialog-intro {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.dialog-content h3 {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
}
#dialog-scope {
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}
#dialog-scope li {
  display: flex;
  gap: 12px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
#dialog-scope li::before {
  content: '↗';
  color: var(--accent);
}
.dialog-outcome {
  padding-left: 15px;
  border-left: 2px solid var(--accent);
  margin-top: 23px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.dialog-content .button {
  margin-top: 26px;
}

/* Responsive composition without hiding the important details. */
@media (min-width: 1500px) {
  .hero {
    padding-top: 56px;
  }
  .hero-visual {
    min-height: 615px;
  }
}

@media (max-width: 1100px) {
  .container.container {
    width: calc(100% - 72px);
  }
  .site-header .desktop-nav {
    gap: 23px;
    margin-left: 0;
  }
  .hero {
    gap: 43px;
  }
  .hero h1 {
    font-size: 68px;
    letter-spacing: -4px;
  }
  .hero h1 em {
    letter-spacing: -3.7px;
  }
  .hero-visual {
    min-height: 545px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding-inline: 17px;
    gap: 23px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 10px;
  }
  .hero-description {
    font-size: 13px;
  }
  .principles-strip {
    gap: 18px;
  }
  .principle {
    gap: 9px;
    font-size: 10px;
  }
  .service-card {
    padding: 24px 18px 20px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-link {
    font-size: 9px;
  }
  .process-section {
    gap: 50px;
  }
  .analytics-card {
    padding: 24px;
  }
  .contact-panel {
    padding-inline: 39px;
  }
  .footer-grid {
    gap: 30px;
  }
  .footer-email {
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 850px) {
  .container.container {
    width: calc(100% - 48px);
  }
  .section-space {
    padding-block: 76px;
  }
  .header-inner {
    height: 83px;
  }
  .brand-name {
    font-size: 13px;
  }
  .brand-name > span {
    font-size: 6px;
  }
  .site-header .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 43px;
  }
  .hero-copy {
    padding-top: 10px;
  }
  .hero h1 {
    font-size: 56px;
    letter-spacing: -3.5px;
  }
  .hero h1 em {
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 14px;
    margin-top: 22px;
  }
  .hero-actions .button {
    min-height: 45px;
    font-size: 11px;
  }
  .hero-footnote {
    padding-top: 25px;
  }
  .hero-visual {
    min-height: 485px;
  }
  .perspective-card {
    width: 220px;
    left: -16px;
    bottom: 43px;
    padding: 18px;
  }
  .perspective-card p {
    font-size: 16px;
  }
  .image-topline {
    font-size: 6px;
    left: 18px;
    top: 20px;
  }
  .principles-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-block: 24px;
  }
  .principle {
    font-size: 11px;
  }
  .principles-strip > p {
    font-size: 11px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .label-rule {
    display: none;
  }
  .about-content h2 {
    font-size: 40px;
  }
  .section-heading.flex {
    align-items: flex-start;
    gap: 28px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-intro {
    max-width: 240px;
    padding-top: 44px;
    font-size: 12px;
  }
  .desktop-break {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card {
    padding: 26px;
    min-height: 324px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card:nth-child(3) {
    border-left: 0;
  }
  .service-card:nth-child(n + 3) {
    border-top: 1px solid #d8d9cf;
  }
  .service-link {
    font-size: 11px;
  }
  .process-section {
    gap: 35px;
  }
  .analytics-card {
    padding: 20px;
  }
  .analytics-heading h3 {
    font-size: 22px;
  }
  .analytics-heading .eyebrow {
    font-size: 6px;
  }
  .analytics-symbol {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  .analytics-tabs button {
    font-size: 9px;
  }
  .chart-plot {
    gap: 12px;
  }
  .chart-legend {
    gap: 10px;
  }
  .chart-legend .chart-year {
    font-size: 5px;
  }
  .metric-change {
    font-size: 7px;
  }
  .analytics-footnote.flex {
    align-items: flex-start;
    font-size: 7px;
  }
  .process-copy h2 {
    font-size: 34px;
  }
  .contact-panel {
    padding: 30px;
  }
  .contact-grid {
    gap: 28px;
  }
  .contact-grid h2 {
    font-size: 44px;
  }
  .contact-copy > p {
    font-size: 11px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }
  .footer-brand > p {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 20px;
  }
  .container.container {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 62px;
  }
  .header-inner {
    height: 80px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 31px;
  }
  .brand {
    gap: 10px;
  }
  .brand-name {
    font-size: 12px;
  }
  .brand-name > span {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .site-header .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 30px;
    padding-bottom: 34px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    margin-top: 24px;
    font-size: clamp(56px, 14.4vw, 78px);
    line-height: 1.015;
    letter-spacing: -3.7px;
  }
  .hero h1 em {
    letter-spacing: -3.5px;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 23px;
    max-width: 380px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 11px;
    min-height: 48px;
    padding-inline: 16px;
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 9px;
  }
  .hero-footnote {
    padding-top: 27px;
  }
  .hero-footnote p {
    font-size: 7px;
  }
  .coordinate-icon {
    width: 25px;
    height: 25px;
    font-size: 24px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-image {
    object-position: center 43%;
  }
  .image-topline {
    font-size: 7px;
  }
  .perspective-card {
    bottom: 31px;
    left: -1px;
    width: 239px;
    padding: 18px 20px;
    border-radius: 0 3px 3px 0;
  }
  .perspective-card p {
    font-size: 18px;
  }
  .image-caption {
    font-size: 6px;
    bottom: 12px;
    right: 13px;
  }
  .principles-strip {
    gap: 25px 14px;
  }
  .principle {
    gap: 9px;
    font-size: 9px;
    line-height: 1.7;
  }
  .principle svg {
    width: 23px;
    height: 23px;
  }
  .principles-strip > p {
    font-size: 10px;
  }
  .about-section {
    gap: 24px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .about-content h2 {
    font-size: clamp(30px, 8.5vw, 43px);
    letter-spacing: -1.4px;
  }
  .about-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .about-columns p {
    font-size: 13px;
  }
  .about-link {
    margin-top: 23px;
    font-size: 10px;
    gap: 9px;
  }
  .section-heading.flex {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    margin-top: 19px;
    font-size: 39px;
    letter-spacing: -1.8px;
  }
  .section-intro {
    max-width: 310px;
    padding-top: 0;
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 26px;
    min-height: auto;
  }
  .service-card + .service-card {
    border-left: 0;
    border-top: 1px solid #d8d9cf;
  }
  .service-top {
    margin-bottom: 23px;
  }
  .service-card h3 {
    font-size: 28px;
  }
  .service-card > p {
    max-width: 320px;
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 22px;
  }
  .service-link {
    padding-top: 15px;
    font-size: 11px;
  }
  .expertise-note.flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
  }
  .expertise-note > p, .expertise-note .text-link {
    font-size: 10px;
  }
  .process-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-copy {
    grid-row: 1;
  }
  .process-copy h2 {
    font-size: 38px;
    letter-spacing: -1.6px;
  }
  .process-intro {
    font-size: 13px;
  }
  .process-steps li {
    padding-block: 17px;
  }
  .process-steps h3 {
    font-size: 15px;
  }
  .process-steps p {
    font-size: 12px;
  }
  .analytics-card {
    padding: 24px 20px;
  }
  .analytics-heading .eyebrow {
    font-size: 7px;
  }
  .analytics-heading h3 {
    font-size: 25px;
  }
  .analytics-tabs button {
    font-size: 10px;
    padding-block: 10px;
  }
  .metric-change {
    font-size: 8px;
  }
  .chart {
    height: 195px;
  }
  .chart-legend {
    gap: 14px;
  }
  .chart-legend .chart-year {
    font-size: 6px;
  }
  .analytics-footnote.flex {
    font-size: 7px;
  }
  .contact-panel {
    padding: 28px 25px 33px;
  }
  .contact-topline.flex {
    align-items: flex-start;
    gap: 8px;
  }
  .contact-topline .eyebrow {
    max-width: 220px;
    font-size: 7px;
    line-height: 1.8;
    letter-spacing: 1.3px;
  }
  .contact-decoration {
    font-size: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 31px;
  }
  .contact-grid h2 {
    font-size: clamp(35px, 9.5vw, 48px);
    letter-spacing: -1.7px;
  }
  .contact-copy {
    justify-self: start;
  }
  .contact-copy > p {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .contact-copy .button {
    min-height: 49px;
    font-size: 12px;
  }
  .contact-small {
    font-size: 8px;
    margin-top: 15px;
  }
  .site-footer {
    padding-top: 43px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 32px;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand > p {
    margin-top: 18px;
    font-size: 12px;
  }
  .site-footer h2.eyebrow {
    margin-bottom: 13px;
    font-size: 8px;
  }
  .footer-location address {
    font-size: 11px;
  }
  .footer-email {
    font-size: 16px;
    gap: 25px;
  }
  .footer-phone {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 12px;
    padding-block: 19px;
  }
  .back-top {
    gap: 8px;
    flex-shrink: 0;
  }
  .dialog-content {
    padding: 47px 25px 30px;
  }
  .dialog-content h2 {
    font-size: 31px;
  }
  #dialog-intro {
    font-size: 13px;
  }
}

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

