:root {
  --paper: #f5f4ef;
  --ink: #262d2a;
  --muted: #777a73;
  --accent: #cc6954;
  --coral: #e99a82;
  --line: #dadcd4;
  --dark: #252d29;
}

* {
  box-sizing: border-box;
}

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

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

body.dialog-open {
  overflow: hidden;
}

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

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

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

button, a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

body h2 {
  font-size: clamp(34px, 3.35vw, 49px);
  line-height: 1.12;
  letter-spacing: -2px;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 14px 24px;
  background: var(--ink);
  color: white;
}

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

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

.header-inner {
  display: flex;
  min-height: 103px;
  gap: 30px;
}

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

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

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

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 31px;
  height: 34px;
  transform: skewY(-15deg);
}

.brand-mark span {
  display: block;
  width: 8px;
  height: 24px;
  background: var(--accent);
}

.brand-mark span:nth-child(2) {
  height: 31px;
}

.brand-mark span:nth-child(3) {
  height: 38px;
}

.desktop-nav {
  display: flex;
  gap: 35px;
  font-size: 13px;
}

.desktop-nav a, .footer-bottom a {
  transition: color .2s;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 19px 22px;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .2s, transform .2s;
}

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

.button-small {
  padding: 13px 19px;
  gap: 25px;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 58px;
  align-items: center;
}

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

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

.hero h1 {
  margin-top: 29px;
  font-size: clamp(64px, 6.6vw, 95px);
  line-height: 1.035;
  letter-spacing: -5px;
  font-weight: 500;
}

.accent-text {
  color: var(--accent);
}

.hero-description {
  max-width: 390px;
  margin-top: 28px;
  font-size: 15px;
  color: #6d716b;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 23px;
  margin-top: 30px;
}

.hero-actions .button {
  padding: 17px 18px;
  gap: 17px;
  font-size: 12px;
}

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

.text-link .icon {
  transition: transform .2s;
}

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

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

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

.mini-line {
  width: 27px;
  height: 1px;
  background: #b0b2aa;
}

.hero-visual {
  position: relative;
  height: 572px;
  margin-bottom: 22px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.image-label {
  position: absolute;
  top: 23px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: rgba(247, 245, 238, .93);
  border-radius: 2px;
  font-size: 8px;
  letter-spacing: 1.15px;
}

.insight-card {
  position: absolute;
  left: -28px;
  right: 31px;
  bottom: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 27px;
  background: #f9f8f2;
  border-radius: 3px;
  box-shadow: 0 10px 35px #1c201612;
}

.card-eyebrow {
  margin-bottom: 12px;
  color: #7b7e76;
  font-size: 8px;
  letter-spacing: 1.2px;
}

.insight-card p:not(.card-eyebrow) {
  font-size: 18px;
  letter-spacing: -.35px;
  line-height: 1.35;
}

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

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 58px;
  margin-left: auto;
}

.mini-chart i {
  width: 13px;
  height: 20px;
  background: #e5c3b5;
  border-radius: 2px 2px 0 0;
}

.mini-chart i:nth-child(2) {
  height: 28px;
}

.mini-chart i:nth-child(3) {
  height: 36px;
}

.mini-chart i:nth-child(4) {
  height: 46px;
}

.mini-chart i:nth-child(5) {
  height: 58px;
  background: var(--accent);
}

.insight-arrow {
  color: var(--accent);
  font-size: 21px;
  align-self: flex-start;
  margin-left: 10px;
}

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

.expertise-strip {
  border-block: 1px solid var(--line);
}

.expertise-strip .page-shell {
  display: flex;
  gap: 16px;
  min-height: 87px;
}

.expertise-strip span {
  font-size: 13px;
  letter-spacing: -.2px;
}

.expertise-strip .strip-intro {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-right: 20px;
}

.expertise-strip i {
  color: var(--accent);
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
}

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

.section-label {
  margin-bottom: 24px;
}

.section-label > span {
  color: var(--accent);
  margin-right: 7px;
}

.muted-text {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 390px;
}

