@font-face {
  font-family: "Saira";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 50% 125%;
  font-display: swap;
  src: url("./assets/fonts/saira/saira-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --ink: #0b1424;
  --ink-soft: #152238;
  --paper: #f4f1ea;
  --paper-light: #fbfaf7;
  --white: #ffffff;
  --blue: #17149a;
  --blue-bright: #2420bd;
  --blue-pale: #e5e6f4;
  --copper: #c9773d;
  --copper-light: #e29a63;
  --slate: #5c6570;
  --line: #d4d3cf;
  --line-dark: rgba(255, 255, 255, 0.14);
  --font-display: "Saira", "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 11vw, 168px);
  --header-height: 88px;
}

.brand-name,
.hero h1,
.blueprint-topline,
.blueprint-note,
.architecture-nodes text,
.section-title,
.outcome-card h3,
.image-manifesto-copy h2,
.service-index,
.service-copy h3,
.technical-card-number,
.technical-card h3,
.process-number,
.process-copy h3,
.process-quote blockquote,
.principle > span,
.principle h3,
.portrait-label span:first-child,
.contact-mail,
.site-nav > a:not(.nav-contact),
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  font-stretch: 92%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.shell {
  width: min(100%, calc(var(--shell) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section-tight {
  padding-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 240ms ease, height 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(9, 18, 32, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  box-shadow: 0 0 18px rgba(226, 154, 99, 0.42);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-name {
  display: grid;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-name span:last-child {
  color: #aeb4bd;
  letter-spacing: 0.19em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.site-nav > a:not(.nav-contact) {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--copper);
  border-color: var(--copper);
}

.nav-contact svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + clamp(54px, 7vw, 96px)) 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(32, 37, 173, 0.26), transparent 31%),
    linear-gradient(135deg, #0b1424 0%, #101c2f 68%, #10182a 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  top: 90px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.018), 0 0 0 148px rgba(255, 255, 255, 0.015);
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

html.motion-ready .hero.is-parallax-active::before {
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--copper-light);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: clamp(47px, 5.25vw, 82px);
  font-weight: 740;
  letter-spacing: -0.047em;
  line-height: 0.99;
}

.hero h1 span {
  color: var(--copper-light);
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 20px 0 24px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: inset 0 0 0 1px transparent;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d48246;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 12px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

html.motion-ready .parallax-layer {
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

html.motion-ready .parallax-layer.is-parallax-active {
  will-change: transform;
}

.blueprint {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(
      circle at var(--spot-x, 70%) var(--spot-y, 30%),
      rgba(36, 32, 189, 0.18),
      transparent 34%
    ),
    rgba(8, 17, 31, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
}

html.motion-ready .blueprint.parallax-layer {
  transform:
    perspective(1200px)
    translate3d(0, var(--parallax-shift, 0px), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}

.blueprint::before,
.blueprint::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--copper-light);
}

.blueprint::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.blueprint::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.blueprint-topline,
.blueprint-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blueprint-topline {
  padding: 2px 3px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.system-map {
  width: 100%;
  height: auto;
  margin-block: 5px;
}

.grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.connections path {
  fill: none;
  stroke: rgba(173, 183, 199, 0.6);
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
}

.architecture-nodes rect {
  fill: #101d32;
  stroke: rgba(255, 255, 255, 0.32);
}

.architecture-nodes text {
  fill: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.architecture-nodes .node-index {
  fill: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.architecture-nodes .node-focus rect {
  fill: rgba(201, 119, 61, 0.16);
  stroke: var(--copper-light);
  stroke-width: 1.5;
  filter: url(#soft-glow);
}

.architecture-nodes .node-focus text:first-of-type {
  fill: var(--copper-light);
}

.junctions circle {
  fill: var(--copper-light);
}

.pulse-ring {
  fill: none;
  stroke: var(--copper-light);
  stroke-width: 1;
  opacity: 0.3;
  transform-origin: 338px 238px;
  animation: pulse 3.2s ease-out infinite;
}

.blueprint-note {
  justify-content: flex-start;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blueprint-note .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 0 4px rgba(226, 154, 99, 0.12);
}

.note-arrow {
  color: var(--copper-light);
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(50px, 7vw, 94px);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.section-marker span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  color: var(--copper);
}

.section-marker-light {
  color: rgba(255, 255, 255, 0.48);
}

.section-marker-light span:first-child {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--copper-light);
}

.section-title {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 690;
  letter-spacing: -0.043em;
  line-height: 1.06;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
  margin-bottom: 64px;
}

.section-intro {
  max-width: 540px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

.problem {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 9vw, 140px);
}

.problem-content {
  max-width: 980px;
}

.problem .section-title {
  max-width: 910px;
  margin-bottom: 56px;
}

.problem-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: 36px;
  color: #414b57;
}

.problem-body p {
  margin-bottom: 0;
}

.outcomes {
  background: var(--paper);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bebebb;
  border-bottom: 1px solid #bebebb;
}

.outcome-card {
  position: relative;
  min-height: 340px;
  padding: 38px clamp(24px, 3vw, 44px) 44px;
  border-right: 1px solid #bebebb;
}

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

.outcome-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 52px;
  background: var(--blue-pale);
  color: var(--blue);
}

.outcome-icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.card-number {
  position: absolute;
  top: 42px;
  right: 34px;
  color: #969ba2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.outcome-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.18;
}

.outcome-card > p:last-child {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 15px;
}

.image-manifesto {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(680px, 68vw, 900px);
  background: var(--ink);
  color: var(--white);
}

.image-manifesto-backdrop {
  position: absolute;
  z-index: 0;
  inset: -12% 0;
  overflow: hidden;
}

.image-manifesto-backdrop img {
  object-position: 56% center;
  filter: saturate(0.52) contrast(1.08);
}

.image-manifesto::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.97) 0%, rgba(8, 17, 31, 0.88) 38%, rgba(8, 17, 31, 0.24) 76%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(8, 17, 31, 0.62));
  pointer-events: none;
}

.image-manifesto::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 38%;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.image-manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(52px, 9vw, 144px);
  min-height: clamp(680px, 68vw, 900px);
  padding-block: clamp(92px, 11vw, 160px);
}

.parallax-image {
  --parallax-scale: 1.24;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(var(--parallax-scale));
  transform-origin: center;
  backface-visibility: hidden;
}

.background-depth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.22);
  transform-origin: center;
  backface-visibility: hidden;
}

html.motion-ready .parallax-image.is-parallax-active,
html.motion-ready .background-depth-image.is-parallax-active,
html.motion-ready .parallax-background.is-parallax-active {
  will-change: transform;
}

.image-manifesto-caption {
  align-self: end;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-width: 260px;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 17, 31, 0.62);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.image-manifesto-caption span:first-child {
  color: var(--copper-light);
}

.image-manifesto-copy {
  max-width: 560px;
}

.image-manifesto-copy h2 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 670;
  letter-spacing: -0.043em;
  line-height: 1.05;
}

.image-manifesto-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.services {
  background: var(--paper-light);
}

.section-heading-services {
  margin: 48px 0 70px clamp(0px, 11.5vw, 180px);
}

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

.service-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 160px;
  gap: clamp(28px, 5vw, 76px);
  padding: 54px 28px 54px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, padding 220ms ease;
}

