:root {
  --ink: #243a2d;
  --muted: #687169;
  --paper: #f9f9f3;
  --forest: #243c2e;
  --lime: #d7e8ad;
  --line: #dedfd5;
}

* {
  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: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

button, a {
  touch-action: manipulation;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 3px solid #8eab62;
  outline-offset: 5px;
}

[hidden] {
  display: none !important;
}

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

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

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

body h2 {
  font-size: clamp(36px, 3.6vw, 49px);
  line-height: 1.13;
}

em {
  font-weight: 400;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

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

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 1.75px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 23px;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 17px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 3px;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px #14231915;
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  width: fit-content;
}

.text-link .icon {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

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

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

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

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

.header-inner {
  min-height: 96px;
  gap: 26px;
}

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

.brand-mark {
  width: 39px;
  height: 39px;
}

.brand-type {
  display: block;
  font-size: 22px;
  letter-spacing: -.7px;
  font-weight: 700;
  line-height: 1.1;
}

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

.desktop-nav {
  gap: 34px;
  margin-left: auto;
  margin-right: 27px;
  font-size: 12px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.header-cta {
  padding: 12px 20px;
  gap: 26px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 11px;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

section.hero {
  grid-template-columns: 1.13fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 64px;
}

.hero-copy {
  padding-block: 20px;
}

.hero .eyebrow {
  font-size: 9px;
  margin-bottom: 27px;
  letter-spacing: 1.65px;
}

body h1 {
  font-size: clamp(48px, 4.95vw, 69px);
  line-height: 1.08;
  letter-spacing: -3.1px;
}

h1 em {
  color: #60734d;
}

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

.hero-actions {
  gap: 23px;
  margin-top: 31px;
}

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

.hero-actions .text-link {
  font-size: 11px;
  border-bottom: none;
  gap: 11px;
}

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

.hero-note {
  margin-top: 49px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1px;
}

.hero-note strong {
  font-weight: 400;
}

.note-line {
  width: 28px;
  height: 1px;
  background: #8d9981;
}

.hero-visual {
  min-width: 0;
  position: relative;
  height: 536px;
  background: #d6d8cc;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-position: center 48%;
}

.image-kicker {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f1ee;
  padding: 8px 11px;
  font-size: 7px;
  letter-spacing: 1.2px;
}

.image-kicker .status-dot {
  width: 4px;
  height: 4px;
}

.image-caption {
  position: absolute;
  bottom: 48px;
  left: 24px;
  right: 24px;
  padding: 21px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fbfbf2f2;
  backdrop-filter: blur(8px);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  box-shadow: 0 5px 25px #1c2b1820;
}

.image-caption > div > span {
  color: #6b7860;
  font-style: italic;
}

.caption-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd3bd;
  border-radius: 50%;
}

.caption-arrow {
  margin-left: auto;
  width: 18px;
}

.image-index {
  position: absolute;
  bottom: 19px;
  left: 25px;
  color: white;
  text-shadow: 0 1px 5px #000;
  font-size: 7px;
  letter-spacing: 1.6px;
}

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

.expertise-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  border-right: 1px solid #ffffff28;
  padding: 5px 10px;
  transition: color .2s;
}

.expertise-strip a:first-child {
  justify-content: flex-start;
}

.expertise-strip a:last-child {
  border-right: none;
  justify-content: flex-end;
}

.expertise-strip a:hover {
  color: var(--lime);
}

.expertise-strip .icon {
  color: #c8d6ac;
  width: 22px;
  height: 22px;
}

.about-top {
  gap: 85px;
}

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

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

.about-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

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

.principles {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  gap: 33px;
}

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

.principle-number {
  color: #85936f;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
}

.principles h3 {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 5px;
}

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

.expertise {
  background: #f0f1e9;
  border-top: 1px solid #e5e6dc;
}

.section-heading {
  gap: 25px;
  margin-bottom: 42px;
}

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

.service-grid {
  gap: 16px;
}

.service-card {
  padding: 26px 23px 21px;
  border: 1px solid #dcded3;
  background: #f9f9f3;
  display: flex;
  flex-direction: column;
  min-width: 0;
  scroll-margin-top: 24px;
  transition: transform .25s, border-color .25s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #9cac8b;
}

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

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

.service-top span {
  font-size: 9px;
  color: #859075;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-bottom: 17px;
}

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

.service-card ul {
  margin-top: 21px;
  margin-bottom: 28px;
}

.service-card li {
  font-size: 10px;
  line-height: 1.6;
  padding: 5px 0 5px 12px;
  position: relative;
}

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

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-top: auto;
  padding-top: 17px;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
}

.service-link .icon {
  width: 14px;
  height: 14px;
}

.service-link:hover {
  color: #69854b;
}

.insights {
  background: var(--forest);
  color: #f7f7ed;
  position: relative;
  overflow: hidden;
}

.insights::after {
  content: '';
  width: 420px;
  height: 420px;
  border: 1px solid #ffffff09;
  border-radius: 50%;
  position: absolute;
  right: -180px;
  bottom: -200px;
  box-shadow: 0 0 0 80px #ffffff03, 0 0 0 160px #ffffff02;
  pointer-events: none;
}

.insights-layout {
  gap: 100px;
  position: relative;
  z-index: 1;
}

.insights .eyebrow {
  color: #c5d4ac;
  font-size: 9px;
}

.insights h2 {
  font-size: 54px;
}

.insights h2 em {
  color: #cfdfa9;
}

.insights-copy > p {
  max-width: 390px;
  margin-top: 25px;
  font-size: 13px;
  line-height: 1.9;
  color: #c4cdbf;
}

.check-list {
  margin-top: 25px;
  display: grid;
  gap: 12px;
  color: #e4e8dc;
  font-size: 11px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list .icon {
  width: 15px;
  height: 15px;
  color: var(--lime);
}

.insights .text-link {
  margin-top: 33px;
  color: #d7e5ba;
  font-size: 11px;
  border-bottom-color: #c5d4ac60;
}

.dashboard {
  background: #fafbf5;
  color: var(--ink);
  border-radius: 5px;
  padding: 27px 29px 20px;
  box-shadow: 12px 12px 0 #a4bc7812;
  min-width: 0;
  transform: rotate(-1deg);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dashboard-eyebrow {
  display: block;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #7e896e;
  margin-bottom: 4px;
}

.dashboard h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.5px;
}

.sample-badge {
  font-size: 7px;
  padding: 4px 7px;
  border: 1px solid #d9dfd0;
  border-radius: 2px;
  color: #728064;
  white-space: nowrap;
}

.dashboard-tabs {
  display: flex;
  margin-top: 23px;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.dashboard-tabs button {
  background: none;
  border: none;
  padding: 0 0 11px;
  font-size: 10px;
  color: #7b8176;
  position: relative;
}

.dashboard-tabs button[aria-selected="true"] {
  color: var(--ink);
  font-weight: 700;
}

.dashboard-tabs button[aria-selected="true"]::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #687f4d;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 21px 0;
}

.dashboard-metrics > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-metrics > div + div {
  border-left: 1px solid var(--line);
  padding-left: 23px;
}

.dashboard-metrics span {
  font-size: 9px;
  color: #78806f;
}

.dashboard-metrics strong {
  font-family: Georgia, serif;
  font-size: 33px;
  letter-spacing: -.5px;
  font-weight: 400;
  line-height: 1.3;
  margin-block: 3px;
}

.dashboard-metrics small {
  font-size: 21px;
}

.dashboard-metrics .positive {
  color: #657c4b;
  font-size: 8px;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 8px;
  margin: 9px 0 13px;
}

.chart-heading > span:last-child {
  color: #7d8675;
  font-size: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-heading i {
  display: inline-block;
  width: 12px;
  height: 2px;
  background: #7e9a61;
}

.trend-chart {
  width: 100%;
  overflow: visible;
}

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

.chart-months {
  display: flex;
  justify-content: space-between;
  color: #9a9e91;
  font-size: 6px;
  letter-spacing: .7px;
}

.dashboard-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  color: #738364;
}

.dashboard-note .status-dot {
  width: 4px;
  height: 4px;
}

.sample-note {
  font-size: 7px;
  color: #808777;
  margin-top: 11px;
}

.approach {
  gap: 88px;
}

.approach-image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 490px;
}

.approach-image-wrap > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: 44% center;
}