.about-visual > img {
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.photo-corner {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 187px;
  padding: 25px 0 0 26px;
  background: var(--paper);
  font-size: 22px;
  letter-spacing: -.8px;
  line-height: 1.2;
}

.photo-corner > span {
  position: absolute;
  top: 24px;
  right: 9px;
  color: var(--accent);
  font-size: 27px;
}

.about-content h2 {
  font-size: clamp(32px, 2.8vw, 42px);
  margin-bottom: 24px;
  letter-spacing: -1.6px;
}

.about-content > p:not(.eyebrow) {
  color: #72766e;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 13px;
}

.about-content .text-link {
  margin-top: 21px;
  border-bottom: 1px solid #adb0a6;
  padding-bottom: 10px;
}

.services-section {
  background: #eeeee7;
}

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

.section-intro {
  font-size: 13px;
  line-height: 1.8;
  color: #72766e;
  padding-bottom: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ced1c6;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 25px 6px;
  border-right: 1px solid #ced1c6;
  transition: background .2s;
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.service-card:hover {
  background: #e7e8df;
}

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

.service-icon {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
}

.service-card-top > span {
  font-size: 9px;
  color: #858a7b;
}

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

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

.service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 10px;
}

.service-bottom .icon {
  width: 16px;
  height: 16px;
}

.insights-section {
  padding-block: 98px;
  background: var(--dark);
  color: #f4f2eb;
}

.insights-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 105px;
}

.insights-copy h2 {
  font-size: clamp(40px, 4vw, 57px);
  margin-bottom: 27px;
}

.insights-copy h2 > span {
  color: #e69982;
}

.insights-copy > p:not(.eyebrow) {
  max-width: 370px;
  color: #b4bbb2;
  font-size: 13px;
  line-height: 1.85;
}

.insights-copy .eyebrow {
  color: #d4d9cd;
}

.insight-points {
  display: grid;
  gap: 13px;
  margin-block: 28px;
  font-size: 12px;
}

.insight-points i {
  margin-right: 12px;
  color: #e69982;
  font-size: 16px;
  font-style: normal;
}

.light-link {
  border-bottom: 1px solid #737e6e;
  font-size: 11px;
}

.analytics-card {
  padding: 27px 29px 20px;
  background: #2c342f;
  border: 1px solid #485046;
  border-radius: 6px;
  box-shadow: 0 16px 35px #17221822;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.dashboard-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 1.4px;
}

.sample-label {
  font-size: 7px;
  letter-spacing: .8px;
  color: #b1b9ac;
  border: 1px solid #535c4e;
  border-radius: 3px;
  padding: 5px 7px;
}

.analytics-tabs {
  display: flex;
  gap: 23px;
  border-bottom: 1px solid #465040;
}

.analytics-tabs button {
  padding: 0 0 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #aeb7a9;
  font-size: 11px;
  transition: color .2s;
}

.analytics-tabs button[aria-selected="true"] {
  border-color: #e99a82;
  color: #f5f3eb;
}

.analytics-tabs button:hover {
  color: white;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

#metric-label {
  color: #bbc3b5;
  font-size: 10px;
  margin-bottom: 8px;
}

.metric-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

#metric-value {
  font-size: 37px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

#metric-period {
  font-size: 8px;
  color: #b8c1b1;
}

.metric-direction {
  color: #e9a28b;
  font-size: 29px;
}

.chart-wrap {
  margin-top: 14px;
}

.chart-wrap > svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid path {
  fill: none;
  stroke: #4d5748;
  stroke-width: .65;
  stroke-dasharray: 3 5;
}

.chart-months {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: .3px;
  color: #bdc5b6;
}

.chart-takeaway {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding: 13px 11px;
  background: #354034;
  border-radius: 3px;
}

.takeaway-icon {
  color: #dba189;
  font-size: 19px;
}

.chart-takeaway p {
  font-size: 9px;
  line-height: 1.6;
  color: #d3dacb;
}

.analytics-disclaimer {
  margin-top: 15px;
  font-size: 8px;
  line-height: 1.5;
  color: #acb6a5;
}

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

.process-step {
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  margin-bottom: 28px;
}

.process-top > span {
  font-size: 12px;
}

