/* miloko — monochrome working drawing */
:root {
  --void: #050505;
  --carbon: #0d0d0d;
  --smoke: #181818;
  --rule: #303030;
  --gray: #767676;
  --mist: #bebebe;
  --paper: #efefef;
  --white: #ffffff;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;
  --page: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--void);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { color: var(--void); background: var(--paper); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { border: 2px solid var(--void); background: var(--rule); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 12px;
  color: var(--void);
  background: var(--paper);
  font-size: .72rem;
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--paper); outline-offset: 4px; }

.eyebrow {
  margin: 0;
  color: var(--gray);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--paper);
  border-bottom: 1px solid var(--rule);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(14px);
}
.nav__inner {
  width: var(--page);
  height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.nav__logo, .footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--paper);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.05em;
}
.nav__mark { position: relative; width: 18px; height: 18px; display: inline-block; flex: 0 0 18px; }
.nav__mark i { position: absolute; width: 7px; height: 7px; border: 1px solid currentColor; }
.nav__mark i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.nav__mark i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.nav__mark i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.nav__mark i:nth-child(4) { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.nav__descriptor { margin: 0; color: var(--gray); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.nav__descriptor span { margin: 0 .65em; color: var(--paper); }
.nav__links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 2vw, 28px); }
.nav__links a { position: relative; color: var(--mist); font-size: .7rem; font-weight: 500; transition: color .2s; }
.nav__links a:not(.nav__cta)::after { content: ''; position: absolute; right: 100%; bottom: -7px; left: 0; height: 1px; background: var(--paper); transition: right .25s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--paper); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__cta { padding: 9px 12px; color: var(--void) !important; background: var(--paper); transition: color .2s, background .2s, transform .2s; }
.nav__cta:hover { color: var(--paper) !important; background: var(--smoke); transform: translateY(-2px); }
.nav__toggle { display: none; width: 36px; height: 36px; padding: 9px 4px; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav__toggle span { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* hero */
.hero { position: relative; min-height: 100svh; padding: 110px 0 32px; background: var(--void); overflow: hidden; }
.hero::before, .hero::after { content: ''; position: absolute; pointer-events: none; }
.hero::before { inset: 70px 0 0; background-image: linear-gradient(var(--smoke) 1px, transparent 1px), linear-gradient(90deg, var(--smoke) 1px, transparent 1px); background-size: 7.5vw 7.5vw; mask-image: linear-gradient(to bottom, black, transparent 62%); opacity: .5; }
.hero::after { width: min(37vw, 570px); aspect-ratio: 1; top: 11%; right: 5%; border: 1px solid var(--rule); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.018), 0 0 0 14vw rgba(255,255,255,.012); }
.hero__inner {
  position: relative;
  width: var(--page);
  min-height: calc(100svh - 142px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(350px, .86fr);
  grid-template-rows: 1fr auto;
  gap: 52px clamp(42px, 7vw, 112px);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; max-width: 750px; }
.hero__eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: clamp(38px, 7vh, 80px); }
.status-dot { width: 7px; height: 7px; background: var(--paper); box-shadow: 0 0 0 4px rgba(239,239,234,.12); }
.hero__title { margin: 0; font-size: clamp(2.7rem, 5.55vw, 6.2rem); font-weight: 700; line-height: .98; letter-spacing: -.1em; }
.hero__title span { display: block; }
.hero__title span + span { margin-top: .18em; }
.hero__title em { color: var(--mist); font-style: normal; }
.hero__sub { max-width: 58ch; margin: 34px 0 0; color: var(--mist); font-size: clamp(.94rem, 1.25vw, 1.08rem); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 36px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: space-between; gap: 42px; padding: 0 14px; font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.button--light { color: var(--void); background: var(--paper); }
.button:hover { box-shadow: 4px 4px 0 var(--gray); transform: translate(-2px, -2px); }
.text-link { position: relative; color: var(--mist); font-size: .72rem; font-weight: 500; }
.text-link::after { content: ''; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transition: transform .25s var(--ease); transform-origin: right; }
.text-link:hover::after { transform: scaleX(.35); }

.hero__field {
  --pointer-x: 61%;
  --pointer-y: 42%;
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1.05;
  justify-self: end;
  color: var(--paper);
  border: 1px solid var(--gray);
  background: rgba(255,255,255,.015);
  box-shadow: 15px 15px 0 var(--smoke);
  overflow: hidden;
  cursor: crosshair;
}
.field__bar { position: absolute; z-index: 4; inset: 0 0 auto; height: 39px; padding: 0 11px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--rule); background: var(--carbon); font-size: .58rem; letter-spacing: .05em; }
.field__drawing { position: absolute; inset: 39px 0 36px; width: 100%; height: calc(100% - 75px); }
.field__plan { color: var(--mist); }.field__network { color: var(--paper); }
.field__labels, .field__measure-label { color: var(--mist); font: 9px var(--mono); letter-spacing: .08em; }
.field__axis { position: absolute; z-index: 2; pointer-events: none; background: rgba(239,239,234,.55); }
.field__axis--x { top: var(--pointer-y); width: 100%; height: 1px; }.field__axis--y { top: 39px; bottom: 36px; left: var(--pointer-x); width: 1px; }
.field__cursor { position: absolute; z-index: 3; top: var(--pointer-y); left: var(--pointer-x); width: 13px; height: 13px; border: 1px solid var(--paper); border-radius: 50%; transform: translate(-50%, -50%); background: var(--void); pointer-events: none; }
.field__cursor span { position: absolute; inset: 4px; background: var(--paper); border-radius: 50%; }
.field__caption { position: absolute; z-index: 4; inset: auto 11px 9px; margin: 0; display: flex; justify-content: space-between; color: var(--gray); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.field__caption span { color: var(--paper); }
.hero__meta { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); }
.hero__meta p { margin: 0; padding: 16px 16px 0 0; color: var(--mist); font-size: .68rem; }.hero__meta p + p { padding-left: 20px; border-left: 1px solid var(--rule); }
.hero__meta span { display: block; margin-bottom: 3px; color: var(--gray); font-size: .58rem; letter-spacing: .07em; text-transform: uppercase; }

/* shared sections */
.section { position: relative; border-bottom: 1px solid var(--rule); }
.section__inner { width: var(--page); margin: 0 auto; padding: clamp(92px, 11vw, 150px) 0; }
.section__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: clamp(52px, 7vw, 88px); }
.section__head .eyebrow { margin-bottom: 20px; }.section__count { margin: 0; color: var(--gray); font-size: .66rem; letter-spacing: .08em; }
.section__title { margin: 0; font-size: clamp(2rem, 4.2vw, 4.7rem); font-weight: 700; line-height: 1.08; letter-spacing: -.1em; }
.section__title span { color: var(--gray); }.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .7s var(--ease); }.reveal.is-visible { opacity: 1; transform: none; }