.approach-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  background: #fafaf1ef;
  font-size: 8px;
  letter-spacing: 1.2px;
}

.approach-copy > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 22px;
  line-height: 1.9;
}

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

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-list li > span {
  border: 1px solid #d6dacb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 9px;
  color: #75825d;
  margin-top: 1px;
}

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

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

.contact-section {
  background: #e6ebd7;
  border-block: 1px solid #d8dfc7;
}

.contact-inner {
  padding-block: 70px;
  gap: 35px;
}

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

.contact-inner h2 em {
  color: #63794e;
}

.contact-inner .eyebrow {
  margin-bottom: 19px;
  font-size: 9px;
}

.contact-inner p {
  color: #6c7762;
  font-size: 12px;
  margin-top: 20px;
}

.contact-action {
  margin-right: 30px;
  text-align: center;
}

.contact-action .button {
  padding: 18px 26px;
  gap: 34px;
}

.contact-action > span {
  display: block;
  font-size: 10px;
  color: #778267;
  margin-top: 13px;
}

.site-footer {
  background: #f8f9f2;
  padding: 57px 0 0;
}

.site-footer .footer-main {
  gap: 45px;
  padding-bottom: 49px;
  grid-template-columns: 1.2fr 1.05fr 1fr;
}

.footer-brand .brand-mark {
  width: 35px;
  height: 35px;
}

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

