:root {
  color-scheme: dark;
  --white: #f5f5f2;
  --line: rgba(242, 243, 240, 0.22);
  --muted: rgba(245, 245, 242, 0.76);
  --container-width: min(1320px, 84vw);
}

* {
  box-sizing: border-box;
}

.container {
  width: var(--container-width);
  margin-inline: auto;
}

.section-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #171918;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__shade,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 12, 12, 0.32) 0%, rgba(10, 12, 12, 0.12) 55%, rgba(10, 12, 12, 0.28) 100%),
    rgba(13, 16, 17, 0.28);
}

.hero__grid {
  z-index: -1;
  left: 3.9vw;
  right: 3.9vw;
  width: auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(20% - 1px),
    var(--line) calc(20% - 1px),
    var(--line) 20%
  );
  animation: grid-breathe 7s ease-in-out infinite;
}

.hero__grid::before,
.hero__grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__grid::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(20% - 1px),
      rgba(255, 255, 255, 0.34) calc(20% - 1px),
      rgba(255, 255, 255, 0.34) 20%
    ),
    linear-gradient(180deg, transparent 0 38%, rgba(255, 255, 255, 0.15) 50%, transparent 62%);
  background-blend-mode: multiply;
  transform: translateY(-62%);
  animation: grid-light-pass 9s cubic-bezier(0.55, 0, 0.45, 1) infinite;
}

.hero__grid::after {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  opacity: 0;
  animation: grid-scan 11s ease-in-out infinite 1.8s;
}

.hero__topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 32px 4vw;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: 0.24em;
}

.brand svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero__nav {
  display: flex;
  gap: clamp(28px, 3.5vw, 62px);
}

.hero__nav a,
.brand,
.hero__cta,
.hero__scroll {
  transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero__nav a:hover,
.brand:hover,
.hero__scroll:hover {
  opacity: 0.68;
}

.availability {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(245, 245, 242, 0.8);
  white-space: nowrap;
}

.availability__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 245, 242, 0.12);
}

.hero__content {
  position: absolute;
  top: 49%;
  left: 50%;
  width: min(1040px, 72vw);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
  letter-spacing: 0.25em;
}

.hero__rule {
  display: block;
  width: 110px;
  height: 2px;
  margin: 25px auto 49px;
  background: var(--white);
}

h1 {
  margin: 0 auto;
  max-width: 920px;
  color: #fff;
  font-size: clamp(42px, 3.55vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.008em;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.2);
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

@keyframes grid-breathe {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

@keyframes grid-light-pass {
  0%, 12% { transform: translateY(-62%); opacity: 0; }
  22% { opacity: 0.55; }
  74% { opacity: 0.55; }
  88%, 100% { transform: translateY(62%); opacity: 0; }
}

@keyframes grid-scan {
  0%, 16% { transform: translateY(0); opacity: 0; }
  24% { opacity: 0.42; }
  76% { opacity: 0.42; }
  88%, 100% { transform: translateY(100svh); opacity: 0; }
}

@keyframes cta-glint {
  0%, 58% { transform: translateX(-145%) skewX(-18deg); }
  82%, 100% { transform: translateX(245%) skewX(-18deg); }
}

.hero__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  min-height: 64px;
  margin-top: 56px;
  padding: 0 30px;
  background: #f5f5f3;
  color: #171918;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero__cta span {
  position: relative;
  z-index: 2;
}

.hero__cta::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -40% auto -40% -25%;
  width: 22%;
  background: rgba(255, 255, 255, 0.78);
  filter: blur(5px);
  animation: cta-glint 4.8s cubic-bezier(0.55, 0, 0.25, 1) infinite;
}

.hero__cta::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid transparent;
  transition: inset 220ms ease, border-color 220ms ease;
  pointer-events: none;
}

.hero__cta:hover {
  background: #d7d8d4;
}

.hero__cta:hover::after {
  inset: 6px;
  border-color: rgba(23, 25, 24, 0.38);
}