/* about */
.about { color: var(--void); background: var(--paper); border-color: var(--mist); }
.about .eyebrow, .about .section__count { color: var(--gray); }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 9vw, 150px); }.about__body { padding-top: 4px; }
.about__lead { margin: 0; font-size: clamp(1.1rem, 1.9vw, 1.7rem); font-weight: 500; line-height: 1.55; letter-spacing: -.05em; }
.about__detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 52px; color: #505050; font-size: .82rem; }.about__detail p { margin: 0; }.about__detail i { color: var(--void); font-style: normal; font-weight: 700; }
.about__facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(68px, 9vw, 110px) 0 0; border-top: 1px solid var(--void); }
.fact { min-height: 140px; padding: 20px 20px 0 0; }.fact + .fact { padding-left: 20px; border-left: 1px solid var(--mist); }.fact dt { margin-bottom: 25px; color: var(--gray); font-size: .6rem; text-transform: uppercase; }.fact dd { margin: 0; font-size: clamp(.75rem, 1vw, .9rem); font-weight: 700; line-height: 1.65; letter-spacing: -.04em; }

/* services */
.services { background: var(--void); }.services .section__head .eyebrow { color: var(--mist); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service { min-height: 610px; padding: clamp(28px, 4vw, 50px); display: flex; flex-direction: column; }.service--architecture { color: var(--void); background: var(--paper); }.service--software { color: var(--paper); background: var(--carbon); }
.service__head { display: grid; grid-template-columns: 76px 1fr; gap: 24px; align-items: start; }.service__code { margin: -8px 0 0; color: var(--gray); font-size: clamp(3.2rem, 5.2vw, 5.6rem); font-weight: 700; line-height: 1; letter-spacing: -.15em; }.service--software .service__code { color: var(--rule); }
.service__head .eyebrow { margin: 0 0 13px; color: inherit; opacity: .55; }.service__title { margin: 0; font-size: clamp(1.65rem, 2.7vw, 3rem); font-weight: 700; line-height: 1.05; letter-spacing: -.1em; }
.service__intro { max-width: 49ch; margin: 52px 0 auto 100px; color: inherit; font-size: .82rem; }.service__list { margin: 52px 0 0 100px; padding: 0; list-style: none; border-top: 1px solid currentColor; }.service__list li { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 600; }.service__list small { color: inherit; font-size: .6rem; opacity: .62; }

/* projects */
.projects { color: var(--void); background: var(--paper); border-color: var(--mist); }.projects .eyebrow, .projects .section__count { color: var(--gray); }
.projects__filters { display: flex; gap: 6px; margin: -30px 0 35px; overflow-x: auto; scrollbar-width: none; }.projects__filters::-webkit-scrollbar { display: none; }
.filter { flex: 0 0 auto; padding: 8px 11px; border: 1px solid var(--mist); color: var(--void); background: transparent; font-size: .67rem; cursor: pointer; transition: color .2s, background .2s; }.filter sup { margin-left: 4px; font-size: .52rem; }.filter:hover, .filter.is-active { color: var(--paper); background: var(--void); border-color: var(--void); }
.projects__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 6vw, 82px) 18px; }.project { min-width: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }.project.is-hiding { display: none; }
.project__visual { position: relative; height: clamp(220px, 30vw, 405px); color: var(--void); background: var(--mist); overflow: hidden; }.project__visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(5,5,5,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(5,5,5,.16) 1px, transparent 1px); background-size: 25px 25px; }
.project__body { padding: 19px 1px 0; }.project__top { display: flex; justify-content: space-between; gap: 20px; color: var(--gray); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; }.project__name { margin: 14px 0 10px; font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.09em; }.project__desc { max-width: 54ch; margin: 0; color: #4a4a4a; font-size: .79rem; }
.project__facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 25px 0 0; border-top: 1px solid var(--gray); }.project__facts div { padding: 11px 0; }.project__facts div + div { padding-left: 16px; border-left: 1px solid var(--mist); }.project__facts dt { color: var(--gray); font-size: .56rem; text-transform: uppercase; }.project__facts dd { margin: 2px 0 0; font-size: .67rem; font-weight: 600; }.project__link { width: fit-content; display: inline-flex; align-items: center; gap: 14px; margin-top: 20px; color: var(--void); border-bottom: 1px solid var(--void); font-size: .62rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: gap .2s var(--ease); }.project__link:hover { gap: 25px; }