.service-card:hover {
  padding-left: 28px;
  padding-right: 28px;
  background: var(--paper);
}

.service-index {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.service-copy {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(280px, 1fr);
  column-gap: clamp(38px, 7vw, 100px);
}

.service-kicker {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-copy > p:not(.service-kicker) {
  margin: 0;
  color: #4f5965;
  font-size: 15px;
}

.service-copy ul {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.service-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-copy li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--copper);
}

.service-symbol {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  align-self: center;
  border: 1px solid var(--line);
  color: var(--blue);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.service-card:hover .service-symbol {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.service-symbol svg {
  width: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.technical-context {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.technical-context > .shell {
  position: relative;
  z-index: 2;
}

.technical-context-backdrop {
  position: absolute;
  z-index: 0;
  top: -6%;
  right: -4%;
  width: 66%;
  height: 46%;
  opacity: 0.17;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.technical-context-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.06), var(--paper));
}

.technical-context-backdrop img {
  object-position: center;
  filter: saturate(0.4) contrast(1.2);
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.38);
}

.technical-context-heading {
  margin-top: 48px;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.5vw, 72px);
}

.technical-card {
  min-width: 0;
  background: var(--paper-light);
  border-bottom: 3px solid var(--ink);
}

.technical-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.technical-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(11, 20, 36, 0.24));
  pointer-events: none;
}