.process-step h3 {
  font-size: 21px;
  letter-spacing: -.6px;
  margin-bottom: 14px;
}

.process-step p {
  max-width: 310px;
  font-size: 13px;
  line-height: 1.85;
  color: #73776f;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e8a18b;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 72px;
}

.contact-inner h2 {
  font-size: clamp(36px, 4.2vw, 60px);
  margin-top: 22px;
}

.contact-inner h2 > span {
  color: #6a4a40;
}

.contact-action {
  text-align: center;
  margin-top: 25px;
}

.button-dark {
  background: var(--ink);
  padding: 20px 26px;
}

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

.contact-action p {
  font-size: 10px;
  color: #664c41;
  margin-top: 17px;
}

.contact-watermark {
  position: absolute;
  z-index: -1;
  right: 20px;
  top: -122px;
  font-size: 500px;
  font-weight: 400;
  line-height: 1;
  color: #f0b9a440;
  pointer-events: none;
}

.site-footer {
  padding-top: 67px;
  background: #202823;
  color: #f0f0e9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .8fr;
  gap: 40px;
  padding-bottom: 58px;
}

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

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

.footer-main h3 {
  color: #b0b9aa;
  font-size: 9px;
  letter-spacing: 1.6px;
  margin: 4px 0 24px;
}

.footer-contact a {
  display: block;
  width: fit-content;
  font-size: 13px;
  margin-top: 13px;
  transition: color .2s;
}

.footer-contact a:hover {
  color: #edaa92;
}

.footer-contact a span {
  margin-left: 10px;
  color: #edaa92;
}

.footer-address address {
  color: #d5dacd;
  font-style: normal;
  font-size: 12px;
  line-height: 1.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid #434d3f;
  font-size: 9px;
  color: #aeb8a7;
}

.footer-bottom a {
  white-space: nowrap;
}

.footer-bottom a span {
  margin-left: 19px;
}

#consultation-dialog {
  position: fixed;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  overflow-y: auto;
  box-shadow: 0 25px 100px #0003;
}

dialog::backdrop {
  background: #1e2825aa;
  backdrop-filter: blur(5px);
}

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

dialog .eyebrow {
  font-size: 8px;
  margin-top: 10px;
  margin-bottom: 18px;
}

#dialog-description {
  font-size: 12px;
  color: #72766e;
  line-height: 1.7;
  margin-top: 16px;
}

#consultation-form {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

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

#consultation-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
}

#consultation-form input,
#consultation-form select,
#consultation-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid #cfd2c7;
  border-radius: 3px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 12px;
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #d89580;
  outline-offset: 2px;
}

.form-note {
  font-size: 9px;
  line-height: 1.6;
  color: #73796e;
}

.form-status {
  padding: 15px;
  background: #e5eadd;
  font-size: 12px;
  line-height: 1.7;
}

.form-status a {
  text-decoration: underline;
}

[hidden] {
  display: none !important;
}

@media (min-width: 1440px) {
  .hero {
    gap: 70px;
  }
}

