@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f6f6f2;
  --paper-deep: #e9e9e2;
  --white: #ffffff;
  --ink: #15171c;
  --ink-soft: #3c3f47;
  --muted: #666a74;
  --line: rgba(21, 23, 28, 0.17);
  --brand-red: #d91414;
  --brand-red-deep: #a90f0f;
  --brand-orange: #f28c00;
  --brand-orange-text: #b55200;
  --blue: var(--brand-red);
  --blue-deep: var(--brand-red-deep);
  --sans: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --max: 1240px;
  --pad: clamp(1.25rem, 3vw, 2.5rem);
  --section: clamp(5rem, 10vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
  user-select: none;
  animation: intro-failsafe-hide 0.01s linear 5s forwards;
}

.site-intro::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--paper);
  content: "";
  opacity: 1;
  transition: opacity 0.58s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}

.intro-seen .site-intro {
  display: none;
}

.site-intro__stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(1.15rem, 2.5vw, 1.7rem);
  width: min(82vw, 420px);
}

.site-intro__mark {
  position: relative;
  width: clamp(230px, 28vw, 320px);
  aspect-ratio: 374 / 344;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(21, 23, 28, 0.08);
  transform-origin: center;
  transition:
    box-shadow 0.55s ease,
    opacity 0.12s linear;
  will-change: transform;
}

.site-intro__part,
.site-intro__part img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.site-intro__part {
  will-change: opacity, transform;
}