.technical-card-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.06);
  transition: filter 600ms ease;
}

.technical-card:hover .technical-card-media img {
  filter: saturate(0.86) contrast(1.04);
}

.technical-card-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(28px, 3vw, 46px);
}

.technical-card-number {
  padding-top: 5px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.technical-card-kicker {
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.technical-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 680;
  letter-spacing: -0.034em;
  line-height: 1.08;
}

.technical-card-copy div > p:last-child {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 15px;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process::before {
  content: "";
  position: absolute;
  width: 660px;
  height: 660px;
  right: -320px;
  top: -280px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.012), 0 0 0 180px rgba(255, 255, 255, 0.01);
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

html.motion-ready .process.is-parallax-active::before {
  will-change: transform;
}

.process-heading {
  position: relative;
  display: grid;
  grid-template-columns: 0.32fr minmax(0, 1.1fr) minmax(250px, 0.48fr);
  align-items: end;
  gap: clamp(32px, 5vw, 78px);
  margin-bottom: 90px;
}

.process .section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-width: 0;
}

.process-number {
  margin-bottom: 24px;
  color: var(--copper-light);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.process-line {
  position: relative;
  height: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.process-line::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--copper-light);
  border-radius: 50%;
  background: var(--ink);
}

.process-line span {
  display: block;
  width: 0;
  height: 1px;
  margin-top: -1px;
  background: var(--copper-light);
  transition: width 900ms cubic-bezier(.2,.7,.2,1);
}

.process-step.is-visible .process-line span {
  width: 100%;
}

.process-copy {
  padding: 18px clamp(20px, 3vw, 42px) 0 0;
}

.process-copy h3 {
  min-height: 54px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

.process-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.process-quote {
  display: grid;
  grid-template-columns: 52px minmax(0, 850px);
  gap: 26px;
  margin: 112px 0 0 clamp(0px, 17vw, 210px);
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.process-quote svg {
  width: 40px;
  fill: var(--copper-light);
}

.process-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.32;
}

.principles {
  background: var(--paper);
}

.principles-lead {
  max-width: 1050px;
  margin: 54px 0 96px clamp(0px, 11.5vw, 180px);
}

.principles-lead .section-title {
  font-size: clamp(40px, 5vw, 72px);
}

.principles-lead em {
  color: var(--copper);
  font-style: normal;
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.57fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  margin-left: clamp(0px, 11.5vw, 180px);
}

.principles-copy {
  color: #47515d;
}

.principles-copy p + p {
  margin-top: 26px;
}

.principle {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c9c8c3;
}

.principle:last-child {
  margin-bottom: 0;
}

.principle > span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.principle h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

.principle p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.about {
  background: var(--paper-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 11vw, 160px);
}

.about-portrait {
  position: relative;
  padding: 34px 0 0 34px;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0 44px 48px 0;
  border: 1px solid var(--line);
}

.portrait-frame {
  position: relative;
  max-width: 430px;
  background: var(--ink);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.65) contrast(1.07);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0 0 86px;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 20, 36, 0.2));
  pointer-events: none;
}

