@font-face {
  font-family: "Geist";
  src: url("Geist-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("GeistMono-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f5f3;
  --bg-soft: #f7f7f6;
  --panel: #ffffff;
  --ink: #111110;
  --ink-soft: #5a5a58;
  --muted: #999994;
  --muted-readable: #777772;
  --line: #e6e6e2;
  --line-soft: #ebebea;
  --dark: #0d0d0c;
  --dark-2: #131311;
  --dark-line: #202020;
  --blue: #4a6fa5;
  --green: #2d5a3d;
  --shopify: #96bf48;
  --font: "Geist", Arial, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --outer-bg: #eeeeec;
  --page-width: 1360px;
  --site-pad: 72px;
  --section-y: 80px;
  --section-gap: 48px;
  --panel-pad: 40px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 23px;
  --text-2xl: 36px;
  --text-3xl: 52px;
  --text-4xl: 64px;
  --radius-block: 8px;
  --radius-control: 5px;
  --radius-tag: 4px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  margin: 0;
  background: var(--outer-bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-md);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

main,
.site-header,
.site-footer {
  width: min(100%, var(--page-width));
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 var(--site-pad);
  background: rgba(245, 245, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

main {
  background: var(--bg);
}

.brand,
.main-nav,
.header-actions,
.location,
.hero-actions,
.system-status,
.flow,
.metrics,
.tags,
.arch-row,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
}

.brand-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.main-nav {
  gap: 36px;
  color: #777772;
  font-size: var(--text-sm);
}

.main-nav a,
.text-link,
.site-footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--ink);
}

.main-nav a,
.text-link,
.site-footer a {
  position: relative;
}

.header-actions {
  gap: 20px;
}

.location {
  gap: 6px;
  color: #a8a8a3;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.location span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-control);
  padding: 11px 22px;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button-dark {
  background: var(--ink);
  color: #ffffff;
}

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

.button-dark:hover {
  background: #252522;
}

.button:active {
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 56px var(--site-pad);
}

.eyebrow {
  margin: 0;
  color: #a8a8a3;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.philosophy h2,
.contact h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 480px;
  margin-top: 40px;
  font-size: var(--text-4xl);
  line-height: 1.1;
}

.hero-description {
  max-width: 400px;
  margin: 32px 0 0;
  color: #6b6b66;
  font-size: var(--text-md);
  line-height: 1.8;
}

.hero-actions {
  gap: 28px;
  margin-top: 52px;
}

.text-link {
  color: #6b6b66;
  font-size: var(--text-sm);
}

.stack-line {
  margin: 48px 0 0;
  color: #8a8a86;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.8px;
}

.hero-system {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  overflow: hidden;
  padding: 36px 40px 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(74, 111, 165, 0.08), transparent 32%),
    linear-gradient(145deg, #0a0a09 0%, #0d0d0c 48%, #080808 100%);
  border-left: 1px solid #181817;
  color: #ccccca;
}

.hero-system::before,
.hero-system::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero-system::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
}

.hero-system::after {
  background:
    radial-gradient(circle at 26% 62%, rgba(150, 191, 72, 0.045), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(74, 111, 165, 0.055), transparent 24%);
  opacity: 0.72;
  animation: system-breathe 12s ease-in-out infinite alternate;
}

@keyframes system-breathe {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0.82;
    transform: translate3d(0, -4px, 0);
  }
}

.code-label {
  margin: 0;
  color: #74746d;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.6px;
}

.code-block {
  overflow: auto;
  align-self: center;
  margin: 0;
  border-radius: var(--radius-block);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.025);
  background: rgba(20, 20, 19, 0.92);
  color: #c7c7c0;
  font-family: var(--mono);
  font-size: var(--text-xs);
  line-height: 1.7;
}

.system-card {
  align-self: end;
  border-radius: var(--radius-block);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.025);
  background: rgba(17, 17, 16, 0.94);
}

.system-status {
  gap: 8px;
  padding-bottom: 8px;
  color: #7b7b73;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.system-status strong {
  margin-left: auto;
  color: #4f9b72;
  font-weight: 400;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a7a52;
}

.flow {
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px 0;
  color: #b8b8b2;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.flow b {
  flex: 0 0 auto;
  border: 1px solid #315f91;
  border-radius: var(--radius-block);
  padding: 8px 14px;
  background: #172232;
  color: #7ea1c8;
  font-weight: 500;
}

.flow span {
  flex: 0 0 auto;
  border: 1px solid #2a2a28;
  border-radius: var(--radius-block);
  padding: 8px 14px;
  background: #1c1c1a;
  color: #b8b8b2;
}