.site-intro__part img {
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.site-intro__whole {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  opacity: 0;
  pointer-events: none;
}

.site-intro__part--tagline {
  clip-path: polygon(0 0, 13.1% 0, 13.1% 100%, 0 100%);
  animation: intro-tagline 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.site-intro__part--symbol {
  clip-path: polygon(12.6% 0, 100% 0, 100% 64.2%, 12.6% 64.2%);
  transform-origin: 58% 34%;
  animation: intro-symbol 0.68s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
}

.site-intro__part--office {
  clip-path: polygon(12.6% 63.7%, 100% 63.7%, 100% 83.8%, 12.6% 83.8%);
  animation: intro-office 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.site-intro__part--solutions {
  clip-path: polygon(12.6% 83.3%, 100% 83.3%, 100% 100%, 12.6% 100%);
  transform-origin: 12.6% 92%;
  animation: intro-solutions 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}

.site-intro__progress {
  position: relative;
  display: block;
  width: min(68vw, 360px);
  height: 2px;
  overflow: hidden;
  background: rgba(21, 23, 28, 0.12);
  transition:
    opacity 0.28s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro__progress::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--brand-red) 0 78%, var(--brand-orange) 78% 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: intro-progress 1.45s cubic-bezier(0.65, 0, 0.35, 1) 0.12s both;
}

.site-intro.is-landing {
  pointer-events: none;
  cursor: default;
}

.site-intro.is-landing::before {
  opacity: 0;
}

.site-intro.is-landing .site-intro__mark {
  box-shadow: none;
  animation: intro-land-mark 0.92s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-intro.is-landing .site-intro__whole {
  opacity: 1;
}

.site-intro.is-landing .site-intro__progress {
  opacity: 0;
  transform: scaleX(0.55);
}

.site-intro.is-handoff .site-intro__mark {
  opacity: 0;
}

.intro-running [data-intro-target] {
  opacity: 0;
  animation: intro-target-failsafe 0.01s linear 3.8s forwards;
}

.intro-running.intro-handoff [data-intro-target] {
  opacity: 1;
  transition: opacity 0.12s linear;
}

@keyframes intro-tagline {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-symbol {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.84) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes intro-office {
  from {
    opacity: 0;
    transform: translate3d(-34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-solutions {
  from {
    opacity: 0;
    transform: scaleX(0.08);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes intro-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes intro-land-mark {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(var(--intro-target-x), var(--intro-target-y), 0) scale(var(--intro-target-scale));
  }
}

@keyframes intro-target-failsafe {
  to {
    opacity: 1;
  }
}

@keyframes intro-failsafe-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

::selection {
  background: var(--blue);
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--paper);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.mono {
  font-family: var(--mono);
}

.kicker {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display {
  max-width: 14ch;
  font-size: clamp(3.2rem, 6.5vw, 7.1rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.section-title {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-copy {
  max-width: 47ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.35rem;
  color: var(--blue);
  font-weight: 700;
  transition: color 180ms ease;
}

.text-link::after {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 3.5rem;
}

.text-link:hover {
  color: var(--brand-orange-text);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  overflow: hidden;
  border: 2px solid var(--blue);
  padding: 0.95rem 1.5rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--ink);
}

.button:active {
  transform: scale(0.98);
}

.button--outline {
  background: transparent;
  color: var(--blue);
}

.button--outline:hover {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--ink);
}

.button--paper {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button--paper:hover {
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 246, 242, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 4.625rem;
  max-width: none;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.site-nav a:not(.site-nav__phone) {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.97rem;
  font-weight: 700;
}

.site-nav a:not(.site-nav__phone)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover::after {
  background: var(--brand-orange-text);
}

.site-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-nav__phone svg {
  width: 1.05rem;
}

.site-nav__phone:hover {
  color: var(--brand-orange-text);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button__lines::before {
  transform: translateY(-7px);
}

.menu-button__lines::after {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] .menu-button__lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  z-index: 90;
  padding: 2rem var(--pad);
  background: var(--paper);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.mobile-nav .mobile-nav__phone {
  margin-top: 1.5rem;
  border: 2px solid var(--blue);
  padding: 1rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 1rem;
  text-align: center;
}

.hero {
  --hero-pointer-x: 0;
  --hero-scroll: 0;
  position: relative;
  min-height: min(780px, calc(100svh - 76px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__background {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: 57% center;
  scale: calc(1.025 + var(--hero-scroll) * 0.035);
  transform: translate3d(calc(var(--hero-pointer-x) * -14px), calc(var(--hero-scroll) * 62px), 0);
  will-change: transform;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 2%, rgba(246, 246, 242, 0.96) 25%, rgba(246, 246, 242, 0.22) 55%, rgba(246, 246, 242, 0) 75%);
}

.hero__object {
  position: absolute;
  right: max(-2rem, calc((100vw - var(--max)) / 2 - 5rem));
  bottom: 1.25rem;
  width: min(56vw, 820px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(21, 23, 28, 0.22));
  transform: translate3d(calc(var(--hero-pointer-x) * 16px), calc(var(--hero-scroll) * -60px), 0) rotate(calc(var(--hero-pointer-x) * 0.45deg));
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 5rem 7rem;
}

.hero__content {
  width: min(58%, 730px);
}

.hero .display {
  margin-bottom: 1.7rem;
}

.hero__lead {
  max-width: 40ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .display,
.hero__lead,
.hero__actions {
  animation: hero-enter 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__lead {
  animation-delay: 100ms;
}

.hero__actions {
  animation-delay: 190ms;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.service-index {
  overflow: hidden;
  padding: clamp(5.5rem, 6vw, 6.4rem) 0 2.8rem;
}

.service-index .container {
  --max: 1720px;
  padding-inline: clamp(1.25rem, 1.7vw, 1.8rem);
}

.service-index__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 1.6vw, 1.75rem);
  align-items: start;
  padding-left: clamp(0rem, 2.1vw, 2.25rem);
}

.service-index__intro {
  padding-top: clamp(2rem, 3vw, 3.2rem);
}

.service-index__intro .section-title {
  max-width: 9ch;
  font-size: clamp(3.75rem, 4.5vw, 5rem);
}

.service-index__intro .section-copy {
  max-width: 29ch;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.4;
}

.service-index__intro .text-link {
  position: relative;
  gap: 0.75rem;
  margin-top: clamp(1.3rem, 2.7vw, 2.5rem);
  padding-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.service-index__intro .text-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 2.8rem);
  background: var(--brand-red);
}

.service-index__intro .text-link:hover::after {
  width: calc(100% - 1.9rem);
}

.service-index__intro .text-link svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  transition: transform 180ms ease;
}

.service-index__intro .text-link:hover {
  color: var(--brand-red-deep);
}

.service-index__intro .text-link:hover svg {
  transform: translateX(0.2rem);
}

.service-preview {
  display: block;
  margin: 0;
  color: inherit;
}

.service-preview__media {
  position: relative;
  display: block;
  aspect-ratio: 7 / 6;
  overflow: hidden;
  background: var(--paper-deep);
}

.service-preview__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-preview__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-preview__caption {
  display: block;
  padding: 1.8rem 0 0;
}

.service-preview__heading {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-preview__number {
  color: var(--brand-orange-text);
  font-family: var(--mono);
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-preview__description {
  display: block;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-list {
  display: block;
  margin-top: clamp(1.8rem, 2.8vw, 3rem);
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  min-height: 4.55rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) 1.65rem;
  gap: 0.7rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0.25rem;
  transition: border-color 180ms ease, color 180ms ease;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.service-item:focus-visible,
.service-entry:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--paper);
}

.service-item__media,
.service-item__description {
  display: none;
}

.service-item__number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  transition: color 180ms ease;
}

.service-item__title {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  transition: color 180ms ease;
}

.service-item__arrow {
  color: var(--ink);
  transition: color 180ms ease, transform 180ms ease;
}

.service-item__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-item:is(:hover, :focus-visible, .is-active) {
  border-bottom-color: var(--brand-red);
}

.service-item:is(:hover, :focus-visible, .is-active) .service-item__number {
  color: var(--brand-orange-text);
}

.service-item:is(:hover, :focus-visible, .is-active) .service-item__title,
.service-item:is(:hover, :focus-visible, .is-active) .service-item__arrow {
  color: var(--brand-red);
}

.service-item:is(:hover, :focus-visible, .is-active) .service-item__arrow {
  transform: translateX(0.2rem);
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 3.4vw, 3.75rem);
  border-top: 1px solid var(--line);
}

.trust-rail__item {
  padding: 1.55rem;
  text-align: center;
}

.trust-rail__item + .trust-rail__item {
  border-left: 1px solid var(--line);
}

.trust-rail strong {
  display: block;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 700;
}

.computer-showcase {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-block: var(--section) clamp(4rem, 7vw, 6rem);
  background: var(--ink);
  color: var(--paper);
}

.computer-showcase .kicker {
  color: var(--brand-orange);
}

.computer-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.computer-showcase__header .section-title {
  margin-bottom: 0;
}

.computer-showcase__intro .section-copy {
  color: rgba(246, 246, 242, 0.72);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.carousel-arrow {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid rgba(246, 246, 242, 0.42);
  background: transparent;
  color: var(--paper);
  font-size: 1.35rem;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.carousel-count {
  min-width: 4.3rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-align: center;
}

.computer-carousel {
  display: grid;
  grid-auto-columns: clamp(310px, 42vw, 590px);
  grid-auto-flow: column;
  gap: clamp(1rem, 2vw, 2rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) 1.5rem;
  scroll-padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.computer-carousel::-webkit-scrollbar {
  display: none;
}

.computer-card {
  min-width: 0;
  scroll-snap-align: start;
}

.computer-card > button {
  display: grid;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.computer-card__number {
  margin-bottom: 0.8rem;
  color: rgba(246, 246, 242, 0.58);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.computer-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  background: #fff;
}

.computer-card__media::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--blue);
  content: "";
  pointer-events: none;
  transition: border-width 250ms ease;
}

.computer-card:hover .computer-card__media::after,
.computer-card:focus-within .computer-card__media::after {
  border-width: 8px;
}

.computer-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 2.5rem);
  object-fit: contain;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.computer-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(246, 246, 242, 0.22);
  padding: 1.15rem 0;
}

.computer-card__footer strong {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
}

.computer-card__footer > span {
  color: rgba(246, 246, 242, 0.58);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.computer-carousel__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.computer-carousel__footer p {
  margin: 0;
  color: rgba(246, 246, 242, 0.5);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.carousel-progress {
  width: min(300px, 45vw);
  height: 2px;
  overflow: hidden;
  background: rgba(246, 246, 242, 0.22);
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.product-dialog {
  width: min(1080px, calc(100% - 2rem));
  max-height: min(780px, calc(100svh - 2rem));
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  animation: dialog-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-dialog::backdrop {
  background: rgba(10, 12, 18, 0.78);
  backdrop-filter: blur(7px);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
}

.product-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.8rem;
  line-height: 1;
}

.product-dialog__media {
  display: grid;
  min-height: 560px;
  place-items: center;
  background: var(--white);
}

.product-dialog__media img {
  width: 100%;
  height: 100%;
  max-height: 690px;
  padding: clamp(1.5rem, 5vw, 4rem);
  object-fit: contain;
}

.product-dialog__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-dialog__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.product-dialog__content p:not(.kicker) {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.product {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.product__grid {
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(410px, 0.9fr) minmax(0, 1.1fr);
}

.product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 7vw, 7rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.product .section-title {
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
}

.product__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--blue);
}

.product__media::before {
  position: absolute;
  inset: 0 0 auto 50%;
  z-index: 1;
  height: 42%;
  background: var(--blue);
  content: "";
}

.product__media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}

.feature-list {
  margin: 2.5rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  font-weight: 700;
}

.feature-list svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.rental {
  padding-top: var(--section);
}

.rental__diptych {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
}

.rental__content {
  display: flex;
  min-height: 630px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  background: var(--blue);
  color: var(--paper);
}

.rental__content .rental__number {
  margin-bottom: 1.5rem;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.rental__content h2 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.rental__content p {
  max-width: 40ch;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.rental__media img {
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
}

.rental__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.rental__proof span {
  padding: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.rental__proof span + span {
  border-left: 1px solid var(--line);
}

.rental-configurator {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(340px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.rental-configurator[hidden] {
  display: none;
}

.rental-configurator__heading h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.rental-configurator__heading > p:last-child {
  color: var(--ink-soft);
}

.rental-configurator__form {
  display: grid;
  gap: 1.3rem;
}

.rental-configurator__form-title {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.config-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: end;
  font-size: 0.83rem;
  font-weight: 700;
}

.config-field[hidden] {
  display: none;
}

.config-field output {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.config-field select {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
}

.config-field input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--blue);
}

.rental-add-button {
  width: 100%;
  margin-top: 0.3rem;
}

.rental-add-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--brand-orange-text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.rental-summary {
  position: sticky;
  top: 7rem;
  align-self: start;
  border-top: 3px solid var(--blue);
  padding-top: 1.2rem;
}

.rental-summary__label {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rental-summary__empty {
  display: grid;
  min-height: 7rem;
  align-content: center;
  gap: 0.35rem;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
}

.rental-summary__empty[hidden] {
  display: none;
}

.rental-summary__empty strong {
  color: var(--ink);
}

.rental-summary__empty span {
  font-size: 0.88rem;
}

.rental-summary__items {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.rental-summary__items:empty {
  display: none;
}

.rental-summary__item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.rental-summary__number {
  padding-top: 0.2rem;
  color: var(--brand-red);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.rental-summary__item-copy {
  display: grid;
  gap: 0.25rem;
}

.rental-summary__item-copy strong {
  line-height: 1.3;
}

.rental-summary__item-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

.rental-summary__remove {
  min-height: 2.75rem;
  border: 0;
  padding: 0.1rem 0;
  background: transparent;
  color: var(--brand-red);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.rental-summary__remove:hover {
  color: var(--brand-orange-text);
}

.rental-summary__send {
  width: 100%;
  margin-top: 1.5rem;
}

.rental-summary__send.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.rental-summary__note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.method {
  padding-block: var(--section);
}

.method__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.method__header .section-copy {
  justify-self: end;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.method-step {
  min-height: 240px;
  padding: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.method-step + .method-step {
  border-left: 1px solid var(--line);
}

.method-step__number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.method-step h3 {
  margin: 4rem 0 0.7rem;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.method-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.showroom {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.showroom__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  background: var(--paper);
}

.showroom__content .section-title {
  max-width: 18ch;
  font-size: clamp(2.2rem, 3.25vw, 4rem);
  scroll-margin-top: 7rem;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.showroom__media {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}

.showroom__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.home-faq {
  border-top: 1px solid var(--line);
  padding-block: var(--section);
  background: var(--white);
}

.home-faq__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-faq__header .section-title {
  max-width: 11ch;
  margin-bottom: 0;
}

.home-faq__header .section-copy {
  justify-self: end;
  margin-bottom: 0;
}

.home-faq__list {
  border-top: 1px solid var(--line);
}

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

.home-faq__item summary {
  display: grid;
  min-height: 5.6rem;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  color: var(--brand-red);
  content: "+";
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.home-faq__item[open] summary::after {
  color: var(--brand-orange-text);
  content: "−";
}

.home-faq__item p {
  max-width: 72ch;
  margin: 0;
  padding: 0 4rem 1.7rem 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.final-cta {
  background: var(--blue);
  color: var(--paper);
}

.final-cta__inner {
  display: grid;
  min-height: 310px;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.final-cta__phone {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 4rem;
  padding-block: 4.5rem;
}

.site-footer .brand {
  align-items: flex-start;
}

.site-footer .brand img {
  height: 7.75rem;
}

.site-footer__tagline {
  max-width: 28ch;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer__details {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.site-footer__details a {
  color: var(--blue);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  align-content: start;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer__nav a:hover {
  color: var(--blue);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 5rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.page-hero p {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.category {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border-bottom: 1px solid var(--line);
}

.category:nth-child(even) {
  background: var(--white);
}

.category__intro {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.category__number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.category__intro h2 {
  max-width: 10ch;
  margin: 3rem 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.category__intro p {
  max-width: 35ch;
  color: var(--ink-soft);
}

.category__services {
  padding: clamp(3rem, 7vw, 6rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
  border-left: 1px solid var(--line);
}

.detail-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-list > li {
  margin: 0;
  padding: 0;
}

.detail-list .service-entry {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.service-entry__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.service-entry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-entry:hover .service-entry__media img {
  transform: scale(1.035);
}

.service-entry:hover h3 {
  color: var(--blue);
}

.service-entry__body {
  display: grid;
  grid-template-columns: minmax(125px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
}

.detail-list h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.detail-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-page-hero__tagline {
  max-width: 16ch !important;
  color: var(--ink) !important;
  font-size: clamp(2rem, 3.8vw, 4.1rem) !important;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.about-story {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-block: var(--section);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.about-story__header .section-title {
  max-width: 10ch;
  margin-bottom: 0;
}

.about-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-timeline li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.8rem, 3vw, 2.6rem);
}

.about-timeline__date {
  color: var(--brand-red);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.about-timeline p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

.about-story__media {
  width: min(100%, var(--max));
  margin: clamp(3.5rem, 7vw, 6rem) auto 0;
  padding-inline: var(--pad);
}

.about-story__media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 52%;
}

.about-capabilities {
  padding-block: var(--section);
  background: var(--ink);
  color: var(--paper);
}

.about-capabilities .kicker {
  color: var(--brand-orange);
}

.about-capabilities__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.about-capabilities__header .kicker {
  align-self: start;
}

.about-capabilities__header .section-title {
  grid-column: 2;
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
}

.about-capabilities__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(246, 246, 242, 0.24);
  list-style: none;
}

.about-capabilities__list li {
  display: grid;
  min-height: 8rem;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(246, 246, 242, 0.24);
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem) 1.5rem 0;
}

.about-capabilities__list li:nth-child(even) {
  border-left: 1px solid rgba(246, 246, 242, 0.24);
  padding-right: 0;
  padding-left: clamp(1rem, 3vw, 2.5rem);
}

.about-capabilities__list span,
.about-values__list span {
  color: var(--brand-orange);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.about-capabilities__list strong {
  max-width: 27ch;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.3;
}

.about-capabilities__link {
  margin-top: 3rem;
  color: var(--brand-orange);
}

.about-capabilities__link:hover {
  color: var(--paper);
}

.about-reference {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section);
}

.about-reference__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.about-reference .section-title {
  max-width: 8ch;
  margin-bottom: 0;
}

.about-reference__statement {
  margin: 0;
  padding-top: 1.6rem;
  border-top: 5px solid var(--brand-red);
  font-size: clamp(1.7rem, 3.4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-audiences {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section);
  background: var(--white);
}

.about-audiences__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.about-audiences .section-title {
  max-width: 12ch;
  margin-bottom: 0;
}

.about-audiences__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-audiences__list li {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 1rem 1.5rem 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
}

.about-audiences__list li:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: clamp(1rem, 3vw, 2.5rem);
}

.about-values {
  padding-block: var(--section);
}

.about-values__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.about-values__header .section-title {
  max-width: 10ch;
  margin-bottom: 0;
}

.about-values__header .section-copy {
  justify-self: end;
  margin-bottom: 0;
}

.about-values__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.about-values__list li {
  display: grid;
  min-height: 11rem;
  align-content: space-between;
  gap: 2rem;
  padding: 1.7rem;
}

.about-values__list li + li {
  border-left: 1px solid var(--line);
}

.about-values__list strong {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

.about-final-cta .final-cta__inner {
  min-height: 390px;
}

.about-final-cta h2 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

@media (min-width: 900px) and (max-width: 1120px) {
  .service-entry__body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: var(--section);
}

.contact-details {
  align-self: start;
}

.contact-details dl {
  margin: 3rem 0 0;
}

.contact-details dl > div {
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
}

.contact-details dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
}

.contact-details a {
  color: var(--blue);
  font-weight: 700;
}

.map-link {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 2rem;
  border: 1px solid var(--line);
  padding: 1.5rem;
  background:
    linear-gradient(135deg, transparent 45%, rgba(242, 140, 0, 0.1) 45%, rgba(242, 140, 0, 0.1) 55%, transparent 55%) 0 0 / 32px 32px,
    var(--white);
}

.map-link span {
  width: fit-content;
  background: var(--paper);
  padding: 0.4rem 0.6rem;
  color: var(--blue);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-family: var(--mono);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 28, 0.34);
  border-radius: 0;
  padding: 0.9rem 1rem;
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(242, 140, 0, 0.28);
}

.privacy-check {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: #8d1d1d;
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #164f2b;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.legal {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: var(--section) var(--pad);
}

.legal h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal__updated {
  margin-bottom: 4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.legal h2 {
  margin: 3.5rem 0 1rem;
  font-size: 1.8rem;
  letter-spacing: -0.035em;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 1.2rem;
  }

  .site-nav__phone {
    display: none;
  }

  .hero__content {
    width: 63%;
  }

  .service-index__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2.5rem;
    padding-left: 0;
  }

  .service-index__intro {
    grid-column: 1 / -1;
    max-width: 760px;
    padding-top: 0;
  }

  .service-index__intro .section-title {
    max-width: 12ch;
  }

  .service-index__intro .section-copy {
    max-width: 45ch;
  }

  .service-index__intro .text-link {
    margin-top: 0.5rem;
  }

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

  .method-step:nth-child(3) {
    border-left: 0;
  }

  .rental-configurator {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .rental-summary {
    position: static;
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

@media (max-width: 899px) {
  body {
    font-size: 16px;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .site-header__inner {
    min-height: 84px;
  }

  .brand img {
    height: 4rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero__background {
    object-position: 66% center;
  }

  .hero__fade {
    background: linear-gradient(180deg, rgba(246, 246, 242, 0.12) 20%, rgba(246, 246, 242, 0.95) 66%, var(--paper) 84%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-block: 8rem 3.5rem;
  }

  .hero__content {
    width: 100%;
  }

  .hero__object {
    right: -4rem;
    bottom: 20rem;
    width: min(72vw, 500px);
    opacity: 0.92;
  }

  .service-index__grid {
    display: block;
  }

  .service-index {
    padding-block: var(--section);
  }

  .service-index__intro {
    max-width: 680px;
    margin-bottom: 2.7rem;
  }

  .service-index__intro .section-title {
    max-width: 10ch;
  }

  .service-index__intro .section-copy,
  .service-index__intro .text-link {
    font-size: 1rem;
  }

  .service-index__intro .section-copy {
    line-height: 1.55;
  }

  .service-preview {
    display: none;
  }

  .service-list {
    display: grid;
    width: calc(100% + (var(--pad) * 2));
    grid-auto-columns: min(78vw, 23rem);
    grid-auto-flow: column;
    gap: 1rem;
    margin-inline: calc(var(--pad) * -1);
    margin-top: 0;
    padding: 0 var(--pad) 0.8rem;
    overflow-x: auto;
    border-top: 0;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .service-list::-webkit-scrollbar {
    display: none;
  }

  .service-item {
    min-height: 0;
    grid-template-columns: 2.5rem minmax(0, 1fr) 1.75rem;
    grid-template-rows: auto auto auto;
    gap: 0.65rem 0.65rem;
    align-items: center;
    padding: 0 0 1.4rem;
    scroll-snap-align: start;
  }

  .service-item__media {
    display: block;
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--paper-deep);
  }

  .service-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-item:nth-child(1) .service-item__media img { object-position: 54% 50%; }
  .service-item:nth-child(2) .service-item__media img { object-position: 53% 50%; }
  .service-item:nth-child(3) .service-item__media img { object-position: 64% 50%; }
  .service-item:nth-child(4) .service-item__media img { object-position: 57% 50%; }
  .service-item:nth-child(5) .service-item__media img { object-position: 50% 50%; }
  .service-item:nth-child(6) .service-item__media img { object-position: 58% 50%; }
  .service-item:nth-child(7) .service-item__media img { object-position: 72% 50%; }

  .service-item:hover .service-item__media img {
    transform: scale(1.025);
  }

  .service-item__title {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .service-item__description {
    display: block;
    grid-column: 1 / -1;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .computer-showcase__header {
    grid-template-columns: 1fr;
  }

  .computer-showcase__intro .section-copy {
    max-width: 55ch;
  }

  .computer-carousel {
    grid-auto-columns: min(78vw, 520px);
  }

  .product-dialog[open] {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-dialog__media {
    min-height: 43svh;
  }

  .product-dialog__content {
    padding-top: 2rem;
  }

  .product__grid,
  .rental__diptych,
  .showroom,
  .category,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product__content,
  .showroom__content,
  .category__intro,
  .category__services {
    padding-inline: var(--pad);
  }

  .product__media {
    min-height: 520px;
  }

  .rental__content,
  .rental__media img {
    min-height: 520px;
  }

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

  .rental__proof span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method__header,
  .home-faq__header,
  .page-hero__grid,
  .about-story__grid,
  .about-capabilities__header,
  .about-reference__grid,
  .about-audiences__grid,
  .about-values__header {
    grid-template-columns: 1fr;
  }

  .method__header .section-copy,
  .home-faq__header .section-copy,
  .about-values__header .section-copy {
    justify-self: start;
  }

  .about-capabilities__header .section-title {
    grid-column: auto;
  }

  .about-story__media img {
    aspect-ratio: 3 / 2;
  }

  .about-reference__statement {
    padding-top: 1.35rem;
  }

  .showroom__media {
    order: -1;
  }

  .showroom__content {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .showroom__media img {
    min-height: 430px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 4rem;
  }

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

  .site-footer__nav {
    grid-column: 1 / -1;
  }

  .category__services {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .category__intro {
    position: static;
  }

  .contact-form {
    order: -1;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 1.2rem;
    --section: 4.8rem;
  }

  .site-intro__mark {
    width: min(74vw, 280px);
  }

  .site-intro__stage {
    gap: 1.15rem;
  }

  .site-header__inner {
    min-height: 78px;
  }

  .brand img {
    width: auto;
    height: 3.625rem;
  }

  .site-footer .brand img {
    height: 6.875rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero__background {
    height: 54%;
    object-position: 62% center;
  }

  .hero__fade {
    background: linear-gradient(180deg, rgba(246, 246, 242, 0) 16%, rgba(246, 246, 242, 0.98) 54%, var(--paper) 72%);
  }

  .hero__object {
    right: -2.5rem;
    bottom: auto;
    top: 8.7rem;
    width: 62vw;
  }

  .hero__inner {
    padding-bottom: 1.5rem;
  }

  .hero .display {
    margin-bottom: 1.15rem;
    font-size: clamp(2.85rem, 13.5vw, 4.15rem);
  }

  .hero__lead {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button {
    min-height: 3.25rem;
    padding-block: 0.78rem;
  }

  .service-index__intro .section-title {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .service-list {
    grid-auto-columns: 86vw;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .trust-rail__item + .trust-rail__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-faq__item summary {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 1.6rem;
    gap: 1rem;
    padding-block: 1.2rem;
  }

  .home-faq__item p {
    padding: 0 2.6rem 1.4rem 0;
  }

  .computer-carousel {
    grid-auto-columns: 86vw;
  }

  .computer-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .computer-carousel__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .product-dialog__media {
    min-height: 40svh;
  }

  .rental-configurator {
    grid-template-columns: 1fr;
    padding: 2.4rem 1.4rem;
  }

  .rental-summary {
    grid-column: auto;
  }

  .rental-summary__item {
    grid-template-columns: 1.7rem minmax(0, 1fr);
  }

  .rental-summary__remove {
    grid-column: 2;
    justify-self: start;
  }

  .product__grid {
    min-height: auto;
  }

  .product__media {
    min-height: 390px;
  }

  .product__media img {
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%);
  }

  .rental__content,
  .rental__media img {
    min-height: 460px;
  }

  .rental__content {
    padding: 2.3rem 1.4rem;
  }

  .rental__number {
    font-size: 7.5rem;
  }

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

  .method-step + .method-step {
    border-left: 0;
  }

  .method-step {
    min-height: 200px;
  }

  .method-step h3 {
    margin-top: 2.8rem;
  }

  .showroom__media img {
    min-height: 340px;
  }

  .site-footer__grid,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  .page-hero h1 {
    font-size: clamp(3.9rem, 19vw, 5.6rem);
  }

  .about-page-hero__tagline {
    max-width: 15ch !important;
    font-size: clamp(2.1rem, 10vw, 3.25rem) !important;
  }

  .about-timeline li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-story__media img {
    aspect-ratio: 4 / 3;
  }

  .about-capabilities__list,
  .about-audiences__list,
  .about-values__list {
    grid-template-columns: 1fr;
  }

  .about-capabilities__list li,
  .about-capabilities__list li:nth-child(even) {
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .about-audiences__list li,
  .about-audiences__list li:nth-child(even) {
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .about-values__list li {
    min-height: 8rem;
    padding-inline: 0;
  }

  .about-values__list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .detail-list .service-entry,
  .service-entry__body {
    grid-template-columns: 1fr;
  }

  .detail-list .service-entry {
    gap: 1.2rem;
    padding-block: 2rem;
  }

  .service-entry__body {
    gap: 0.7rem;
  }

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

  .field--full,
  .privacy-check,
  .form-note,
  .form-status {
    grid-column: auto;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .site-intro {
    display: none !important;
  }
}