.portrait-grid {
  position: absolute;
  inset: 0 0 86px;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.portrait-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  margin: 0;
  padding: 20px 24px;
  color: var(--white);
}

.portrait-label span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.portrait-label span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy .eyebrow {
  margin-top: 58px;
}

.about-copy .section-title {
  margin-bottom: 40px;
}

.about-text {
  max-width: 670px;
  color: #47515d;
}

.about-text p + p {
  margin-top: 24px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.about-values span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 155px);
  background: var(--blue);
  color: var(--white);
}

.contact-pattern {
  position: absolute;
  inset: -120px 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 55%);
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.66fr);
  align-items: end;
  gap: clamp(60px, 9vw, 140px);
}

.contact-copy .section-title {
  max-width: 820px;
  margin: 48px 0 28px;
  font-size: clamp(39px, 4.4vw, 64px);
}

.contact-copy > p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-action {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 12, 89, 0.32);
  backdrop-filter: blur(5px);
}

.contact-label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 650;
  line-height: 1.2;
}

.contact-mail span {
  overflow-wrap: anywhere;
}

.contact-mail svg {
  width: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--copper-light);
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.contact-mail:hover svg,
.contact-mail:focus-visible svg {
  transform: translate(3px, -3px);
}

.contact-phone {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 650;
}

.contact-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  padding: 50px 0 30px;
  background: #080f1b;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.brand-footer {
  justify-self: start;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.footer-meta p {
  margin: 0;
}