/* monochrome project diagrams */
.project--fold .project__visual { background: #d8d8d8; }.visual__roof { position: absolute; z-index: 2; top: 25%; left: 20%; width: 58%; height: 38%; border-top: 5px solid var(--void); border-left: 5px solid var(--void); transform: skewY(-12deg); }.visual__roof::after { content: ''; position: absolute; top: -5px; right: -38%; width: 38%; height: 100%; border-top: 5px solid var(--void); transform: skewY(27deg); transform-origin: left top; }.visual__wall { position: absolute; z-index: 2; bottom: 20%; left: 27%; width: 46%; height: 28%; border: 2px solid var(--void); border-top: 0; }.visual__sun { position: absolute; top: 9%; right: 9%; font-size: .65rem; }
.project--meridian .project__visual { color: var(--paper); background: var(--void); }.project--meridian .project__visual::before { background-image: radial-gradient(rgba(239,239,234,.23) 1px, transparent 1px); background-size: 18px 18px; }.visual__orbit { position: absolute; z-index: 2; inset: 17%; border: 1px solid var(--paper); border-radius: 50%; }.visual__orbit--two { inset: 30% 10%; border-color: var(--gray); transform: rotate(48deg); }.visual__orbit::before, .visual__orbit::after { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }.visual__orbit::before { top: 16%; left: 8%; }.visual__orbit::after { right: 8%; bottom: 16%; }.visual__core { position: absolute; z-index: 3; top: 41%; left: 41%; width: 18%; aspect-ratio: 1; border: 2px solid var(--paper); transform: rotate(45deg); }
.project--harbor .project__visual { background: #c5c5c5; }.visual__horizon { position: absolute; z-index: 2; right: 0; bottom: 28%; left: 0; height: 1px; background: var(--void); box-shadow: 0 18px 0 rgba(5,5,5,.35), 0 34px 0 rgba(5,5,5,.2); }.visual__building { position: absolute; z-index: 3; bottom: 28%; left: 22%; width: 56%; height: 43%; border: 2px solid var(--void); clip-path: polygon(0 32%,16% 32%,16% 13%,58% 13%,58% 0,100% 0,100% 100%,0 100%); background-image: linear-gradient(90deg, transparent 48%, var(--void) 48%, var(--void) 52%, transparent 52%), linear-gradient(transparent 47%, var(--void) 47%, var(--void) 53%, transparent 53%); background-size: 42px 42px; }.visual__signal { position: absolute; z-index: 4; top: 19%; right: 19%; width: 10px; height: 10px; border-radius: 50%; background: var(--void); box-shadow: 0 0 0 8px rgba(5,5,5,.2), 0 0 0 19px rgba(5,5,5,.08); }
.project--terra .project__visual { background: #dedede; }.visual__module { position: absolute; z-index: 2; width: 29%; height: 37%; border: 2px solid var(--void); background: rgba(255,255,255,.23); transform: skewY(-9deg); }.visual__module::before { content: ''; position: absolute; inset: 13%; border: 1px solid var(--void); background-image: linear-gradient(90deg, transparent 48%, var(--void) 49%, var(--void) 51%, transparent 52%); }.visual__module--one { top: 28%; left: 12%; }.visual__module--two { top: 19%; left: 36%; }.visual__module--three { top: 10%; left: 60%; }

/* process */
.process { background: var(--carbon); }.process__list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }.process__step { min-height: 138px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: clamp(20px, 5vw, 75px); padding: 24px 4px; border-bottom: 1px solid var(--rule); transition: padding-left .25s var(--ease), background .25s; }.process__step:hover { padding-left: 18px; background: var(--smoke); }.process__num { color: var(--gray); font-size: .67rem; }.process__step h3 { margin: 0 0 7px; font-size: clamp(1.25rem, 2.2vw, 2.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -.08em; }.process__step p { max-width: 570px; margin: 0; color: var(--mist); font-size: .78rem; }.process__mark { width: 45px; color: var(--gray); text-align: center; font-size: 1.75rem; }

/* contact + footer */
.contact { color: var(--void); background: var(--paper); border: 0; }.contact__inner { min-height: 66vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(48px, 10vw, 145px); }.contact .eyebrow { margin-bottom: 27px; color: var(--gray); }.contact__title { margin: 0; font-size: clamp(2.3rem, 4.7vw, 5.2rem); font-weight: 700; line-height: 1.05; letter-spacing: -.1em; }.contact__title span { color: var(--gray); }.contact__action { align-self: end; padding-bottom: 5%; }.contact__action > p { max-width: 46ch; margin: 0 0 34px; color: #4a4a4a; font-size: .82rem; }.contact__mail { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding-bottom: 14px; border-bottom: 2px solid var(--void); font-size: clamp(1rem, 1.7vw, 1.5rem); font-weight: 600; letter-spacing: -.06em; transition: color .2s, border-color .2s; }.contact__mail:hover { color: var(--gray); border-color: var(--gray); }.contact__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }.contact__meta span { padding: 6px 9px; border: 1px solid var(--mist); font-size: .56rem; text-transform: uppercase; }
.footer { color: var(--mist); background: var(--void); border-top: 1px solid var(--rule); }.footer__inner { width: var(--page); min-height: 100px; display: grid; grid-template-columns: 1fr 1.5fr 1fr auto; align-items: center; gap: 28px; margin: 0 auto; }.footer p, .footer__top { margin: 0; color: var(--gray); font-size: .6rem; }.footer__top:hover { color: var(--paper); }

@media (max-width: 1100px) {
  :root { --page: min(100% - 44px, 960px); }
  .nav__inner { grid-template-columns: 1fr auto; }.nav__descriptor { display: none; }.hero__inner { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 42px; }.hero__title { font-size: clamp(2.7rem, 6vw, 4.6rem); }.service { min-height: 580px; padding: 32px; }.service__head { grid-template-columns: 57px 1fr; }.service__intro, .service__list { margin-left: 0; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 36px); }
  .nav__inner { height: 65px; }.nav__toggle { display: block; position: relative; z-index: 2; }.nav__links { position: fixed; inset: 0; min-height: 100svh; padding: 108px 26px 40px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; color: var(--paper); background: var(--void); transform: translateY(-105%); visibility: hidden; transition: transform .4s var(--ease), visibility .4s; }.nav__links.is-open { transform: none; visibility: visible; }.nav__links a { padding: 18px 0; border-bottom: 1px solid var(--rule); color: var(--paper); font-size: 1.25rem; font-weight: 700; letter-spacing: -.08em; }.nav__links a::after { display: none; }.nav__links .nav__cta { margin-top: 28px; padding: 17px; color: var(--void); background: var(--paper); border: 0; }
  .hero { padding-top: 102px; }.hero__inner { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 58px; }.hero__eyebrow { margin-bottom: 42px; }.hero__field { width: min(100%, 540px); justify-self: center; }.hero__meta { grid-column: 1; }.about__grid { grid-template-columns: 1fr; gap: 46px; }.about__facts { grid-template-columns: repeat(2, 1fr); }.fact:nth-child(3) { border-top: 1px solid var(--mist); border-left: 0; }.fact:nth-child(4) { border-top: 1px solid var(--mist); }.services__grid { grid-template-columns: 1fr; }.service { min-height: 545px; }.projects__grid { grid-template-columns: 1fr; gap: 58px; }.project__visual { height: clamp(260px, 65vw, 470px); }.process__step { grid-template-columns: 55px 1fr auto; }.contact__inner { min-height: auto; grid-template-columns: 1fr; }.contact__action { padding: 0; }.footer__inner { padding: 27px 0; grid-template-columns: 1fr auto; }.footer__inner > :nth-child(2), .footer__inner > :nth-child(3) { display: none; }
}

@media (max-width: 520px) {
  :root { --page: calc(100% - 28px); } html { scroll-padding-top: 68px; }.hero { padding: 96px 0 25px; }.hero__title { font-size: clamp(2.35rem, 11.5vw, 3.7rem); letter-spacing: -.11em; }.hero__sub { margin-top: 25px; font-size: .88rem; }.hero__actions { flex-direction: column; align-items: stretch; gap: 19px; }.button { width: 100%; }.hero__field { aspect-ratio: 1 / 1.11; box-shadow: 9px 9px 0 var(--smoke); }.hero__meta { grid-template-columns: 1fr; }.hero__meta p { padding: 12px 0; }.hero__meta p + p { padding-left: 0; border-top: 1px solid var(--rule); border-left: 0; }.hero__meta span { display: inline; margin-right: 10px; }
  .section__inner { padding: 78px 0; }.section__head { margin-bottom: 46px; }.section__title { font-size: clamp(1.85rem, 9.5vw, 3.1rem); }.about__detail { grid-template-columns: 1fr; gap: 21px; margin-top: 34px; }.about__facts { grid-template-columns: 1fr; }.fact { min-height: auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 19px 0; border-top: 1px solid var(--mist); }.fact + .fact { padding-left: 0; border-left: 0; }.fact:first-child { border-top: 0; }.fact dt { margin: 3px 0 0; }
  .service { min-height: 535px; padding: 26px 20px; }.service__head { grid-template-columns: 44px 1fr; gap: 14px; }.service__code { font-size: 3.6rem; }.service__title { font-size: 1.7rem; }.service__list li { flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 0; }.projects__filters { margin-top: -20px; }.project__facts { grid-template-columns: 1fr; }.project__facts div + div { padding-left: 0; border-top: 1px solid var(--mist); border-left: 0; }.process__step { min-height: 150px; grid-template-columns: 32px 1fr; gap: 17px; }.process__mark { display: none; }.contact__title { font-size: clamp(2rem, 10.5vw, 3.2rem); }.contact__mail { font-size: .88rem; }
}

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