@media (max-width: 1150px) {
  .page-shell {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 38px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-visual {
    height: 568px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .insight-card {
    padding: 22px;
    right: 20px;
    left: -20px;
  }
  .insight-arrow {
    display: none;
  }
  .about-section, .insights-grid {
    gap: 50px;
  }
  .expertise-strip .strip-intro {
    display: none;
  }
  .service-card {
    padding-inline: 19px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-bottom {
    font-size: 9px;
  }
  .analytics-card {
    padding-inline: 22px;
  }
  .footer-main {
    grid-template-columns: 1fr 1.1fr .9fr;
    gap: 25px;
  }
  .footer-contact a {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    gap: 22px;
    font-size: 12px;
  }
  .hero {
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -3.7px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.15px;
  }
  .hero-visual {
    height: 530px;
  }
  .insight-card {
    left: -15px;
    right: 15px;
    padding: 19px;
  }
  .insight-card p:not(.card-eyebrow) {
    font-size: 15px;
  }
  .mini-chart {
    gap: 5px;
  }
  .mini-chart i {
    width: 9px;
  }
  .section-space {
    padding-block: 78px;
  }
  .about-section {
    gap: 36px;
  }
  .about-visual {
    height: 415px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    padding: 27px;
    border-bottom: 1px solid #ced1c6;
  }
  .service-card:nth-child(even) {
    border-right: 0;
    padding-right: 0;
  }
  .service-card:nth-child(odd) {
    padding-left: 0;
  }
  .service-card:nth-child(n+3) {
    border-bottom: 0;
  }
  .service-card-top {
    margin-bottom: 25px;
  }
  .service-bottom {
    font-size: 11px;
  }
  .insights-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 35px;
  }
  .insights-copy h2 {
    font-size: 42px;
  }
  .analytics-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .analytics-tabs {
    gap: 15px;
  }
  .analytics-tabs button {
    font-size: 10px;
  }
  .process-grid {
    gap: 26px;
  }
  .process-step h3 {
    font-size: 19px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .page-shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 82px;
  }
  .brand-type {
    font-size: 20px;
  }
  .brand-type > span {
    font-size: 7px;
    letter-spacing: 2.3px;
  }
  .brand-mark {
    transform: skewY(-15deg) scale(.9);
  }
  .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: transparent;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    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 {
    display: grid;
    padding: 8px 20px 20px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 39px;
    padding-bottom: 44px;
    gap: 36px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero h1 {
    margin-top: 23px;
    font-size: clamp(61px, 12vw, 82px);
    line-height: 1.04;
    letter-spacing: -3.7px;
  }
  .desktop-break {
    display: none;
  }
  .hero-description {
    max-width: 410px;
    margin-top: 24px;
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 17px 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    margin-top: 22px;
  }
  .hero-visual {
    height: 430px;
    margin-left: 9px;
  }
  .hero-visual > img {
    object-position: center 48%;
  }
  .image-label {
    top: 17px;
    left: 17px;
    font-size: 7px;
  }
  .insight-card {
    left: -9px;
    bottom: 24px;
    right: 19px;
    padding: 22px;
  }
  .insight-card p:not(.card-eyebrow) {
    font-size: 19px;
  }
  .mini-chart {
    gap: 6px;
  }
  .mini-chart i {
    width: 12px;
  }
  .expertise-strip .page-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-block: 24px;
  }
  .expertise-strip span {
    font-size: 11px;
  }
  .expertise-strip i {
    display: none;
  }
  .expertise-strip span::before {
    content: '↗';
    color: var(--accent);
    margin-right: 9px;
  }
  .section-space {
    padding-block: 64px;
  }
  .section-label {
    margin-bottom: 18px;
  }
  body h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-visual {
    height: 320px;
  }
  .about-content h2 {
    font-size: 35px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 31px;
  }
  .section-intro {
    font-size: 12px;
  }
  .service-card {
    padding: 23px 15px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card > p {
    font-size: 11px;
  }
  .service-bottom {
    font-size: 9px;
    line-height: 1.6;
    align-items: flex-end;
  }
  .insights-section {
    padding-block: 62px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .insights-copy h2 {
    font-size: 45px;
  }
  .insights-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .analytics-card {
    padding: 23px 20px 18px;
  }
  .analytics-header {
    flex-direction: row;
    align-items: center;
  }
  .dashboard-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .sample-label {
    font-size: 6px;
  }
  .analytics-tabs {
    gap: 24px;
  }
  .analytics-tabs button {
    font-size: 11px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .process-top {
    margin-bottom: 16px;
  }
  .process-step h3 {
    font-size: 22px;
  }
  .process-step p {
    max-width: none;
  }
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 53px;
    gap: 28px;
  }
  .contact-inner .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .contact-inner h2 {
    font-size: 39px;
  }
  .contact-action {
    margin: 0;
    text-align: left;
  }
  .contact-watermark {
    top: 35px;
    right: -60px;
    font-size: 350px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 35px;
  }
  .footer-brand {
    grid-row: auto;
  }
  .footer-main h3 {
    margin-bottom: 17px;
  }
  .footer-contact a {
    font-size: 14px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.7;
  }
  .footer-bottom p {
    max-width: 245px;
  }
  #consultation-dialog {
    padding: 30px 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

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