.footer-brand > p {
  color: #7b8274;
  font-size: 11px;
  margin-top: 18px;
  line-height: 1.8;
}

.company-name {
  display: block;
  font-size: 7px;
  letter-spacing: .4px;
  color: #7b8274;
  margin-top: 18px;
}

.footer-main h3 {
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 22px;
  margin-top: 4px;
}

.footer-contact > a, .footer-location > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 10px;
  color: #6a7562;
  margin-bottom: 16px;
}

.footer-contact .icon, .footer-location .icon {
  width: 15px;
  height: 15px;
}

.footer-contact > a > span {
  overflow-wrap: anywhere;
}

.footer-location address {
  font-size: 9px;
  line-height: 1.9;
  font-style: normal;
  max-width: 230px;
}

.footer-location .map-link {
  font-size: 9px;
  margin-left: 27px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #c3cbb4;
  padding-bottom: 2px;
}

.footer-location .map-link .icon {
  width: 11px;
  height: 11px;
}

.footer-contact a:hover, .footer-bottom a:hover {
  color: #384e29;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 21px;
  font-size: 8px;
  color: #7a8470;
  gap: 12px;
}

.footer-bottom a {
  color: var(--ink);
}

#consultation-dialog {
  width: min(580px, calc(100% - 32px));
  max-height: 90vh;
  max-height: 90dvh;
  padding: 38px;
  border: 1px solid #cfd6c3;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  overflow-y: auto;
  box-shadow: 0 25px 100px #11221440;
}

#consultation-dialog::backdrop {
  background: #15281f99;
  backdrop-filter: blur(4px);
}

#consultation-dialog .eyebrow {
  font-size: 8px;
  padding-right: 20px;
}

#consultation-dialog h2 {
  font-size: 36px;
  letter-spacing: -1.3px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--muted);
  width: 35px;
  height: 35px;
}

.dialog-intro {
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 24px;
}

#consultation-form {
  display: grid;
  gap: 17px;
}

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

#consultation-dialog label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  min-width: 0;
}

#consultation-dialog input, #consultation-dialog select, #consultation-dialog textarea {
  width: 100%;
  border: 1px solid #d5daca;
  border-radius: 2px;
  background: #fff;
  padding: 11px 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
}

#consultation-dialog textarea {
  resize: vertical;
  min-height: 90px;
}

