@font-face {
  font-family: Onest;
  src: url("/font/onest/Onest-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Gothic;
  src: url("/font/gothic-60/gothic60-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --bg: #131615;
  --surface: #1a1e1c;
  --ink: #e9ebe4;
  --muted: #a0a9a2;
  --faint: #718078;
  --accent: #a8d9ce;
  --line: rgba(215, 235, 220, 0.17);
  --pad: clamp(24px, 5.5vw, 96px);
  --display: Gothic, Arial, sans-serif;
  --body: Onest, Arial, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 15px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: #b9dfd2;
  color: #17221d;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  background: none;
  border: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}
p {
  color: var(--muted);
}
em {
  font-style: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
a,
button {
  touch-action: manipulation;
}
a,
button,
summary {
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s,
    transform 0.3s;
}
section[id],
article[id] {
  scroll-margin-top: 125px;
}
.accent {
  color: var(--accent);
}
.small {
  font-size: 12px;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.eyebrow,
.chapter-label {
  font: 400 10px/1.5 var(--body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--muted);
}
.chapter-label {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--muted);
}
.chapter-label > span {
  font-size: 11px;
  color: var(--accent);
}
.chapter-label > span::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin-left: 20px;
}
.section-shell,
.itu-section {
  padding: 110px var(--pad);
  max-width: 1600px;
  margin: auto;
}
.narrative {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.narrative > section,
.narrative > nav {
  position: relative;
  z-index: 1;
}
.silk {
  pointer-events: none;
  overflow: visible;
}
.skip {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -80px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 20px;
  border-radius: 4px;
}
.skip:focus {
  top: 20px;
}
/* Navigation is part of the composition, then becomes a quiet reading bar. */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  z-index: 20;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}
.brand img {
  width: 83px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 90px;
  font-size: 12px;
}
.desktop-nav a {
  color: #adb6ae;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}
.header-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.language {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.menu-toggle {
  height: 42px;
  width: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.menu-toggle span {
  height: 1px;
  width: 15px;
  background: var(--ink);
  transition: width 0.25s;
}
.menu-toggle:hover span:first-child {
  width: 21px;
}
.site-menu {
  position: fixed;
  inset: 18px 18px 18px auto;
  margin: 0;
  width: min(630px, calc(100% - 36px));
  max-height: calc(100dvh - 36px);
  padding: 38px 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #1a201d;
  color: var(--ink);
  overflow: auto;
}
.site-menu::backdrop {
  background: rgba(6, 11, 8, 0.7);
  backdrop-filter: blur(12px);
}
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.menu-close {
  font: 300 34px/1 var(--body);
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.site-menu h2 {
  font-size: clamp(38px, 4vw, 60px);
  margin: 38px 0 28px;
  text-transform: none;
}
.navigation {
  display: flex;
  flex-direction: column;
}
.navigation a {
  display: grid;
  grid-template-columns: 32px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.15;
}
.navigation a > span:first-child {
  font: 10px var(--body);
  color: var(--faint);
}
.navigation a > span:last-child {
  font: 20px var(--body);
}
.navigation a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.menu-directions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.menu-directions a {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 11px;
}
.menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.menu-contact a:last-child {
  color: var(--muted);
  font-size: 12px;
}
/* Type, buttons and shared editorial sections. */
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.button span {
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
}
.button.primary {
  background: var(--ink);
  color: #202923;
  border-color: var(--ink);
}
.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.button:not(.primary):hover {
  border-color: var(--accent);
  background: rgba(168, 217, 206, 0.06);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.text-link span {
  font-size: 22px;
  line-height: 1;
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.chapter-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  align-items: end;
}
.chapter-heading > .chapter-label {
  grid-column: 1/-1;
  margin-bottom: 44px;
}
.chapter-heading h2 {
  font-size: clamp(48px, 5vw, 76px);
  grid-column: 1/-1;
}
.chapter-heading h2 span {
  color: var(--muted);
}
.chapter-heading > p {
  grid-column: 2;
  margin-top: 28px;
  font-size: 15px;
  max-width: 380px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 25px;
}
.section-heading h2 {
  font-size: clamp(40px, 4.7vw, 68px);
  text-transform: none;
}
.section-heading p {
  max-width: 450px;
  font-size: 15px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span {
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 30px;
  font-size: 10px;
  color: var(--muted);
}
.theme-design {
  --discipline: #d9b7a8;
}
.theme-development {
  --discipline: #a8d9ce;
}
.theme-media {
  --discipline: #d9c89e;
}
/* Public service and company pages. */
.inner-opening {
  padding: 160px var(--pad) 70px;
  max-width: 1600px;
  margin: auto;
  min-height: 740px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  color: var(--faint);
  margin-bottom: 60px;
}
.breadcrumb a {
  color: var(--muted);
}
.inner-intro {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
}
.inner-copy {
  position: relative;
  z-index: 2;
}
.inner-copy h1 {
  font-size: clamp(64px, 7.3vw, 112px);
  margin: 24px 0 24px;
  letter-spacing: -0.045em;
}
.inner-copy h1 span {
  color: var(--discipline, var(--accent));
}
.inner-copy > p {
  max-width: 500px;
  font-size: 16px;
}
.inner-copy .tags {
  margin: 25px 0 32px;
}
.inner-art {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.12;
}
.inner-art .silk {
  position: absolute;
  width: 125%;
  max-width: none;
  left: -15%;
  top: -25%;
}
.inner-art .art-word {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(65px, 8vw, 125px);
  color: var(--discipline);
  letter-spacing: -0.05em;
}
.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 70px 0 0;
  border-top: 1px solid var(--line);
  padding: 25px 0 0;
}
.service-stats > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-stats dt {
  font-size: 10px;
  letter-spacing: 0.09em;
  color: var(--faint);
  text-transform: uppercase;
}
.service-stats dd {
  font-size: 13px;
  margin: 0;
  max-width: 250px;
}
.service-local-nav {
  position: sticky !important;
  top: 0;
  z-index: 8 !important;
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 23px var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 22, 21, 0.94);
  backdrop-filter: blur(20px);
  font-size: 11px;
}
.service-local-nav a {
  color: var(--muted);
  white-space: nowrap;
}
.service-local-nav a[aria-current],
.service-local-nav a:hover {
  color: var(--discipline, var(--ink));
}
.offer-list {
  border-top: 1px solid var(--line);
}
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
.offer > summary {
  display: grid;
  grid-template-columns: 135px 1fr 35px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.offer summary h3 {
  font-size: 29px;
  text-transform: none;
  line-height: 1.15;
}
.disclosure {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font: 300 23px var(--body);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 0.3s,
    color 0.3s;
}
.offer[open] > summary .disclosure,
.faq-list details[open] .disclosure,
details.company-block[open] .disclosure {
  transform: rotate(45deg);
  color: var(--discipline, var(--accent));
}
.offer-body {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 70px;
  padding: 38px 0 45px;
  border-bottom: 1px solid var(--line);
}
.offer-intro p {
  max-width: 340px;
}
.offer-intro img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-top: 25px;
}
.offer-intro .eyebrow {
  display: block;
  margin-top: 25px;
}
.offer-children {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.offer-children h4 {
  margin-bottom: 8px;
}
.offer-children p {
  font-size: 13px;
}
.outcome {
  background: rgba(233, 235, 228, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.outcome > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.benefit-list article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.benefit-list h3 {
  font-size: 29px;
  margin: 24px 0 16px;
  line-height: 1.12;
}
.benefit-list p {
  font-size: 14px;
  max-width: 340px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.team-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.role-no {
  font: 80px/1 var(--display);
  color: var(--discipline);
  opacity: 0.5;
  margin: 0 0 28px;
}
.team-grid h3 {
  font-size: 29px;
  line-height: 1.12;
  margin: 18px 0;
}
.team-grid p {
  font-size: 14px;
}
.principle {
  display: block;
  font-size: 11px;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--discipline);
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}
.assurance-grid article {
  display: grid;
  grid-template-columns: 35px 1fr;
  column-gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.assurance-grid article > .eyebrow {
  grid-row: 1/3;
  margin-top: 7px;
}
.assurance-grid h3 {
  font-size: 29px;
  line-height: 1.15;
}
.assurance-grid p {
  grid-column: 2;
  font-size: 14px;
  margin-top: 15px;
  max-width: 420px;
}
.inner-process {
  border-top: 1px solid var(--line);
}
.project-steps {
  counter-reset: step;
}
.project-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding: 35px 0;
}
.project-step > .step-no {
  font: 48px/1 var(--display);
  color: var(--discipline, var(--accent));
}
.project-step h3 {
  font-size: 29px;
  line-height: 1.2;
  margin-top: 12px;
  text-transform: none;
}
.project-step > p {
  font-size: 14px;
  max-width: 420px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
}
.faq .section-heading {
  display: block;
}
.faq .section-heading > .eyebrow {
  display: block;
  margin-bottom: 25px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
}
.faq-list h3 {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.faq-list .disclosure {
  flex: 0 0 32px;
}
.faq-list details p {
  font-size: 14px;
  margin: 0 40px 28px 0;
}
.next-directions {
  padding: 0 var(--pad) 100px;
  max-width: 1600px;
  margin: auto;
}
.next-directions > .eyebrow {
  display: block;
  margin-bottom: 30px;
}
.next-directions > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.next-directions a {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font: 42px/1.2 var(--display);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.next-directions a:hover {
  color: var(--discipline);
}
.next-directions a > span {
  font-size: 30px;
}
/* A human introduction comes before the official company information. */
.about-opening {
  min-height: 770px;
}
.about-opening h1 {
  font-size: clamp(66px, 7.4vw, 112px);
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.about-opening h1 span {
  color: var(--accent);
}
.about-introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 55px;
  align-items: end;
}
.about-introduction > p {
  font-size: 19px;
  max-width: 500px;
}
.about-introduction > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  max-width: 450px;
}
.about-opening > .silk {
  position: absolute;
  width: 600px;
  right: 0;
  top: 100px;
  opacity: 0.4;
  z-index: 0;
}
.company-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 85px;
}
.company-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}
.company-aside h2 {
  font-size: 48px;
  margin: 20px 0;
}
.company-aside > p {
  font-size: 14px;
  margin-bottom: 28px;
  max-width: 350px;
}
.company-aside .button {
  display: flex;
  width: fit-content;
  margin-bottom: 12px;
  gap: 20px;
  font-size: 11px;
}
.company-block {
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
}
.company-block h3 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 25px;
}
.company-block > .eyebrow {
  display: block;
  margin-bottom: 20px;
}
.requisites,
.info-list {
  margin: 0;
}
.requisites > div {
  display: grid;
  grid-template-columns: 150px 1fr 30px;
  gap: 15px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.requisites dt,
.info-list dt {
  font-size: 11px;
  color: var(--faint);
}
.requisites dd,
.info-list dd {
  font-size: 13px;
  margin: 0;
  overflow-wrap: anywhere;
}
.copy-value {
  border-radius: 50%;
  font-size: 18px;
  color: var(--faint);
  min-width: 30px;
  min-height: 30px;
  margin-top: -5px;
}
.copy-value:hover {
  color: var(--accent);
  background: var(--surface);
}
.info-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.company-block summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.company-block summary h3 {
  margin-bottom: 0;
}
.activity-list {
  padding: 25px 0 0;
  display: grid;
  gap: 15px;
  color: var(--muted);
  font-size: 13px;
}
.contract {
  font-size: 14px;
}
.text-button {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  margin-bottom: 20px;
}
/* The conversation is the final scene, not a separate widget. */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin: 75px var(--pad) 110px;
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
  max-width: 1408px;
}
.contact-title h2 {
  font-size: clamp(64px, 7.3vw, 108px);
  margin: 35px 0 40px;
  letter-spacing: -0.04em;
}
.contact-title h2 span {
  color: var(--accent);
}
.contact-intro {
  max-width: 330px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.contact-options {
  width: 100%;
  max-width: 510px;
  justify-self: end;
  align-self: center;
  min-width: 0;
}
.contact-channel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}
.contact-channel > .eyebrow {
  grid-column: 1 / -1;
  color: var(--muted);
}
.contact-address {
  font-size: clamp(20px, 2.25vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.35;
  transition: color 0.25s;
}
.contact-arrow {
  align-self: center;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.25s;
}
.contact-hint {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.contact-channel:hover .contact-address,
.contact-phones a:hover {
  color: var(--accent);
}
.contact-channel:hover .contact-arrow {
  transform: translate(3px, -3px);
}
.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 28px;
  padding-top: 30px;
}
.contact-phones > .eyebrow {
  width: 100%;
  color: var(--muted);
}
.contact-phones a {
  font-size: 16px;
  white-space: nowrap;
}
.footer {
  padding: 45px var(--pad) 22px;
  background: #101311;
  border-top: 1px solid var(--line);
}
.footer-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
.footer-signature > .eyebrow {
  font-size: 9px;
  letter-spacing: 0.18em;
}
.unity-trace {
  display: flex;
  gap: 6px;
}
.unity-trace i {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.unity-trace i:nth-child(2) {
  background: #d9b7a8;
}
.unity-trace i:nth-child(3) {
  background: #d9c89e;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 35px;
}
.footer-brand .brand img {
  width: 98px;
}
.footer-brand p {
  font-size: 12px;
  margin: 20px 0 12px;
}
.footer-brand > .small {
  font-size: 10px;
  color: var(--faint);
}
.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-grid .eyebrow {
  font-size: 9px;
  margin-bottom: 17px;
}
.footer-grid nav a,
.footer-contact a {
  font-size: 11px;
  color: var(--muted);
}
.footer-grid a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--faint);
}
.back-top span {
  margin-left: 15px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 15px);
  z-index: 70;
  max-width: calc(100% - 32px);
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  font-size: 13px;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.error-page {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 190px var(--pad) 130px;
  min-height: 90svh;
}
.error-lines {
  position: absolute;
  inset: 100px 0 auto;
  width: 100%;
  opacity: 0.1;
  z-index: -1;
}
.error-page h1 {
  font-size: clamp(150px, 24vw, 330px);
  color: var(--ink);
}
.error-page h1 span {
  color: var(--accent);
}
.error-page h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin-bottom: 22px;
}
.error-page p {
  max-width: 450px;
  margin: 0 auto;
}
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}
@media (min-width: 1600px) {
  .contact {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    margin-left: 0;
    gap: 25px;
  }
  .inner-intro {
    gap: 20px;
  }
  .inner-copy h1 {
    font-size: 8.2vw;
  }
  .service-local-nav {
    gap: 30px;
  }
  .inner-art .silk {
    top: -8%;
  }
  .company-layout {
    gap: 50px;
    grid-template-columns: 0.8fr 1.4fr;
  }
  .requisites > div {
    grid-template-columns: 120px 1fr 25px;
  }
  .info-list > div {
    grid-template-columns: 120px 1fr;
  }
  .contact {
    gap: 50px;
  }
  .contact-title h2 {
    font-size: 8.3vw;
  }
  .faq {
    gap: 45px;
  }
  .offer-body {
    gap: 40px;
  }
  .project-step {
    grid-template-columns: 60px 1fr 1fr;
    gap: 30px;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 800px) {
  .header {
    height: 88px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 11px;
  }
  .brand img {
    width: 68px;
  }
  .header-actions {
    gap: 15px;
  }
  .section-shell,
  .itu-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 44px;
  }
  .inner-opening {
    padding-top: 130px;
    min-height: 0;
  }
  .breadcrumb {
    margin-bottom: 45px;
  }
  .inner-intro {
    grid-template-columns: 1fr;
  }
  .inner-copy {
    max-width: 580px;
  }
  .inner-copy h1 {
    font-size: 76px;
  }
  .inner-art {
    position: absolute;
    width: 40%;
    right: -3%;
    top: 0;
    opacity: 0.35;
    z-index: -1;
  }
  .inner-art .art-word {
    display: none;
  }
  .inner-copy > p {
    max-width: 430px;
  }
  .service-stats {
    margin-top: 50px;
    gap: 25px;
  }
  .service-local-nav {
    gap: 25px;
    justify-content: flex-start;
    overflow: auto;
    scrollbar-width: none;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .team-grid {
    gap: 25px;
  }
  .team-grid h3 {
    font-size: 24px;
  }
  .team-grid p {
    font-size: 13px;
  }
  .assurance-grid {
    gap: 35px;
  }
  .assurance-grid article {
    grid-template-columns: 25px 1fr;
    gap: 15px;
  }
  .assurance-grid h3 {
    font-size: 25px;
  }
  .company-layout {
    display: block;
  }
  .company-aside {
    position: static;
    margin-bottom: 55px;
  }
  .company-aside > p {
    max-width: 600px;
  }
  .company-aside .button {
    display: inline-flex;
    margin-right: 10px;
  }
  .company-aside h2 {
    font-size: 42px;
  }
  .about-opening h1 {
    font-size: 8.5vw;
  }
  .about-introduction {
    gap: 40px;
  }
  .about-introduction > p {
    font-size: 17px;
  }
  .contact {
    gap: 40px;
    padding-top: 60px;
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .contact-title h2 {
    font-size: 9vw;
  }
  .field input {
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-contact {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 25px;
  }
  .footer-contact .eyebrow {
    grid-row: 1/3;
    margin: 0;
  }
  .footer-contact a:first-of-type {
    grid-column: 2/-1;
  }
  .project-step {
    grid-template-columns: 45px 1fr 1fr;
    gap: 25px;
  }
  .project-step h3 {
    font-size: 24px;
  }
  .project-step > p {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  :root {
    --pad: 24px;
  }
  body {
    font-size: 14px;
  }
  html {
    scroll-padding-top: 80px;
  }
  section[id],
  article[id] {
    scroll-margin-top: 85px;
  }
  .header {
    height: 84px;
    gap: 15px;
  }
  .brand img {
    width: 66px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 22px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .site-menu {
    inset: 10px 10px 10px auto;
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    padding: 23px;
  }
  .site-menu h2 {
    font-size: 40px;
    margin: 30px 0 25px;
  }
  .navigation a {
    font-size: 26px;
    padding: 16px 0;
  }
  .menu-directions a {
    font-size: 10px;
    padding: 9px 11px;
  }
  .menu-email {
    font-size: 14px;
  }
  .section-shell,
  .itu-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .chapter-label {
    font-size: 9px;
    gap: 15px;
  }
  .chapter-label > span::after {
    width: 20px;
    margin-left: 12px;
  }
  .chapter-heading,
  .section-heading {
    display: block;
  }
  .chapter-heading > .chapter-label {
    margin-bottom: 28px;
  }
  .chapter-heading h2 {
    font-size: clamp(40px, 10vw, 58px);
  }
  .chapter-heading > p {
    font-size: 13px;
    margin-top: 22px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading > .eyebrow {
    display: block;
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading p {
    font-size: 13px;
    margin-top: 22px;
  }
  .button {
    min-height: 52px;
    font-size: 12px;
  }
  .inner-opening {
    padding: 125px var(--pad) 45px;
  }
  .breadcrumb {
    font-size: 9px;
    gap: 10px;
    margin-bottom: 42px;
  }
  .inner-copy h1 {
    font-size: clamp(51px, 12vw, 72px);
    margin: 20px 0;
  }
  .inner-copy > p {
    font-size: 14px;
    max-width: 400px;
  }
  .inner-copy .tags {
    margin: 23px 0 30px;
    gap: 6px;
  }
  .inner-art {
    width: 70%;
    top: -50px;
    right: -10%;
    opacity: 0.22;
  }
  .inner-art .silk {
    top: 0;
  }
  .service-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 45px;
  }
  .service-stats > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }
  .service-stats dt {
    font-size: 9px;
  }
  .service-stats dd {
    font-size: 12px;
    max-width: none;
  }
  .service-local-nav {
    position: relative !important;
    top: auto;
    flex-wrap: wrap;
    overflow: visible;
    gap: 0;
    padding: 12px var(--pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 10px;
    row-gap: 5px;
  }
  .service-local-nav a {
    padding: 9px 0;
  }
  .offer > summary {
    grid-template-columns: 1fr 30px;
    gap: 12px;
    padding: 22px 0;
  }
  .offer summary > .eyebrow {
    grid-column: 1/-1;
    font-size: 9px;
  }
  .offer summary h3 {
    font-size: 25px;
  }
  .offer .disclosure {
    width: 30px;
    height: 30px;
  }
  .offer-body {
    display: block;
    padding: 25px 0 30px;
  }
  .offer-intro p {
    font-size: 13px;
    max-width: none;
  }
  .offer-intro img {
    display: none;
  }
  .offer-intro .eyebrow {
    font-size: 9px;
    margin-top: 17px;
  }
  .offer-children {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .offer-children h4 {
    font-size: 14px;
  }
  .offer-children p {
    font-size: 12px;
  }
  .benefit-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .benefit-list article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 14px;
  }
  .benefit-list article > .eyebrow {
    font-size: 0;
    grid-row: 1/3;
  }
  .benefit-list article > .eyebrow::first-letter {
    font-size: 12px;
  }
  .benefit-list h3 {
    font-size: 27px;
    margin: 0;
    line-height: 1.2;
  }
  .benefit-list p {
    grid-column: 2;
    font-size: 13px;
    max-width: none;
  }
  .team-grid {
    display: block;
  }
  .team-grid article {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    padding: 25px 0;
  }
  .role-no {
    font-size: 48px;
    margin: 0;
    grid-row: 1/4;
  }
  .team-grid .eyebrow {
    font-size: 9px;
  }
  .team-grid h3 {
    font-size: 28px;
    margin: 0;
  }
  .team-grid p {
    grid-column: 2;
    font-size: 13px;
  }
  .principle {
    grid-column: 2;
    font-size: 10px;
    margin-top: 0;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .assurance-grid h3 {
    font-size: 27px;
  }
  .assurance-grid p {
    font-size: 13px;
    margin-top: 0;
  }
  .project-step {
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding: 26px 0;
  }
  .project-step > .step-no {
    font-size: 33px;
    grid-row: 1/3;
  }
  .project-step h3 {
    font-size: 26px;
    margin-top: 8px;
  }
  .project-step > p {
    grid-column: 2;
    font-size: 13px;
  }
  .faq {
    display: block;
  }
  .faq .section-heading {
    margin-bottom: 35px;
  }
  .faq-list h3 {
    font-size: 13px;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .next-directions {
    padding-bottom: 65px;
  }
  .next-directions > div {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .next-directions a {
    font-size: 35px;
  }
  .about-opening h1 {
    font-size: clamp(49px, 11.8vw, 70px);
  }
  .about-opening > .silk {
    top: 80px;
    right: -110px;
    max-width: none;
    width: 400px;
    opacity: 0.25;
  }
  .about-introduction {
    display: block;
    margin-top: 35px;
  }
  .about-introduction > p {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .about-introduction > div {
    font-size: 13px;
    gap: 22px;
  }
  .company-aside h2 {
    font-size: 40px;
  }
  .company-aside .button {
    font-size: 10px;
    padding: 12px 16px;
    min-height: 48px;
  }
  .company-block h3 {
    font-size: 29px;
  }
  .requisites > div {
    grid-template-columns: 1fr 30px;
    gap: 6px;
  }
  .requisites dt {
    grid-column: 1;
  }
  .requisites dd {
    grid-column: 1;
    font-size: 12px;
  }
  .copy-value {
    grid-column: 2;
    grid-row: span 2;
    margin-top: -15px;
  }
  .info-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .info-list dd {
    font-size: 12px;
  }
  .contact-options {
    max-width: none;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 55px;
    margin: 35px var(--pad) 70px;
  }
  .contact-title h2 {
    font-size: clamp(58px, 14vw, 80px);
    margin: 26px 0 26px;
  }
  .field input {
    font-size: 25px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-signature {
    margin-bottom: 38px;
  }
  .footer-signature > .eyebrow {
    font-size: 7px;
    letter-spacing: 0.09em;
  }
  .unity-trace i {
    width: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand .brand img {
    width: 84px;
  }
  .footer-brand p {
    margin: 15px 0 8px;
  }
  .footer-grid .eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }
  .footer-contact {
    display: flex;
    gap: 9px;
  }
  .footer-bottom {
    margin-top: 35px;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 8px;
  }
  .footer-bottom .back-top {
    margin-left: auto;
  }
  .error-page {
    padding-top: 150px;
  }
  .error-page h2 {
    font-size: 32px;
  }
  .error-page p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Grid tracks must be allowed to shrink to the actual reading width. */
.inner-intro > *,
.benefit-list > *,
.benefit-list article > *,
.assurance-grid > *,
.assurance-grid article > *,
.project-step > *,
.team-grid > *,
.team-grid article > *,
.section-heading > * {
  min-width: 0;
}
.offer summary {
  padding-right: 8px;
}
.project-step h3,
.assurance-grid h3,
.benefit-list h3,
.team-grid h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 600px) {
  .inner-copy h1 {
    font-size: clamp(34px, 10.5vw, 63px);
  }
  .about-opening h1 {
    font-size: clamp(39px, 10.7vw, 64px);
  }
  .benefit-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefit-list article > .eyebrow {
    font-size: 9px;
    grid-row: auto;
  }
  .benefit-list article > .eyebrow::first-letter {
    font-size: inherit;
  }
  .benefit-list h3 {
    font-size: 25px;
  }
  .benefit-list p {
    grid-column: auto;
  }
  .assurance-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .assurance-grid article > .eyebrow {
    grid-row: auto;
    margin: 0;
    font-size: 9px;
  }
  .assurance-grid p {
    grid-column: auto;
  }
  .assurance-grid h3 {
    font-size: 25px;
  }
  .project-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }
  .project-step h3 {
    font-size: 23px;
  }
  .team-grid article {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
  }
  .role-no {
    font-size: 37px;
  }
  .team-grid h3 {
    font-size: 24px;
  }
  .company-block summary h3 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .project-step {
    grid-template-columns: 1fr;
  }
  .project-step > .step-no {
    grid-row: auto;
    font-size: 30px;
  }
  .project-step > p {
    grid-column: auto;
  }
  .team-grid article {
    grid-template-columns: 1fr;
  }
  .role-no {
    grid-row: auto;
    font-size: 32px;
  }
  .team-grid p,
  .principle {
    grid-column: auto;
  }
  .section-heading h2 {
    font-size: 34px;
  }
}
.inner-copy h1 {
  font-size: clamp(50px, 5.4vw, 80px);
}
@media (min-width: 601px) and (max-width: 800px) {
  .inner-copy h1 {
    font-size: clamp(55px, 8.9vw, 76px);
  }
  .section-heading {
    display: block;
  }
  .section-heading > .eyebrow {
    display: block;
  }
  .section-heading p {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .inner-copy h1 {
    font-size: clamp(34px, 10.5vw, 63px);
  }
  .offer summary h3 {
    font-size: clamp(21px, 5.8vw, 25px);
  }
}
.inner-art {
  container-type: inline-size;
}
.inner-art .art-word {
  font-size: 28cqw;
}
.theme-development .inner-art .art-word {
  font-size: 19cqw;
}
.theme-media .inner-art .art-word {
  font-size: 22cqw;
}
@media (max-width: 600px) {
  .site-menu h2 {
    font-size: clamp(30px, 9.5vw, 40px);
  }
  .navigation a {
    grid-template-columns: 22px minmax(0, 1fr) 20px;
    gap: 8px;
  }
  .silk g > path:nth-child(2n) {
    display: none;
  }
}
@media (max-width: 360px) {
  .navigation a {
    font-size: 22px;
  }
  .site-menu {
    padding: 22px 20px;
  }
}