.hero__aside {
  position: absolute;
  top: 41%;
  right: 7vw;
  margin: 0;
  color: rgba(12, 14, 14, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

.hero__aside::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin-top: 24px;
  background: currentColor;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero__scroll svg {
  width: 12px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.studio {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #eeefec;
  color: #1b1d1c;
}

.studio__grid {
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(20% - 1px),
    rgba(39, 43, 41, 0.075) calc(20% - 1px),
    rgba(39, 43, 41, 0.075) 20%
  );
}

.studio__grid::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 10%;
  width: 180px;
  height: 150px;
  opacity: 0.45;
  background-image: radial-gradient(#8c918e 1px, transparent 1px);
  background-size: 16px 16px;
}

.studio__inner {
  position: relative;
  z-index: 1;
  min-height: 850px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  padding: 100px 0;
}

.studio__copy {
  grid-column: 1 / span 6;
  max-width: 610px;
}

.studio__kicker {
  margin: 0 0 22px;
  color: #666c68;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.studio h2 {
  margin: 0;
  font-size: clamp(39px, 3.25vw, 61px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.studio h2 span {
  color: #777c79;
  font-weight: 500;
}

.studio__rule {
  width: 92px;
  height: 2px;
  margin: 34px 0 44px;
  background: #353a37;
}

.studio__copy > p:not(.studio__kicker) {
  max-width: 570px;
  margin: 0 0 22px;
  color: #666b68;
  font-size: 16px;
  line-height: 1.82;
}

.studio__copy strong {
  color: #202321;
  font-weight: 650;
}

.studio__link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 26px;
  border: 1px solid #3c413e;
  color: #202321;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: color 260ms ease;
}

.studio__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #252a27;
  transform: translateX(-102%);
  transition: transform 320ms cubic-bezier(0.75, 0, 0.25, 1);
}

.studio__link span,
.studio__link svg {
  position: relative;
  z-index: 1;
}

.studio__link svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  transition: transform 260ms ease;
}

.studio__link:hover {
  color: #fff;
}

.studio__link:hover::before {
  transform: translateX(0);
}

.studio__link:hover svg {
  transform: translateX(5px);
}

.studio__visual {
  position: relative;
  grid-column: 8 / -1;
  min-height: 560px;
  margin: 0;
}

.studio__image-wrap {
  position: absolute;
  top: 42px;
  right: 0;
  width: 88%;
  height: 470px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(23, 27, 25, 0.14);
}

.studio__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 36, 34, 0.02), rgba(32, 36, 34, 0.25));
}

.studio__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.studio__card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 285px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 31px;
  border: 8px solid #313532;
  background: rgba(239, 240, 237, 0.96);
  box-shadow: 0 18px 38px rgba(20, 23, 21, 0.14);
}

.studio__card strong {
  display: block;
  margin-bottom: 27px;
  font-size: 92px;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.studio__card span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.16em;
}

.process {
  --process-line: rgba(36, 39, 37, 0.14);
  position: relative;
  overflow: hidden;
  background: #e9e9e5;
  color: #1d1f1e;
}

.process__grid {
  background-image:
    linear-gradient(var(--process-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--process-line) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
}

.process__inner {
  position: relative;
  z-index: 1;
}

.process__header {
  min-height: 280px;
  display: grid;
  grid-template-columns: 200px minmax(420px, 1fr) minmax(280px, 390px);
  align-items: start;
  gap: 24px;
  padding-top: 70px;
  border-bottom: 1px solid rgba(36, 39, 37, 0.28);
}

.process__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 0;
  color: #6b706c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process__kicker span {
  width: 38px;
  height: 1px;
  background: #6b706c;
}