#consultation-dialog input::placeholder, #consultation-dialog textarea::placeholder {
  color: #969d8e;
}

.form-note {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
}

#email-ready > p {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

#email-ready > .button {
  margin-block: 22px;
}

.draft-confirmation {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.draft-confirmation h3 {
  font-size: 18px;
  font-family: Georgia, serif;
  font-weight: 400;
}

.draft-fallback {
  margin-bottom: 22px;
}

.draft-fallback summary {
  cursor: pointer;
  font-size: 11px;
}

.draft-fallback label {
  margin-top: 15px;
}

#copy-draft {
  margin-top: 10px;
  font-size: 11px;
}

#copy-status {
  font-size: 10px;
  margin-top: 7px;
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1600px) {
  section.hero {
    padding-top: 68px;
    padding-bottom: 78px;
  }
  .hero-visual {
    height: 570px;
  }
}

@media (max-width: 1199px) {
  body .container {
    width: calc(100% - 72px);
  }
  section.hero {
    gap: 32px;
  }
  body h1 {
    font-size: 55px;
  }
  .hero-visual {
    height: 515px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 11px;
  }
  .image-caption {
    font-size: 20px;
    padding: 18px;
  }
  .about-top, .insights-layout, .approach {
    gap: 55px;
  }
  .service-card {
    padding: 23px 17px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card > p {
    min-height: 108px;
  }
  .service-link {
    font-size: 9px;
  }
  .site-footer .footer-main {
    gap: 28px;
  }
  .desktop-nav {
    gap: 24px;
    margin-right: 15px;
  }
}

@media (max-width: 1023px) {
  section.hero {
    grid-template-columns: 1fr 1fr;
  }
  body h1 {
    font-size: 47px;
    letter-spacing: -2.3px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-visual {
    height: 485px;
  }
  .hero-note {
    margin-top: 27px;
  }
  .image-caption {
    left: 15px;
    right: 15px;
    gap: 10px;
    font-size: 18px;
    padding: 16px 12px;
  }
  .caption-icon {
    width: 31px;
    height: 31px;
  }
  .image-kicker {
    left: 15px;
    top: 15px;
    font-size: 6px;
  }
  .section-space {
    padding-block: 75px;
  }
  .expertise-strip > div {
    row-gap: 23px;
  }
  .expertise-strip a {
    justify-content: flex-start !important;
  }
  .expertise-strip a:nth-child(even) {
    border-right: 0;
    padding-left: 38px;
  }
  .about-top, .insights-layout, .approach {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  body h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }
  .about-copy .lead {
    font-size: 15px;
  }
  .principles {
    gap: 22px;
  }
  .principles > div {
    gap: 11px;
  }
  .principles h3 {
    font-size: 11px;
  }
  .principles p {
    font-size: 10px;
  }
  .service-card {
    padding: 28px;
  }
  .service-card > p {
    min-height: 65px;
  }
  .service-link {
    font-size: 11px;
  }
  .service-card h3 {
    font-size: 29px;
  }
  .insights-layout {
    gap: 32px;
  }
  .insights h2 {
    font-size: 45px;
  }
  .dashboard {
    padding: 23px 18px;
  }
  .dashboard h3 {
    font-size: 15px;
  }
  .dashboard-tabs {
    gap: 16px;
  }
  .dashboard-metrics strong {
    font-size: 29px;
  }
  .approach-image-wrap {
    min-height: 510px;
  }
  .approach-caption {
    left: 15px;
    right: 15px;
    font-size: 6px;
    gap: 7px;
  }
  .contact-inner h2 {
    font-size: 39px;
  }
  .contact-action {
    margin-right: 0;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-location {
    grid-column: 2;
  }
  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  body .container {
    width: calc(100% - 44px);
  }
  .header-inner {
    min-height: 79px;
    gap: 14px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-type {
    font-size: 20px;
  }
  .brand-type > span {
    font-size: 6px;
  }
  .brand {
    gap: 9px;
  }
  .header-cta, .desktop-nav {
    display: none;
  }
  section.hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 35px;
    gap: 33px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 21px;
  }
  body h1 {
    font-size: clamp(41px, 9.4vw, 64px);
    letter-spacing: -2px;
    line-height: 1.1;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 22px;
    max-width: 410px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 19px;
  }
  .hero-actions .button {
    padding: 16px 18px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-note {
    margin-top: 25px;
    font-size: 9px;
  }
  .hero-visual {
    height: 440px;
    max-width: 550px;
    width: 100%;
  }
  .hero-image {
    object-position: center 45%;
  }
  .image-kicker {
    font-size: 6px;
    top: 18px;
    left: 18px;
  }
  .image-caption {
    font-size: 23px;
    left: 18px;
    right: 18px;
    padding: 20px;
    bottom: 43px;
  }
  .caption-icon {
    width: 38px;
    height: 38px;
    margin-right: 4px;
  }
  .image-index {
    font-size: 6px;
    left: 19px;
  }
  .expertise-strip {
    padding-block: 25px;
  }
  .expertise-strip > div {
    row-gap: 23px;
  }
  .expertise-strip a {
    gap: 10px;
    padding: 3px 8px 3px 0;
    font-size: 9px;
  }
  .expertise-strip a:nth-child(even) {
    padding-left: 17px;
  }
  .expertise-strip .icon {
    width: 19px;
    height: 19px;
  }
  .section-space {
    padding-block: 58px;
  }
  .about-top, .insights-layout, .approach {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 19px;
  }
  body h2 {
    font-size: 36px;
  }
  .about-copy .lead {
    font-size: 16px;
  }
  .about-copy p {
    font-size: 12px;
  }
  .principles {
    margin-top: 32px;
    gap: 22px;
    padding-top: 25px;
  }
  .principles > div {
    gap: 17px;
  }
  .principles h3 {
    font-size: 12px;
  }
  .principles p {
    font-size: 11px;
  }
  .section-heading {
    gap: 22px;
    margin-bottom: 29px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .service-grid {
    gap: 16px;
  }
  .service-card {
    padding: 28px;
  }
  .service-top {
    margin-bottom: 23px;
  }
  .service-card h3 {
    font-size: 30px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card > p {
    min-height: 0;
    font-size: 13px;
  }
  .service-card li {
    font-size: 11px;
  }
  .service-card ul {
    margin-block: 18px 25px;
  }
  .service-link {
    font-size: 11px;
  }
  .insights h2 {
    font-size: 44px;
  }
  .insights-copy > p {
    font-size: 13px;
  }
  .check-list {
    font-size: 11px;
  }
  .dashboard {
    margin-top: 14px;
    padding: 23px;
    transform: none;
  }
  .dashboard h3 {
    font-size: 17px;
  }
  .dashboard-metrics strong {
    font-size: 34px;
  }
  .dashboard-tabs {
    gap: 23px;
  }
  .dashboard-metrics span {
    font-size: 8px;
  }
  .approach-image-wrap {
    min-height: 360px;
  }
  .approach-caption {
    font-size: 7px;
  }
  .approach-copy {
    margin-top: 5px;
  }
  .process-list p {
    font-size: 12px;
  }
  .contact-inner {
    padding-block: 55px;
    gap: 29px;
  }
  .contact-inner h2 {
    font-size: 36px;
  }
  .contact-inner p {
    font-size: 11px;
    max-width: 290px;
  }
  .contact-action {
    align-self: flex-start;
  }
  .contact-action > span {
    text-align: left;
  }
  .site-footer {
    padding-top: 44px;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 35px;
  }
  .footer-brand {
    grid-row: auto;
  }
  .footer-location {
    grid-column: auto;
  }
  .footer-main h3 {
    margin-bottom: 17px;
  }
  .footer-contact > a {
    font-size: 12px;
  }
  .footer-location address {
    font-size: 11px;
    max-width: 280px;
  }
  .footer-location .map-link {
    font-size: 11px;
  }
  .company-name {
    font-size: 8px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 12px;
    padding-block: 24px;
  }
  #consultation-dialog {
    padding: 30px 22px;
  }
  #consultation-dialog h2 {
    font-size: 31px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

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