.flow i,
.arch-row i {
  flex: 0 0 auto;
  color: #55554f;
  font-family: var(--font);
  font-style: normal;
  line-height: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.metrics div {
  border-left: 0;
  padding: 0;
}

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

.metrics dt {
  color: #d8d8d3;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.metrics dd {
  margin: 7px 0 0;
  color: #85857e;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.55px;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
}

.section {
  padding: var(--section-y) var(--site-pad);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: var(--section-gap);
}

.section-heading h2,
.philosophy h2,
.contact h2 {
  margin-top: 20px;
  font-size: var(--text-3xl);
  line-height: 1.05;
}

.section-heading > p {
  max-width: 220px;
  margin: 0;
  color: var(--muted-readable);
  font-size: var(--text-sm);
  line-height: 1.6;
  text-align: right;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 64px minmax(240px, 536px) minmax(0, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
}

.service-list span {
  color: #9f9f99;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.service-list h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 600;
}

.service-list p {
  max-width: none;
  margin: 0;
  color: #4f4f4c;
  font-size: var(--text-md);
  line-height: 1.7;
}

.work {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work .section-heading {
  align-items: end;
  margin-bottom: 8px;
}

.work .section-heading h2 {
  max-width: none;
  white-space: nowrap;
}

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

.featured-work {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.12fr);
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-block);
  background: var(--dark);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 48px;
}

.featured-copy h3 {
  max-width: 520px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: var(--text-xl);
  line-height: 1.18;
}

.featured-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #8f8f89;
  font-size: var(--text-md);
  line-height: 1.75;
}

.tags {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.tags span {
  border-radius: var(--radius-tag);
  padding: 5px 10px;
  border: 1px solid #2a2a28;
  background: #222220;
  color: #8c8c85;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.tags span:first-child {
  border-color: #315f91;
  background: #172232;
  color: #7ea1c8;
}

.architecture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 48px;
  background: var(--dark-2);
}

.architecture p {
  margin: 0;
  color: #6f6f68;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arch-row {
  gap: 10px;
  flex-wrap: wrap;
}

.arch-row span,
.arch-row b,
.arch-grid div {
  border: 1px solid #2a2a28;
  border-radius: var(--radius-block);
  padding: 8px 14px;
  background: #1c1c1a;
  color: #b8b8b2;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 400;
}

.arch-row b {
  border-color: #315f91;
  background: #172232;
  color: #7ea1c8;
  font-weight: 500;
}

.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.arch-grid div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
}

.arch-grid small {
  color: #7a7a73;
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.arch-grid strong {
  color: #f2f2ee;
  font-size: var(--text-xs);
  font-weight: 400;
}

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

.project-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #edede9;
  border-radius: var(--radius-block);
  padding: 32px;
  background: #ffffff;
}

.project-grid p,
.project-grid small {
  margin: 0;
  color: #8f8f89;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-grid h3 {
  margin: 0;
  max-width: 29ch;
  font-size: var(--text-md);
  line-height: 1.28;
}

.project-grid span {
  color: #4f4f4c;
  font-size: var(--text-sm);
  line-height: 1.72;
}

.project-grid small {
  margin-top: auto;
  color: #96968f;
  letter-spacing: 0.5px;
  text-transform: none;
}

.philosophy {
  padding: 88px var(--site-pad);
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid var(--line);
}

.philosophy-top {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.philosophy h2 {
  max-width: 820px;
}

.philosophy-intro {
  max-width: 580px;
  margin: 44px 0 60px;
  color: #9a9a94;
  font-size: var(--text-lg);
  line-height: 1.8;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles article {
  padding-right: 48px;
}

.principles article:not(:first-child) {
  padding-left: 0;
}

.principles span {
  display: block;
  border-bottom: 1px solid #2e2e2b;
  padding-bottom: 14px;
  color: #6f6f68;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.principles h3 {
  margin: 24px 0 0;
  color: #ddddd9;
  font-size: var(--text-md);
  font-weight: 500;
}

.principles p {
  margin: 14px 0 0;
  color: #85857f;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.knowledge {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 80px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.about-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-note p:not(.eyebrow) {
  margin: 0;
  color: #555551;
  font-size: var(--text-sm);
  line-height: 1.85;
}

.about-note a {
  color: var(--ink);
  text-decoration: none;
}

.faq-block .section-heading {
  margin-bottom: 34px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.35;
}

.faq-list p {
  margin: 0;
  color: #555551;
  font-size: var(--text-sm);
  line-height: 1.75;
}

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

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: var(--section-y) var(--site-pad);
  border-bottom: 1px solid #e4e4e0;
}

.contact-band > div p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 0;
  color: #666660;
  font-size: var(--text-md);
  line-height: 1.8;
}

.contact address {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  font-style: normal;
}

.contact address span,
.contact-meta span {
  color: #9d9d97;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact address a {
  color: var(--blue);
  font-size: var(--text-md);
}

.contact address small {
  color: var(--muted);
  font-size: var(--text-xs);
}

.contact-bottom {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  background: var(--bg-soft);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: var(--panel-pad) var(--panel-pad) var(--panel-pad) var(--site-pad);
  background: var(--bg);
}

.contact-meta div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-meta strong {
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 400;
}

.contact-meta small {
  color: #777772;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.contact-meta p {
  margin: 0;
  color: #555551;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 44px 48px;
  background: #fbfbf9;
}

.contact-form h3 {
  margin: 0;
  color: #4f4f4c;
  font-size: var(--text-lg);
  font-weight: 400;
}