.process h2 {
  margin: 0;
  font-size: clamp(54px, 5vw, 86px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.process__lead {
  margin: 10px 2vw 0 0;
  color: #747975;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.process__comparison {
  padding: 72px 0 80px;
}

.process-slider {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 39, 37, 0.55);
  background: #1b1d1c;
}

.process-slider__viewport {
  position: relative;
  height: clamp(420px, 35vw, 570px);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.process-slider__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.process-slider__image--after {
  filter: saturate(0.68) contrast(0.98);
}

.process-slider__image--before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  filter: grayscale(1) contrast(0.96);
}

.process-slider__labels {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 17px 22px;
  color: #f2f2ee;
  background: linear-gradient(180deg, rgba(18, 20, 19, 0.78), transparent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-slider__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: #f4f4ef;
  pointer-events: none;
}

.process-slider__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(36, 39, 37, 0.8);
  border-radius: 50%;
  background: #f4f4ef;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.process-slider__divider svg {
  width: 28px;
  fill: none;
  stroke: #242725;
  stroke-width: 1.4;
}

.process-slider__range {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.process-slider figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 25px 28px 27px;
  color: rgba(242, 242, 238, 0.7);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.process-slider figcaption span:last-child {
  text-align: right;
}

.process__stages {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  border-block: 1px solid rgba(36, 39, 37, 0.4);
}

.process__stages li {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-right: 1px solid rgba(36, 39, 37, 0.24);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process__stages li:last-child {
  border-right: 0;
}

.process__stages span {
  color: #858a86;
  font-size: 8px;
}

.services {
  --services-line: rgba(35, 39, 37, 0.16);
  position: relative;
  overflow: hidden;
  padding-bottom: 88px;
  background: #f1f1ee;
  color: #1d201e;
}

.services__grid {
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(16.666% - 1px),
    rgba(35, 39, 37, 0.065) calc(16.666% - 1px),
    rgba(35, 39, 37, 0.065) 16.666%
  );
}

.services__inner {
  position: relative;
  z-index: 1;
}

.services__header {
  min-height: 315px;
  display: grid;
  grid-template-columns: 64px 160px minmax(430px, 1fr) minmax(280px, 390px);
  align-items: center;
  border-bottom: 1px solid rgba(35, 39, 37, 0.3);
}

.services__number {
  align-self: start;
  padding-top: 28px;
  color: #777b78;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.services__kicker {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 101px 0 0;
  color: #686d69;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.services__kicker span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.services h2 {
  margin: 0;
  font-size: clamp(48px, 4.35vw, 74px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.services__lead {
  align-self: start;
  max-width: 360px;
  margin: 99px 2vw 0 0;
  color: #747975;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.services__catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--services-line);
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 34px 32px;
  border-right: 1px solid var(--services-line);
  border-bottom: 1px solid var(--services-line);
  background: rgba(244, 244, 241, 0.9);
  transition: color 360ms ease;
}

.service-card:nth-child(-n + 3) {
  border-top: 1px solid var(--services-line);
}

.service-card__media,
.service-card::after {
  position: absolute;
  inset: 0;
}

.service-card__media {
  z-index: -2;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 620ms cubic-bezier(0.72, 0, 0.2, 1);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.1);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card--design img { object-position: 58% center; }
.service-card--build img { object-position: 58% center; }
.service-card--engineering img { object-position: 44% center; }
.service-card--furniture img { object-position: 83% center; }
.service-card--supply img { object-position: 25% center; }
.service-card--approval img { object-position: center; }

.service-card::after {
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 18, 0.56), rgba(17, 20, 18, 0.86));
  opacity: 0;
  transition: opacity 380ms ease;
}

.service-card__index {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #7a7f7b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  transition: color 360ms ease;
}

.service-card__index::after {
  content: "";
  width: 35px;
  height: 1px;
  background: currentColor;
}

.service-card h3 {
  margin: 57px 0 18px;
  font-size: clamp(25px, 2vw, 33px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.service-card > p {
  max-width: 340px;
  margin: 0;
  color: #666b67;
  font-size: 14px;
  line-height: 1.55;
  transition: color 360ms ease;
}

.service-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: auto;
  padding-top: 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.service-card a svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  transition: transform 260ms ease;
}

.service-card:hover,
.service-card:focus-within {
  color: #f4f4ef;
}

.service-card:hover .service-card__media,
.service-card:focus-within .service-card__media {
  clip-path: inset(0);
}

.service-card:hover .service-card__media img,
.service-card:focus-within .service-card__media img {
  transform: scale(1);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:hover .service-card__index,
.service-card:hover > p,
.service-card:focus-within .service-card__index,
.service-card:focus-within > p {
  color: rgba(244, 244, 239, 0.76);
}

.service-card a:hover svg,
.service-card a:focus-visible svg {
  transform: translateX(6px);
}

.service-card a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 7px;
}

.services__note {
  margin-top: 36px;
  color: #666b67;
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .hero__topbar {
    grid-template-columns: 1fr 1fr;
  }

  .hero__nav,
  .hero__aside {
    display: none;
  }

  .hero__content {
    width: min(880px, 84vw);
  }

  .studio__inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .studio__copy {
    grid-column: 1 / span 5;
  }

  .studio__visual {
    grid-column: 6 / -1;
  }

  .process__header {
    grid-template-columns: 170px 1fr 260px;
  }

  .process-slider__viewport {
    height: 460px;
  }

  .services__header {
    grid-template-columns: 44px 130px 1fr 280px;
  }

  .service-card {
    min-height: 310px;
    padding-inline: 28px;
  }
}

@media (max-width: 900px) {
  .hero__title-line {
    display: block;
    white-space: normal;
  }

  .hero h1 {
    text-wrap: wrap;
  }

  .studio__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 64px;
    padding-block: 92px;
  }

  .studio__copy {
    max-width: 650px;
  }

  .studio__visual {
    width: min(620px, 100%);
    min-height: 520px;
    margin-left: auto;
  }

  .process__header {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 54px 42px;
  }

  .process__kicker {
    margin: 0 0 28px;
  }

  .process h2 {
    grid-column: 1;
  }

  .process__lead {
    grid-column: 1;
    margin: 32px 0 0;
    max-width: 430px;
  }

  .process__comparison {
    padding: 64px 42px;
  }

  .process-slider__viewport {
    height: 440px;
  }

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

  .process__stages li {
    border-bottom: 1px solid rgba(36, 39, 37, 0.24);
  }

  .services__header {
    min-height: 340px;
    grid-template-columns: 42px 1fr;
    align-content: center;
    padding-block: 54px;
  }

  .services__number {
    grid-row: 1 / span 3;
  }

  .services__kicker {
    margin: 0 0 28px;
  }

  .services h2,
  .services__lead {
    grid-column: 2;
  }

  .services__lead {
    margin: 32px 0 0;
  }

  .services__catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(3) {
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__media img {
    object-position: 43% center;
  }

  .hero__grid {
    left: 20px;
    right: 20px;
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - 1px),
      var(--line) calc(50% - 1px),
      var(--line) 50%
    );
  }

  .hero__topbar {
    padding: 22px 20px;
  }

  .brand {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .brand svg {
    width: 20px;
  }

  .availability {
    min-height: 36px;
    padding: 0 10px;
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .availability__dot {
    width: 5px;
    height: 5px;
  }

  .hero__content {
    top: 48%;
    width: calc(100% - 40px);
  }

  .hero__eyebrow {
    max-width: 290px;
    margin-inline: auto;
    line-height: 1.7;
    letter-spacing: 0.17em;
  }

  .hero__rule {
    width: 72px;
    margin: 19px auto 33px;
  }

  h1 {
    max-width: 480px;
    font-size: clamp(24px, 6.2vw, 31px);
    line-height: 0.96;
    letter-spacing: -0.012em;
  }

  .hero__title-line {
    display: block;
    white-space: normal;
  }

  .hero__cta {
    min-width: 242px;
    min-height: 56px;
    margin-top: 40px;
    font-size: 10px;
  }

  .hero__scroll {
    bottom: 18px;
    font-size: 8px;
  }

  .studio,
  .studio__inner {
    min-height: auto;
  }

  .studio__grid {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - 1px),
      rgba(39, 43, 41, 0.075) calc(50% - 1px),
      rgba(39, 43, 41, 0.075) 50%
    );
  }

  .studio__grid::after {
    width: 110px;
    height: 110px;
    right: -12px;
    top: 38px;
  }

  .studio__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 58px;
    padding: 80px 0 72px;
  }

  .studio__copy {
    max-width: none;
  }

  .studio__kicker {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .studio h2 {
    font-size: clamp(34px, 10.4vw, 48px);
  }

  .studio h2 br {
    display: none;
  }

  .studio__rule {
    margin: 28px 0 32px;
  }

  .studio__copy > p:not(.studio__kicker) {
    font-size: 14px;
    line-height: 1.72;
  }

  .studio__link {
    width: 100%;
    justify-content: space-between;
  }

  .studio__visual {
    min-height: 430px;
  }

  .studio__image-wrap {
    top: 0;
    width: calc(100% - 32px);
    height: 335px;
  }

  .studio__card {
    width: 205px;
    min-height: 190px;
    padding: 21px;
    border-width: 6px;
  }

  .studio__card strong {
    margin-bottom: 20px;
    font-size: 68px;
  }

  .studio__card span {
    font-size: 8px;
  }

  .process__header {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 46px 24px;
  }

  .process__kicker {
    font-size: 8px;
  }

  .process h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .process__lead {
    font-size: 13px;
  }

  .process__comparison {
    padding: 48px 0;
  }

  .process-slider__viewport {
    height: 300px;
  }

  .process-slider__labels {
    padding: 14px;
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .process-slider__divider span {
    width: 44px;
    height: 44px;
  }

  .process-slider figcaption {
    gap: 20px;
    padding: 20px 14px 22px;
    font-size: 11px;
  }

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

  .process__stages li:nth-child(even) {
    border-right: 0;
  }

  .services {
    padding-bottom: 58px;
  }

  .services__grid {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - 1px),
      rgba(35, 39, 37, 0.065) calc(50% - 1px),
      rgba(35, 39, 37, 0.065) 50%
    );
  }

  .services__header {
    min-height: 320px;
    grid-template-columns: 24px 1fr;
    padding-block: 46px;
  }

  .services__number {
    padding-top: 3px;
    font-size: 8px;
  }

  .services__kicker {
    font-size: 8px;
  }

  .services h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .services__lead {
    font-size: 13px;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    min-height: 290px;
    padding: 25px 24px 27px;
    border-top: 0;
  }

  .service-card:first-child {
    border-top: 1px solid var(--services-line);
  }

  .service-card h3 {
    margin-top: 43px;
    font-size: 28px;
  }

  .services__note {
    margin-top: 28px;
    padding-right: 20px;
    font-size: 11px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #f1f0eb;
  background: #1d1e1b;
  border-top: 1px solid #4b4c48;
}

.site-footer__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(to right, #8a8b86 1px, transparent 1px),
    linear-gradient(to bottom, #8a8b86 1px, transparent 1px);
  background-size: 64px 64px;
}

.site-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  align-items: start;
  min-height: 230px;
  padding-top: 52px;
  padding-bottom: 26px;
  border-right: 1px solid rgba(241, 240, 235, .22);
  border-left: 1px solid rgba(241, 240, 235, .22);
}

.site-footer__brand {
  grid-column: 1 / 4;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.site-footer__brand span {
  font-weight: 400;
}

.site-footer__scope {
  grid-column: 5 / 9;
  margin: 2px 0 0;
  color: #b8b9b4;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer__action {
  grid-column: 10 / 13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  color: inherit;
  border-bottom: 1px solid #747570;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__action svg {
  width: 28px;
  transition: transform .25s ease;
}

.site-footer__action:hover svg,
.site-footer__action:focus-visible svg {
  transform: translateX(5px);
}

.site-footer__copy {
  grid-column: 1 / 13;
  align-self: end;
  color: #92938e;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-height: 300px;
    padding: 38px 22px 22px;
  }

  .site-footer__action {
    width: 100%;
  }

  .site-footer__copy {
    margin-top: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__action svg {
    transition: none;
  }
}

/* Technical brief and completed works */
.configurator,
.works {
  --paper: #fff;
  --ink: #1c1e1d;
  --paper-line: rgba(28, 30, 29, 0.18);
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.configurator__grid,
.works__grid {
  background-image:
    linear-gradient(rgba(28, 30, 29, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 30, 29, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.configurator__inner,
.works__inner {
  position: relative;
  z-index: 1;
}

.configurator__inner {
  padding: 96px 0 0;
}

.works__inner {
  padding: 84px 0 96px;
}

.configurator__header,
.works__header {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 300px;
  min-height: 250px;
  border: 1px solid var(--paper-line);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
}

.configurator__number,
.works__number {
  padding: 28px 0 0 20px;
  border-right: 1px solid var(--paper-line);
  font: 700 10px/1 monospace;
  letter-spacing: 0.14em;
}

.configurator__heading,
.works__heading {
  align-self: center;
  padding: 34px 7%;
}

.configurator__kicker,
.works__kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  font: 700 10px/1.2 monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.configurator__kicker::before,
.works__kicker::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.configurator h2,
.works h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.configurator__lead,
.works__lead {
  align-self: center;
  margin: 0;
  padding: 34px 30px;
  border-left: 1px solid var(--paper-line);
  color: #696c69;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.configurator__shell {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(310px, 0.95fr);
  border: 1px solid var(--ink);
  background: #fff;
}

.configurator__controls {
  min-width: 0;
}

.config-step {
  min-width: 0;
  margin: 0;
  padding: 34px 5.5%;
  border: 0;
  border-bottom: 1px solid var(--paper-line);
}

.config-step:last-child {
  border-bottom: 0;
}

.config-step legend {
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
  font: 700 11px/1.2 monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.config-step__area {
  display: block;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.config-range {
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: linear-gradient(to right, var(--ink) 0 var(--range-progress, 18.62%), #b7b8b3 var(--range-progress, 18.62%) 100%) center / 100% 1px no-repeat;
  cursor: ew-resize;
}

.config-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.config-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.config-range__limits {
  display: flex;
  justify-content: space-between;
  color: #626561;
  font: 10px/1 monospace;
}

.config-options {
  display: grid;
}

.config-options--type,
.config-options--systems {
  grid-template-columns: repeat(3, 1fr);
}

.config-option,
.system-option {
  position: relative;
  min-width: 0;
}

.config-option input,
.system-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.config-option__body {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 18px;
  border: 1px solid #afb0ac;
  border-right: 0;
  transition: color 220ms ease, background 220ms ease;
  cursor: pointer;
}

.config-option:last-child .config-option__body {
  border-right: 1px solid #afb0ac;
}

.config-option__body svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.config-option__body span {
  font-size: 12px;
  font-weight: 600;
}

.config-option input:checked + .config-option__body {
  color: #f5f5f1;
  background: var(--ink);
}

.config-option input:focus-visible + .config-option__body,
.system-option input:focus-visible + .system-option__body {
  outline: 2px solid #6a6d69;
  outline-offset: 3px;
}

.system-option__body {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  gap: 13px;
  padding: 14px 12px;
  border: 1px solid #afb0ac;
  border-right: 0;
  font-size: 11px;
  line-height: 1.35;
  cursor: pointer;
}

.system-option:last-child .system-option__body {
  border-right: 1px solid #afb0ac;
}

.system-option__body::before {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  content: "";
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.system-option input:checked + .system-option__body::before {
  background: var(--ink);
}

.configurator__result {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 35px 32px 32px;
  color: #f4f4ef;
  background: var(--ink);
}

.result-code {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: #9b9d99;
  font: 10px/1.2 monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-metrics {
  display: grid;
  gap: 36px;
  margin-top: 95px;
}

.result-metrics p {
  margin: 0;
}

.result-metrics span {
  display: block;
  margin-bottom: 8px;
  color: #a9aba7;
  font: 10px/1.2 monospace;
  text-transform: uppercase;
}

.result-value {
  display: block;
}

.result-value output {
  display: block;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.result-note {
  margin: auto 0 18px;
  color: #aaaCa8;
  font-size: 11px;
  line-height: 1.5;
}

.result-action {
  display: grid;
  gap: 18px;
  margin-top: auto;
}

#open-lead-dialog,
.lead-form__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 58px;
  border: 1px solid #deded9;
  color: var(--ink);
  background: #deded9;
  font: 700 11px/1 monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

#open-lead-dialog {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

#open-lead-dialog svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

#open-lead-dialog::before,
.lead-form__submit::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateX(-102%);
  transition: transform 280ms ease;
}

#open-lead-dialog:hover::before,
.lead-form__submit:hover::before {
  transform: translateX(0);
}

#open-lead-dialog span,
.lead-form__submit span {
  position: relative;
  z-index: 1;
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--paper-line);
  background: #fff;
}

.work-card {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--paper-line);
}

.work-card figure {
  margin: 0;
  overflow: hidden;
}

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

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(.95);
  transition: filter 450ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.work-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.015);
}

.work-card__media {
  overflow: hidden;
}

.work-card figcaption {
  padding-top: 20px;
}

.work-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid var(--paper-line);
  color: #666965;
  font: 10px/1 monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid #303331;
  color: #1c1e1d;
  background: #f3f2ed;
}

.lead-dialog::backdrop {
  background: rgba(12, 14, 13, .78);
  backdrop-filter: blur(4px);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 48px;
}

.lead-form__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid #777a76;
  font-size: 20px;
  background: transparent;
  cursor: pointer;
}

.lead-form__kicker {
  margin: 0;
  font: 700 10px/1 monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead-form h2 {
  margin: 4px 0 12px;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.045em;
}

.lead-form__summary {
  margin: 0 0 8px;
  padding: 14px;
  border: 1px solid #b7b8b3;
  font: 11px/1.5 monospace;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font: 700 10px/1 monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #777a76;
  border-radius: 0;
  color: #1c1e1d;
  background: transparent;
  font: 15px/1 sans-serif;
}

.lead-form input[aria-invalid="true"] {
  border-color: #9c2f27;
}

.field-error {
  min-height: 13px;
  color: #9c2f27;
  font: 10px/1.3 monospace;
  text-transform: none;
}

.lead-form__success {
  margin: 0;
  padding: 14px;
  border: 1px solid #497054;
  color: #315a3c;
  font-size: 13px;
}

@media (max-width: 900px) {
  .configurator__inner {
    padding: 72px 0 0;
  }

  .works__inner {
    padding: 64px 0 72px;
  }

  .configurator__header,
  .works__header {
    grid-template-columns: 48px 1fr;
  }

  .configurator__lead,
  .works__lead {
    grid-column: 2;
    padding-top: 0;
    border-left: 0;
  }

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

  .configurator__result {
    min-height: 500px;
  }

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

  .work-card:nth-child(2) {
    border-right: 0;
  }

  .work-card:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--paper-line);
  }

  .work-card:last-child img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .configurator__inner {
    padding: 48px 0 0;
  }

  .works__inner {
    padding: 48px 0;
  }

  .configurator__header,
  .works__header {
    min-height: 270px;
  }

  .configurator__heading,
  .works__heading {
    padding: 30px 22px 18px;
  }

  .configurator h2,
  .works h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .configurator__lead,
  .works__lead {
    padding: 0 22px 30px;
  }

  .config-step {
    padding: 30px 22px;
  }

  .config-options--type,
  .config-options--systems,
  .works__list {
    grid-template-columns: 1fr;
  }

  .config-option__body,
  .system-option__body {
    border-right: 1px solid #afb0ac;
    border-bottom: 0;
  }

  .config-option:last-child .config-option__body,
  .system-option:last-child .system-option__body {
    border-bottom: 1px solid #afb0ac;
  }

  .configurator__result {
    min-height: 500px;
    padding: 30px 22px 22px;
  }

  .result-metrics {
    margin-top: 65px;
  }

  .work-card,
  .work-card:nth-child(2),
  .work-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .work-card:last-child {
    border-bottom: 0;
  }

  .work-card:last-child img {
    aspect-ratio: 3 / 4;
  }

  .lead-form {
    padding: 44px 22px 24px;
  }

  .lead-form h2 {
    font-size: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-card img,
  #open-lead-dialog::before,
  .lead-form__submit::before {
    transition: none;
  }
}