.footer-meta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-meta a {
  transition: color 180ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { transform: scale(0.78); opacity: 0.5; }
  70%, 100% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .site-nav {
    gap: 15px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(47px, 5.7vw, 68px);
  }

  .service-card {
    grid-template-columns: 70px minmax(0, 1fr) 128px;
  }

  .service-copy {
    grid-template-columns: 0.7fr 1fr;
  }

  .service-symbol {
    width: 112px;
    height: 112px;
  }

  .image-manifesto-grid {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 52px;
  }

  .process-heading {
    grid-template-columns: 0.3fr 1fr;
  }

  .process-heading .section-intro {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .parallax-image {
    --parallax-scale: 1.045;
  }

  .scroll-progress {
    height: 1px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 110px var(--gutter) 54px;
    background: rgba(9, 18, 32, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-contact) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-display);
    font-size: clamp(25px, 5vw, 39px);
    font-weight: 600;
  }

  .site-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    justify-content: space-between;
    margin-top: 26px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
    margin-left: auto;
  }

  .hero-foot {
    margin-top: 62px;
  }

  .section-heading,
  .section-heading-services {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-left: 0;
  }

  .section-intro {
    max-width: 650px;
  }

  .outcome-card {
    padding-inline: 25px;
  }

  .image-manifesto-grid {
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 720px;
  }

  .image-manifesto::before {
    background:
      linear-gradient(90deg, rgba(8, 17, 31, 0.95), rgba(8, 17, 31, 0.68) 66%, rgba(8, 17, 31, 0.34)),
      linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.72));
  }

  .image-manifesto-copy {
    max-width: 720px;
  }

  .image-manifesto-caption {
    justify-self: end;
  }

  .technical-context-backdrop {
    right: -18%;
    width: 92%;
    opacity: 0.14;
  }

  .service-card {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .service-copy {
    grid-template-columns: 1fr;
  }

  .service-copy > p:not(.service-kicker),
  .service-copy ul {
    grid-column: 1;
  }

  .service-copy > p:not(.service-kicker) {
    margin-top: 24px;
  }

  .service-symbol {
    display: none;
  }

  .technical-card-copy {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-heading .section-intro {
    grid-column: 1;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 0;
  }

  .process-quote {
    margin-left: 0;
  }

  .principles-lead,
  .principles-grid {
    margin-left: 0;
  }

  .principles-grid {
    gap: 60px;
  }

  .about-grid {
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-action {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 86px;
    --header-height: 70px;
  }

  body {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 11px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: clamp(41px, 12vw, 58px);
    letter-spacing: -0.05em;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .blueprint {
    padding: 10px;
  }

  .blueprint-topline span:last-child,
  .blueprint-note .note-arrow,
  .blueprint-note span:last-child {
    display: none;
  }

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

  .hero-foot p {
    display: none;
  }

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

  .problem .section-title {
    margin-bottom: 38px;
  }

  .problem-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: clamp(36px, 10vw, 52px);
  }

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

  .outcome-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #bebebb;
  }

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

  .image-manifesto {
    min-height: 700px;
  }

  .image-manifesto-backdrop {
    inset: -7% -22% -7% -8%;
  }

  .image-manifesto-backdrop img {
    object-position: 66% center;
  }

  .image-manifesto::before {
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.2) 0%, rgba(8, 17, 31, 0.72) 38%, rgba(8, 17, 31, 0.98) 75%);
  }

  .image-manifesto-grid {
    align-content: end;
    gap: 42px;
    min-height: 700px;
    padding-block: 110px 64px;
  }

  .image-manifesto-caption {
    justify-self: start;
    min-width: min(100%, 260px);
    padding: 17px 0;
    background: transparent;
    font-size: 8px;
  }

  .image-manifesto-copy h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .service-card {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
    padding-block: 40px;
  }

  .service-card:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .service-copy h3 {
    font-size: 32px;
  }

  .service-copy ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .technical-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .technical-card-copy {
    padding: 28px 22px 32px;
  }

  .technical-card h3 {
    font-size: 31px;
  }

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

  .process-copy h3 {
    min-height: auto;
  }

  .process-quote {
    grid-template-columns: 1fr;
    margin-top: 84px;
  }

  .principles-lead {
    margin-top: 46px;
    margin-bottom: 66px;
  }

  .principles-lead .section-title {
    font-size: clamp(36px, 10vw, 49px);
  }

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

  .principle {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

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

  .about-portrait {
    padding: 20px 0 0 20px;
  }

  .portrait-frame {
    max-width: 420px;
  }

  .about-copy .eyebrow {
    margin-top: 46px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-action {
    padding: 25px;
  }

  .footer-main,
  .footer-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main > p {
    order: 3;
  }

  .back-to-top,
  .footer-meta div {
    justify-self: start;
    justify-content: flex-start;
  }
}

/* Large desktop and high-resolution displays */
@media (min-width: 1680px) {
  :root {
    --shell: min(80vw, 1920px);
    --gutter: clamp(68px, 4.25vw, 108px);
    --section-space: clamp(140px, 8.5vw, 196px);
    --header-height: 98px;
  }

  body {
    font-size: 19px;
  }

  .site-header.is-scrolled {
    height: 82px;
  }

  .brand {
    gap: 15px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 15px;
  }

  .site-nav {
    gap: clamp(24px, 2vw, 42px);
    font-size: 15px;
  }

  .nav-contact {
    min-height: 52px;
    padding-inline: 22px 19px;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(560px, 0.96fr);
    gap: clamp(90px, 6vw, 150px);
  }

  .eyebrow {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 980px;
    margin-bottom: 38px;
    font-size: clamp(88px, 4.55vw, 116px);
  }

  .hero-intro {
    max-width: 780px;
    margin-bottom: 48px;
    font-size: 23px;
  }

  .button {
    min-height: 66px;
    padding-inline: 29px 24px;
    font-size: 16px;
  }

  .text-link {
    font-size: 16px;
  }

  .blueprint {
    padding: 22px 22px 19px;
  }

  .blueprint-topline,
  .blueprint-note {
    font-size: 11px;
  }

  .hero-foot {
    font-size: 13px;
  }

  .section-marker {
    font-size: 13px;
  }

  .section-marker span:first-child {
    width: 38px;
    height: 38px;
  }

  .section-title {
    font-size: clamp(62px, 3.8vw, 84px);
  }

  .section-intro {
    max-width: 650px;
    font-size: 18px;
  }

  .problem-content {
    max-width: 1260px;
  }

  .problem .section-title {
    max-width: 1120px;
  }

  .outcome-card {
    min-height: 395px;
    padding: 48px clamp(36px, 3vw, 58px) 54px;
  }

  .outcome-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 64px;
  }

  .outcome-card h3 {
    font-size: 30px;
  }

  .outcome-card > p:last-child {
    max-width: 390px;
    font-size: 17px;
  }

  .image-manifesto-copy h2 {
    font-size: clamp(58px, 3.55vw, 78px);
  }

  .image-manifesto-copy > p:last-child {
    font-size: 19px;
  }

  .image-manifesto-caption {
    font-size: 12px;
  }

  .service-card {
    grid-template-columns: 150px minmax(0, 1fr) 190px;
    padding-block: 66px;
  }

  .service-kicker {
    font-size: 13px;
  }

  .service-copy h3 {
    font-size: clamp(46px, 2.6vw, 62px);
  }

  .service-copy > p:not(.service-kicker) {
    font-size: 17px;
  }

  .service-copy ul {
    font-size: 14px;
  }

  .service-symbol {
    width: 148px;
    height: 148px;
  }

  .technical-card h3 {
    font-size: clamp(44px, 2.45vw, 58px);
  }

  .technical-card-kicker,
  .technical-card-number {
    font-size: 13px;
  }

  .technical-card-copy div > p:last-child {
    max-width: 650px;
    font-size: 17px;
  }

  .process-number {
    font-size: 14px;
  }

  .process-copy h3 {
    min-height: 62px;
    font-size: 27px;
  }

  .process-copy p {
    font-size: 16px;
  }

  .process-quote blockquote {
    font-size: clamp(38px, 2.35vw, 54px);
  }

  .principles-lead {
    max-width: 1320px;
  }

  .principles-lead .section-title {
    font-size: clamp(66px, 4.2vw, 92px);
  }

  .principles-copy {
    font-size: 20px;
  }

  .principle h3 {
    font-size: 27px;
  }

  .principle p {
    font-size: 16px;
  }

  .portrait-frame {
    max-width: 520px;
  }

  .portrait-label span:first-child {
    font-size: 20px;
  }

  .about-text {
    max-width: 810px;
    font-size: 20px;
  }

  .contact-copy .section-title {
    max-width: 1050px;
    font-size: clamp(62px, 3.8vw, 84px);
  }

  .contact-copy > p {
    max-width: 760px;
    font-size: 20px;
  }

  .contact-action {
    padding: 44px;
  }

  .contact-mail {
    font-size: 28px;
  }

  .contact-phone {
    font-size: 18px;
  }

  .footer-main > p,
  .back-to-top {
    font-size: 14px;
  }

  .footer-meta {
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-layer,
  .parallax-image,
  .background-depth-image,
  .parallax-background,
  .hero::before,
  .process::before {
    transform: none !important;
  }
}

/* Legal pages */
.legal-page {
  background: var(--paper-light);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  height: 82px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.legal-back svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.legal-main {
  min-height: calc(100svh - 82px);
  padding-block: clamp(72px, 9vw, 130px);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 760px);
  gap: clamp(46px, 9vw, 140px);
}

.legal-content h1 {
  margin-bottom: 55px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-content h2 {
  margin: 46px 0 15px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #46515d;
  font-size: 15px;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a.legal-action {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 22px;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content .legal-note {
  margin-top: 44px;
  padding: 18px 20px;
  border-left: 3px solid var(--copper);
  background: var(--paper);
  color: var(--slate);
  font-size: 13px;
}

@media (max-width: 680px) {
  .legal-header {
    height: 72px;
  }

  .legal-header .brand-name {
    display: none;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-content h1 {
    margin-bottom: 42px;
  }
}