.contact-form > div > p {
  margin: 8px 0 0;
  color: #92928c;
  font-size: var(--text-xs);
}

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

label,
fieldset {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
}

fieldset {
  gap: 0;
}

label span,
legend {
  color: #555551;
  font-size: var(--text-sm);
  font-weight: 500;
}

legend {
  margin: 0 0 10px;
  padding: 0;
}

input,
textarea {
  width: 100%;
  border: 1px solid #deded8;
  border-radius: var(--radius-control);
  background: #f7f7f4;
  color: var(--ink);
  outline: 0;
}

input {
  height: 46px;
  padding: 0 15px;
}

textarea {
  resize: none;
  min-height: 132px;
  padding: 15px;
  line-height: 1.65;
}

input::placeholder,
textarea::placeholder {
  color: #aaa9a3;
}

input:focus,
textarea:focus,
.chip:focus-visible {
  border-color: var(--blue);
  outline: 2px solid rgba(74, 111, 165, 0.35);
  outline-offset: 2px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid #d9d9d3;
  border-radius: var(--radius-control);
  padding: 9px 14px;
  background: #f3f3f0;
  color: #5f5f59;
  cursor: pointer;
  font-size: var(--text-sm);
  line-height: 1;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.chip:hover {
  border-color: #c8c8c1;
  background: #eeeeea;
  transform: translateY(-1px);
}

.chip.is-active {
  border-color: #b7c5d7;
  background: #eef3f8;
  color: #315f91;
}

.submit-button {
  width: 100%;
  min-height: 44px;
}

.site-footer {
  min-height: 80px;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--site-pad);
  background: var(--bg);
  color: #8d8d87;
  font-size: var(--text-sm);
}

.site-footer div {
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer div:first-child {
  color: #8a8a84;
}

.site-footer div:first-child span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer div:first-child span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d4d4d0;
  content: "";
}

@media (max-width: 1120px) {
  .site-header,
  .section,
  .philosophy,
  .contact-band,
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 72px 40px;
  }

  .hero-system {
    min-height: 560px;
    border-left: 0;
    border-top: 1px solid #181817;
  }

  .code-block {
    width: 100%;
  }

  .service-list article {
    grid-template-columns: 48px minmax(220px, 360px) minmax(0, 1fr);
  }

  .featured-work {
    grid-template-columns: 1fr;
  }

  .featured-copy,
  .architecture {
    padding: 40px;
  }

  .project-grid,
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles {
    gap: 36px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .knowledge {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: var(--panel-pad);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    background: rgba(245, 245, 243, 0.98);
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: var(--text-sm);
  }

  .header-actions {
    display: none;
  }

  .hero-copy,
  .section,
  .philosophy,
  .contact-band,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .hero h1 {
    font-size: 40px;
    max-width: none;
  }

  .hero-description {
    max-width: none;
    margin-top: 24px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .stack-line {
    margin-top: 30px;
  }

  .section-heading,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .philosophy h2,
  .contact h2 {
    font-size: var(--text-2xl);
  }

  .work .section-heading h2 {
    white-space: normal;
  }

  .section-heading > p {
    text-align: left;
  }

  .hero-system {
    min-height: 0;
    gap: 18px;
    padding: 28px 24px;
  }

  .code-block {
    max-height: 210px;
  }

  .code-block,
  .flow,
  .metrics {
    font-size: var(--text-xs);
  }

  .flow,
  .metrics,
  .service-list article,
  .form-row,
  .contact-meta,
  .site-footer {
    display: flex;
    flex-direction: column;
  }

  .flow,
  .flow span,
  .flow b,
  .flow i,
  .metrics div {
    display: none;
  }

  .system-card {
    padding: 16px;
  }

  .system-status {
    padding-bottom: 16px;
  }

  .system-status span:nth-child(2) {
    line-height: 1.4;
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 2px;
  }

  .metrics div {
    border: 0;
    padding: 0;
  }

  .metrics div:first-child,
  .metrics div:nth-child(2),
  .metrics div:nth-child(3) {
    display: block;
  }

  .metrics {
    gap: 14px;
  }

  .metrics dt {
    font-size: 17px;
  }

  .metrics dd {
    margin-top: 5px;
    font-size: 10px;
    white-space: normal;
  }

  .service-list article {
    gap: 14px;
  }

  .service-list p {
    line-height: 1.78;
  }

  .project-grid,
  .principles,
  .arch-grid,
  .faq-list article {
    grid-template-columns: 1fr;
  }

  .faq-list article {
    gap: 12px;
  }

  .featured-copy,
  .architecture,
  .project-grid article {
    padding: 28px;
  }

  .featured-work {
    min-height: 0;
  }

  .project-grid article {
    min-height: 0;
  }

  .philosophy-intro {
    max-width: none;
  }

  .principles article {
    padding-right: 0;
  }

  .contact address {
    align-items: flex-start;
  }

  .contact-meta {
    padding: 40px 24px;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    padding: 9px 12px;
  }

  .site-footer {
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
