:root {
  --paper: #f1eee5;
  --paper-bright: #faf8f2;
  --ink: #151512;
  --muted: #69675f;
  --accent: #ff5a36;
  --line: rgba(21, 21, 18, 0.22);
  --gutter: clamp(1.25rem, 3.25vw, 3.5rem);
  --sans: "Helvetica Neue", "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --serif: "Iowan Old Style", "Bodoni 72", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color-scheme: light;
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

@supports (color: oklch(0.7 0.2 35)) {
  :root {
    --accent: oklch(0.7 0.225 35);
    --line: color-mix(in oklch, var(--ink) 22%, transparent);
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-contact-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 0.16rem solid var(--accent);
  outline-offset: 0.32rem;
}

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

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  transition: clip-path 900ms cubic-bezier(0.76, 0, 0.24, 1) 520ms;
  clip-path: inset(0 0 0 0);
}

.intro::after {
  position: absolute;
  width: min(22rem, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 238, 229, 0.28);
  border-radius: 50%;
  content: "";
  transform: scale(0.2);
  animation: intro-pulse 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro__mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 7rem);
  font-style: italic;
  letter-spacing: -0.07em;
}

.intro__mark i,
.wordmark i {
  display: inline-block;
  width: 0.72em;
  height: 0.11em;
  margin: 0 0.18em 0.18em;
  transform: rotate(-54deg);
  background: var(--accent);
}

.intro p {
  position: absolute;
  bottom: 2rem;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.is-ready .intro {
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.no-js .intro {
  display: none;
}

@keyframes intro-pulse {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(3.1);
  }
}

#signal-field {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: multiply;
  transition: opacity 500ms ease;
}

#signal-field.is-dark {
  opacity: 0.34;
  mix-blend-mode: screen;
}

#signal-field.is-accent {
  opacity: 0.44;
  mix-blend-mode: multiply;
}

.paper-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: none;
  width: 3.5rem;
  height: 3.5rem;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: translate3d(calc(var(--cursor-x, -100px) - 50%), calc(var(--cursor-y, -100px) - 50%), 0)
    scale(var(--cursor-scale, 1));
  mix-blend-mode: difference;
  transition: width 200ms ease, height 200ms ease, border-color 200ms ease;
  will-change: transform;
}

.cursor-aura span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  height: 0.2rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
}

.cursor-aura.is-active {
  width: 5rem;
  height: 5rem;
}

.cursor-aura.is-holding {
  width: 7rem;
  height: 7rem;
  border-color: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.2rem var(--gutter);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
}

body.is-scrolled .site-header {
  border-bottom-color: rgba(21, 21, 18, 0.08);
  background: rgba(241, 238, 229, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body[data-active-theme="dark"] .site-header {
  color: var(--paper);
}

body.is-scrolled[data-active-theme="dark"] .site-header {
  border-bottom-color: rgba(241, 238, 229, 0.1);
  background: rgba(21, 21, 18, 0.9);
}

body[data-active-theme="accent"] .site-header {
  color: var(--ink);
}

body[data-active-theme="accent"] .site-header .wordmark i {
  background: var(--ink);
}

body.is-scrolled[data-active-theme="accent"] .site-header {
  border-bottom-color: rgba(21, 21, 18, 0.1);
  background: rgba(255, 90, 54, 0.9);
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  letter-spacing: -0.08em;
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: transform 180ms ease;
}

.site-navigation {
  display: flex;
  justify-self: center;
  gap: clamp(1.25rem, 3vw, 3.5rem);
}

.site-navigation a,
.header-contact {
  position: relative;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-navigation a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation a span {
  margin-right: 0.42rem;
  color: var(--accent);
  font-size: 0.52rem;
}

.header-contact {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: transform 180ms ease;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

main,
.site-footer {
  position: relative;
}

section {
  position: relative;
  background: var(--paper);
}

section > * {
  position: relative;
  z-index: 3;
}

.theme-dark {
  background: var(--ink);
  color: var(--paper);
}

.theme-accent {
  background: var(--accent);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: max(47.5rem, 100svh);
  overflow: hidden;
  padding: 7.5rem var(--gutter) 2.2rem;
  grid-template-rows: 1fr auto;
  touch-action: pan-y;
}

.hero::before {
  position: absolute;
  top: 18%;
  right: 14%;
  z-index: 1;
  width: clamp(15rem, 32vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translate3d(calc(var(--depth-x, 0) * -1), calc(var(--depth-y, 0) * -1), 0);
  transition: transform 220ms ease-out;
}

.hero__coordinate {
  position: absolute;
  top: 7.7rem;
  right: var(--gutter);
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__content {
  align-self: center;
  width: 100%;
  padding-top: 3rem;
}

.hero__eyebrow {
  margin: 0 0 clamp(1.2rem, 3vw, 2.8rem);
  padding-left: 0.18rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.hero__title {
  margin: 0;
  font-weight: 400;
}

.hero__brand {
  display: block;
  width: max-content;
  max-width: 100%;
  transform: translate3d(var(--brand-x, 0), var(--brand-y, 0), 0);
  font-family: var(--serif);
  font-size: clamp(5.3rem, 14.2vw, 13.5rem);
  font-style: italic;
  line-height: 0.68;
  letter-spacing: -0.095em;
  transition: transform 250ms ease-out;
}

.hero__statement {
  display: block;
  margin-top: clamp(1.7rem, 5vw, 4.4rem);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.4vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

.hero__statement em,
.section-heading em,
.about__intro em,
.contact h2 em {
  color: var(--accent);
  font-weight: 400;
}

.hero__lead {
  max-width: 37rem;
  margin: clamp(1.5rem, 3vw, 2.6rem) 0 0 0.3rem;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 2;
}

.hero__interaction {
  position: absolute;
  top: 40%;
  right: clamp(2rem, 8vw, 9rem);
  display: grid;
  justify-items: center;
  width: clamp(11rem, 18vw, 15rem);
}

.signal-trigger {
  position: relative;
  display: grid;
  width: clamp(9.5rem, 15vw, 12.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(241, 238, 229, 0.48);
  cursor: pointer;
  transition: color 350ms ease, background 350ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-trigger::before {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(21, 21, 18, 0.32);
  border-radius: 50%;
  content: "";
  animation: spin 18s linear infinite;
}

.signal-trigger:hover,
.signal-trigger:focus-visible,
.signal-trigger.is-firing {
  transform: scale(1.08);
  background: var(--ink);
  color: var(--paper);
}

.signal-trigger__orbit {
  position: absolute;
  top: 6%;
  left: 47%;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.45rem rgba(255, 90, 54, 0.16);
  transform-origin: 0.4rem calc(var(--orbit-radius, 5.6rem));
}

.signal-trigger__label {
  position: absolute;
  top: 47%;
  left: -4.6rem;
  transform: rotate(-90deg);
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.signal-trigger strong {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.25;
}

.hero__interaction p {
  width: 15rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}

.hero__rail {
  display: flex;
  align-items: center;
  align-self: end;
  gap: 0.8rem;
  padding-left: 6.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__rail i {
  width: 2.2rem;
  height: 1px;
  background: var(--line);
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: var(--gutter);
  display: grid;
  gap: 0.6rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__scroll i {
  width: 1px;
  height: 3.4rem;
  margin-left: 0.25rem;
  overflow: hidden;
  background: var(--line);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--ink);
  animation: scroll-cue 1800ms cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-cue {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(260%);
  }
}

.section-index {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.manifesto {
  display: grid;
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 11rem) var(--gutter) clamp(5rem, 8vw, 8rem);
  align-content: space-between;
}

.manifesto__copy {
  align-self: center;
  width: 100%;
  max-width: 90rem;
  margin: 10vh auto;
}

.manifesto__line {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.8vw, 5rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.manifesto__line:nth-child(even) {
  padding-left: clamp(0rem, 8vw, 7rem);
}

.manifesto__line span {
  position: relative;
  color: var(--accent);
  font-style: italic;
}

.manifesto__line span::after {
  position: absolute;
  right: -0.2rem;
  bottom: 0.08em;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
}

.manifesto__note {
  max-width: 31rem;
  margin: 0 0 0 auto;
  color: rgba(241, 238, 229, 0.58);
  font-size: 0.67rem;
  line-height: 1.8;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services,
.approach,
.about {
  padding: clamp(7rem, 12vw, 11rem) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.65fr) minmax(20rem, 1.6fr) minmax(15rem, 0.85fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.section-heading p {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.section-heading--light p {
  color: rgba(241, 238, 229, 0.58);
}

.service-interface {
  display: grid;
  min-height: 43rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(19rem, 0.78fr) minmax(30rem, 1.22fr);
}

.service-tabs {
  position: relative;
  z-index: 4;
  border-right: 1px solid var(--line);
}

.service-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 14.25rem;
  padding: 2rem clamp(1.2rem, 2.5vw, 2.8rem);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  grid-template-columns: 2.5rem 1fr auto;
  grid-template-rows: 1fr auto;
  text-align: left;
  transition: background 350ms ease, color 350ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab > span {
  padding-top: 0.55rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.service-tab strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.065em;
}

.service-tab small {
  align-self: end;
  grid-column: 2;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-tab i {
  align-self: center;
  grid-column: 3;
  grid-row: 1 / span 2;
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 300ms ease;
}

.service-tab:hover i,
.service-tab:focus-visible i,
.service-tab.is-active i {
  transform: rotate(45deg);
}

.service-tab.is-active {
  background: var(--ink);
  color: var(--paper);
}

.service-tab.is-active > span,
.service-tab.is-active small {
  color: rgba(241, 238, 229, 0.55);
}

.service-stage {
  --stage-x: 0;
  --stage-y: 0;
  position: relative;
  z-index: 3;
  min-height: 43rem;
  overflow: hidden;
  background: rgba(250, 248, 242, 0.44);
  contain: paint;
  view-transition-name: service-stage;
}

.service-stage__number {
  position: absolute;
  top: -0.17em;
  right: -0.02em;
  color: rgba(21, 21, 18, 0.05);
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 30rem);
  font-style: italic;
  line-height: 0.72;
  letter-spacing: -0.12em;
  transform: translate3d(calc(var(--stage-x) * -1.5rem), calc(var(--stage-y) * -1.5rem), 0);
  transition: transform 280ms ease-out;
}

.service-stage__orb {
  position: absolute;
  right: -6%;
  bottom: -17%;
  width: min(35rem, 55vw);
  aspect-ratio: 1;
  transform: translate3d(calc(var(--stage-x) * 2.5rem), calc(var(--stage-y) * 2.5rem), 0);
  border: 1px solid rgba(21, 21, 18, 0.18);
  border-radius: 50%;
  transition: transform 300ms ease-out;
}

.service-stage__orb::before,
.service-stage__orb::after,
.service-stage__orb i {
  position: absolute;
  border: 1px solid rgba(21, 21, 18, 0.17);
  border-radius: 50%;
  content: "";
}

.service-stage__orb::before {
  inset: 17%;
}

.service-stage__orb::after {
  inset: 35%;
  background: var(--accent);
  border-color: var(--accent);
  opacity: 0.88;
}

.service-stage__orb i:nth-child(1) {
  top: 3%;
  left: 52%;
  width: 1rem;
  height: 1rem;
  background: var(--ink);
}

.service-stage__orb i:nth-child(2) {
  top: 42%;
  left: -1%;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent);
}

.service-stage__orb i:nth-child(3) {
  right: 4%;
  bottom: 17%;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--paper);
}

.service-panel {
  position: absolute;
  top: 50%;
  left: clamp(2rem, 6vw, 6rem);
  z-index: 3;
  width: min(35rem, calc(100% - 4rem));
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 3rem));
  transition: opacity 420ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.service-panel__kicker {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-panel h3 {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.service-panel > p:not(.service-panel__kicker) {
  max-width: 32rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.service-panel ul {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.service-panel li {
  padding: 0.8rem 0.7rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-panel a {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.no-js .service-interface {
  grid-template-columns: 1fr;
}

.no-js .service-tabs,
.no-js .service-stage__number,
.no-js .service-stage__orb {
  display: none;
}

.no-js .service-stage {
  display: grid;
  gap: 4rem;
  padding: 4rem var(--gutter);
}

.no-js .service-panel {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.approach {
  overflow: hidden;
}

.approach-route {
  position: relative;
  min-height: 34rem;
  padding-top: 4rem;
}

.approach-route svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-path {
  fill: none;
  stroke: rgba(241, 238, 229, 0.18);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.route-path--accent {
  stroke: var(--accent);
  stroke-dasharray: 10 990;
  stroke-dashoffset: var(--route-offset, 0);
  stroke-linecap: round;
  stroke-width: 3;
  transition: stroke-dasharray 500ms cubic-bezier(0.16, 1, 0.3, 1), stroke-dashoffset 500ms ease;
}

.approach-route ol {
  position: relative;
  display: grid;
  height: 30rem;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.approach-step {
  position: relative;
  align-self: start;
  padding: 1.2rem;
  cursor: default;
  opacity: 0.36;
  transition: opacity 350ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-step:nth-child(2) {
  align-self: end;
}

.approach-step:nth-child(3) {
  align-self: center;
}

.approach-step:nth-child(4) {
  align-self: start;
  margin-top: 1rem;
}

.approach-step::before {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--paper);
  border-radius: 50%;
  content: "";
  transition: background 250ms ease, transform 250ms ease;
}

.approach-step.is-active {
  opacity: 1;
  transform: translateY(-0.6rem);
}

.approach-step.is-active::before {
  transform: scale(1.35);
  background: var(--accent);
  border-color: var(--accent);
}

.approach-step > span {
  color: rgba(241, 238, 229, 0.46);
  font-size: 0.55rem;
  font-weight: 700;
}

.approach-step h3 {
  margin: 0.65rem 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.approach-step p {
  max-width: 12rem;
  margin: 0;
  color: rgba(241, 238, 229, 0.6);
  font-size: 0.67rem;
  line-height: 1.75;
}

.about {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(18rem, 1.12fr) minmax(16rem, 0.88fr);
  grid-template-rows: auto 1fr;
  gap: clamp(5rem, 9vw, 9rem);
  align-content: center;
}

.about__intro {
  grid-column: 1 / -1;
}

.about__intro > p {
  margin: 3rem 0 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about__intro h2 {
  max-width: 70rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 8.7rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.08em;
}

.about__facts {
  margin: 0;
}

.about__facts div {
  display: grid;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(7rem, 0.4fr) 1fr;
  align-items: baseline;
}

.about__facts dt {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about__facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__details {
  align-self: end;
  max-width: 34rem;
  padding-bottom: 1rem;
}

.about__details > p {
  margin: 0 0 3rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.about__details address {
  color: var(--muted);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem var(--gutter) 3rem;
  align-content: space-between;
}

.contact::before {
  position: absolute;
  top: 50%;
  right: -14vw;
  z-index: 1;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 21, 18, 0.25);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.contact__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact h2 {
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 14.5vw, 15.5rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.095em;
}

.contact h2 em {
  color: var(--paper-bright);
}

.contact__link {
  position: absolute;
  right: 9vw;
  bottom: 15%;
  display: grid;
  width: clamp(11rem, 17vw, 15rem);
  aspect-ratio: 1;
  padding: 1.5rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: color 350ms ease, background 350ms ease, transform 180ms ease;
}

.contact__link:hover,
.contact__link:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.contact__link span {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

.contact__link i {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-size: 1.4rem;
  font-style: normal;
}

.contact > p {
  max-width: 30rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.8;
}

.contact-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--sans);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    display 420ms allow-discrete, overlay 420ms allow-discrete;
}

.contact-dialog[open] {
  opacity: 1;
  transform: scale(1);
}

@starting-style {
  .contact-dialog[open] {
    opacity: 0;
    transform: scale(0.985);
  }
}

.contact-dialog::backdrop {
  background: rgba(21, 21, 18, 0.82);
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 420ms ease, display 420ms allow-discrete, overlay 420ms allow-discrete;
}

.contact-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .contact-dialog[open]::backdrop {
    opacity: 0;
  }
}

.contact-dialog__surface {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(21, 21, 18, 0.97);
}

.contact-dialog__surface::before,
.contact-dialog__surface::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(241, 238, 229, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-dialog__surface::before {
  top: 12%;
  left: -12vw;
  width: 43vw;
  aspect-ratio: 1;
}

.contact-dialog__surface::after {
  right: -7vw;
  bottom: -25vw;
  width: 52vw;
  aspect-ratio: 1;
  border-color: rgba(255, 90, 54, 0.28);
}

.contact-dialog__header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  min-height: 5.6rem;
  padding: 1.2rem var(--gutter);
  border-bottom: 1px solid rgba(241, 238, 229, 0.14);
  background: rgba(21, 21, 18, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.contact-dialog__header .wordmark {
  color: var(--paper);
}

.contact-dialog__header > p {
  display: flex;
  justify-self: center;
  gap: 2rem;
  margin: 0;
  color: rgba(241, 238, 229, 0.5);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-dialog__close {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-dialog__close i,
.contact-dialog__close i::after {
  display: block;
  width: 1.55rem;
  height: 1px;
  background: currentColor;
}

.contact-dialog__close i {
  transform: rotate(45deg);
}

.contact-dialog__close i::after {
  content: "";
  transform: rotate(-90deg);
}

.contact-dialog__body {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100dvh - 5.6rem);
  padding: clamp(5rem, 8vw, 8rem) var(--gutter) 5rem;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(34rem, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  transition: opacity 420ms ease, filter 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dialog__intro {
  position: sticky;
  top: 10rem;
  align-self: start;
  max-width: 35rem;
}

.contact-dialog__intro h2,
.contact-dialog__result h2 {
  margin: 2.8rem 0 2rem;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.09em;
}

.contact-dialog__intro h2 em,
.contact-dialog__result h2 em {
  color: var(--accent);
  font-weight: 400;
}

.contact-dialog__intro > p {
  max-width: 27rem;
  margin: 0;
  color: rgba(241, 238, 229, 0.58);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  line-height: 1.75;
}

.contact-progress {
  max-width: 27rem;
  margin-top: clamp(4rem, 8vh, 7rem);
}

.contact-progress > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 0.7rem;
}

.contact-progress span {
  color: rgba(241, 238, 229, 0.48);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.contact-progress strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
}

.contact-progress > i {
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(241, 238, 229, 0.18);
}

.contact-progress > i span {
  display: block;
  width: var(--contact-progress, 0%);
  height: 100%;
  background: var(--accent);
  transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-form {
  width: min(100%, 58rem);
  justify-self: end;
}

.project-selector {
  margin: 0;
  padding: 0;
  border: 0;
}

.project-selector legend,
.signal-form__section-title {
  width: 100%;
  margin: 0 0 1.15rem;
  color: rgba(241, 238, 229, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-selector legend span,
.signal-form__section-title span {
  margin-right: 0.8rem;
  color: var(--accent);
}

.project-options {
  display: grid;
  border-top: 1px solid rgba(241, 238, 229, 0.22);
  border-bottom: 1px solid rgba(241, 238, 229, 0.22);
  grid-template-columns: repeat(4, 1fr);
}

.project-options label {
  position: relative;
  display: grid;
  min-height: 9rem;
  padding: 1.2rem;
  overflow: hidden;
  border-right: 1px solid rgba(241, 238, 229, 0.22);
  cursor: pointer;
  align-content: end;
  transition: background 300ms ease, color 300ms ease;
}

.project-options label:last-child {
  border-right: 0;
}

.project-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.project-options label > span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-options label > i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(241, 238, 229, 0.45);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 700;
}

.project-options label:has(input:checked) {
  background: var(--accent);
  color: var(--ink);
}

.project-options label:has(input:checked) > i {
  color: rgba(21, 21, 18, 0.58);
}

.project-options input:focus-visible + span {
  outline: 0.15rem solid var(--accent);
  outline-offset: 0.45rem;
}

.signal-form__section {
  margin-top: clamp(3.5rem, 7vh, 6rem);
}

.signal-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

.signal-control {
  position: relative;
  min-height: 6.6rem;
  border-bottom: 1px solid rgba(241, 238, 229, 0.22);
  transition: border-color 250ms ease;
}

.signal-control:focus-within {
  border-bottom-color: var(--accent);
}

.signal-control input,
.signal-control textarea {
  width: 100%;
  height: 100%;
  padding: 2.65rem 5rem 0.85rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.45;
}

.signal-control textarea {
  min-height: 12rem;
  padding-top: 3.2rem;
  resize: vertical;
}

.signal-control label {
  position: absolute;
  top: 2.7rem;
  left: 0;
  color: rgba(241, 238, 229, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  pointer-events: none;
  transition: top 220ms ease, color 220ms ease, font-size 220ms ease;
}

.signal-control > span {
  position: absolute;
  top: 2.85rem;
  right: 0;
  color: rgba(241, 238, 229, 0.32);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-control input:focus ~ label,
.signal-control input:not(:placeholder-shown) ~ label,
.signal-control textarea:focus ~ label,
.signal-control textarea:not(:placeholder-shown) ~ label {
  top: 0.75rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-form.was-validated .signal-control:has(:invalid) {
  border-bottom-color: var(--accent);
}

.signal-consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  margin-top: 2rem;
  cursor: pointer;
  color: rgba(241, 238, 229, 0.58);
  font-size: 0.62rem;
  line-height: 1.65;
}

.signal-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.signal-consent i {
  position: relative;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.08rem;
  border: 1px solid rgba(241, 238, 229, 0.45);
  transition: background 220ms ease, border-color 220ms ease;
}

.signal-consent i::after {
  position: absolute;
  top: 0.18rem;
  left: 0.35rem;
  width: 0.28rem;
  height: 0.52rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}

.signal-consent input:checked + i {
  border-color: var(--accent);
  background: var(--accent);
}

.signal-consent input:checked + i::after {
  opacity: 1;
}

.signal-consent input:focus-visible + i {
  outline: 0.15rem solid var(--accent);
  outline-offset: 0.28rem;
}

.signal-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  min-height: 13rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(241, 238, 229, 0.22);
}

.signal-form__footer > p {
  max-width: 18rem;
  margin: 0 0 1rem;
  color: rgba(241, 238, 229, 0.42);
  font-size: 0.55rem;
  line-height: 1.75;
}

.signal-form__footer > p span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.signal-form__submit {
  position: relative;
  display: grid;
  width: 11rem;
  aspect-ratio: 1;
  padding: 1.35rem;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  transition: background 300ms ease, color 300ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-form__submit:hover,
.signal-form__submit:focus-visible {
  transform: scale(1.06);
  background: var(--paper);
}

.signal-form__submit i {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
}

.contact-dialog__result {
  position: fixed;
  inset: 5.6rem 0 0;
  z-index: 8;
  display: grid;
  min-height: calc(100dvh - 5.6rem);
  padding: clamp(5rem, 8vw, 8rem) var(--gutter);
  overflow-y: auto;
  background: rgba(21, 21, 18, 0.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(2rem);
  grid-template-columns: minmax(18rem, 0.72fr) minmax(28rem, 1.28fr);
  grid-template-rows: 1fr auto;
  gap: 3rem clamp(4rem, 9vw, 10rem);
  transition: opacity 420ms ease, visibility 0s linear 420ms,
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dialog.is-reviewing .contact-dialog__surface {
  overflow: hidden;
}

.contact-dialog.is-reviewing .contact-dialog__body {
  opacity: 0.08;
  pointer-events: none;
  filter: blur(12px);
  transform: scale(0.985);
}

.contact-dialog.is-reviewing .contact-dialog__result {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 80ms, 0s, 80ms;
}

.contact-dialog__result > div:first-child > p:first-child {
  margin: 0;
  color: var(--accent);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-dialog__result > div:first-child > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: rgba(241, 238, 229, 0.58);
  font-size: 0.78rem;
  line-height: 1.85;
}

.contact-review {
  align-self: center;
  margin: 0;
  border-top: 1px solid rgba(241, 238, 229, 0.22);
}

.contact-review > div {
  display: grid;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(241, 238, 229, 0.22);
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
}

.contact-review dt {
  color: rgba(241, 238, 229, 0.38);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-review dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  white-space: pre-wrap;
}

.contact-result__actions {
  position: relative;
  display: flex;
  gap: 1.1rem;
  grid-column: 2;
  align-items: center;
}

.contact-result__actions button {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(241, 238, 229, 0.38);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.contact-result__actions button:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.contact-result__actions button:hover,
.contact-result__actions button:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.contact-result__actions button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-dialog.is-sent .contact-dialog__result {
  background: color-mix(in oklab, var(--ink) 92%, var(--accent));
}

.contact-dialog.is-sent .contact-review {
  opacity: 0.58;
  transition: opacity 420ms ease;
}

.contact-result__actions > p {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  margin: 0;
  color: var(--accent);
  font-size: 0.55rem;
}

.site-footer {
  z-index: 4;
  display: grid;
  padding: 2.5rem var(--gutter);
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.site-footer p {
  margin: 0;
  color: rgba(241, 238, 229, 0.52);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p:last-child {
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  clip-path: inset(0 0 30% 0);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.js .manifesto__line:nth-child(2) {
  transition-delay: 80ms;
}

.js .manifesto__line:nth-child(3) {
  transition-delay: 160ms;
}

.js .manifesto__line:nth-child(4) {
  transition-delay: 240ms;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
}

::view-transition-old(service-stage) {
  animation: service-stage-out 360ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

::view-transition-new(service-stage) {
  animation: service-stage-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes service-stage-out {
  to {
    opacity: 0;
    transform: translateY(-1.5rem) scale(0.985);
  }
}

@keyframes service-stage-in {
  from {
    opacity: 0;
    transform: translateY(1.8rem) scale(0.985);
  }
}

@supports (animation-timeline: scroll()) {
  .site-header::after {
    animation: document-progress linear both;
    animation-timeline: scroll(root);
  }

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

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-aura {
    display: block;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    justify-self: end;
    padding: 0.5rem 0;
    cursor: pointer;
  }

  .menu-toggle span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    transition: transform 300ms ease;
  }

  .menu-toggle i::after {
    content: "";
    transform: translateY(0.45rem);
  }

  .is-menu-open .menu-toggle i {
    transform: rotate(45deg);
  }

  .is-menu-open .menu-toggle i::after {
    transform: rotate(-90deg);
  }

  .site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    width: 100vw;
    height: 100svh;
    padding: 8rem var(--gutter) 3rem;
    transform: translateY(-105%);
    background: var(--ink);
    color: var(--paper);
    justify-self: stretch;
    place-content: center stretch;
    gap: 0;
    transition: transform 650ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-navigation a {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(241, 238, 229, 0.2);
    font-family: var(--serif);
    font-size: clamp(2.6rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    text-transform: none;
  }

  .site-navigation a span {
    display: inline-block;
    width: 2.2rem;
    font-family: var(--sans);
    font-size: 0.56rem;
  }

  .is-menu-open .site-navigation {
    transform: translateY(0);
  }

  .is-menu-open .site-header {
    color: var(--paper) !important;
  }

  .header-contact {
    display: none;
  }

  .hero__interaction {
    top: auto;
    right: var(--gutter);
    bottom: 5.2rem;
  }

  .hero__interaction p {
    width: 11rem;
  }

  .hero__rail {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading p {
    grid-column: 2;
  }

  .service-interface {
    grid-template-columns: minmax(15rem, 0.75fr) 1.25fr;
  }

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

  .service-panel li {
    padding-bottom: 0.55rem;
  }

  .approach-route svg {
    opacity: 0.5;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 4.8rem;
  }

  .site-header {
    min-height: 4.8rem;
    padding-block: 1rem;
  }

  .wordmark {
    font-size: 1.3rem;
  }

  .hero {
    min-height: max(46rem, 100svh);
    padding-top: 6rem;
  }

  .hero::before {
    top: 19%;
    right: -26%;
    width: 72vw;
  }

  .hero__coordinate {
    top: 5.6rem;
    font-size: 0.48rem;
  }

  .hero__content {
    align-self: start;
    padding-top: 16vh;
  }

  .hero__brand {
    font-size: clamp(4.2rem, 20.5vw, 8.5rem);
  }

  .hero__statement {
    max-width: 95%;
    margin-top: 2.2rem;
    font-size: clamp(2.8rem, 13.5vw, 5.2rem);
  }

  .hero__lead {
    max-width: 85%;
    font-size: 0.72rem;
  }

  .hero__interaction {
    right: 0.8rem;
    bottom: 3.8rem;
    transform: scale(0.72);
    transform-origin: bottom right;
  }

  .hero__scroll {
    bottom: 1.5rem;
  }

  .manifesto {
    min-height: 92svh;
  }

  .manifesto__copy {
    margin: 8vh 0;
  }

  .manifesto__line {
    font-size: clamp(1rem, 5.9vw, 2.65rem);
    line-height: 1.45;
    white-space: nowrap;
  }

  .manifesto__line:nth-child(even) {
    padding-left: 0;
  }

  .manifesto__line:nth-child(even) {
    padding-left: 0;
  }

  .manifesto__note {
    margin-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin: 2.2rem 0 1.5rem;
    font-size: clamp(3.3rem, 16vw, 6rem);
  }

  .section-heading p {
    max-width: 21rem;
  }

  .service-interface {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .service-tab {
    display: grid;
    min-height: 7.5rem;
    padding: 1rem 0.7rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .service-tab:last-child {
    border-right: 0;
  }

  .service-tab > span {
    padding: 0;
  }

  .service-tab strong {
    align-self: end;
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  .service-tab small {
    display: none;
  }

  .service-tab i {
    position: absolute;
    top: 0.8rem;
    right: 0.7rem;
    font-size: 0.85rem;
  }

  .service-stage {
    min-height: 40rem;
  }

  .service-stage__number {
    top: 0.05em;
    font-size: 14rem;
  }

  .service-stage__orb {
    right: -35%;
    bottom: -8%;
    width: 92vw;
  }

  .service-panel {
    top: 48%;
    left: 1.5rem;
    width: calc(100% - 3rem);
  }

  .service-panel h3 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .approach-route {
    min-height: auto;
    padding-top: 0;
  }

  .approach-route svg {
    display: none;
  }

  .approach-route ol {
    display: block;
    height: auto;
    border-top: 1px solid rgba(241, 238, 229, 0.18);
  }

  .approach-step,
  .approach-step:nth-child(2),
  .approach-step:nth-child(3),
  .approach-step:nth-child(4) {
    display: grid;
    margin: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(241, 238, 229, 0.18);
    grid-template-columns: 2rem 1fr;
    align-items: start;
  }

  .approach-step::before {
    position: absolute;
    top: 1.7rem;
    right: 0;
  }

  .approach-step h3 {
    margin: 0;
    font-size: 2.7rem;
  }

  .approach-step p {
    grid-column: 2;
    margin-top: 0.5rem;
  }

  .about {
    display: block;
  }

  .about__facts {
    margin: 5rem 0;
  }

  .about__details {
    margin-left: 12vw;
  }

  .contact {
    min-height: 50rem;
  }

  .contact__meta {
    display: grid;
    gap: 0.5rem;
  }

  .contact h2 {
    margin-top: 7rem;
    font-size: clamp(4.8rem, 22vw, 8rem);
    line-height: 0.76;
  }

  .contact__link {
    right: 1.2rem;
    bottom: 12%;
    width: 10rem;
  }

  .contact > p {
    max-width: 55%;
    font-size: 0.65rem;
  }

  .site-footer {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero__lead {
    max-width: 100%;
  }

  .hero__interaction {
    transform: scale(0.64);
  }

  .service-panel > p:not(.service-panel__kicker) {
    font-size: 0.72rem;
  }

  .contact > p {
    max-width: 50%;
  }
}

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

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

  .intro {
    display: none;
  }

  .site-header::after {
    display: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  #signal-field {
    opacity: 0.22;
  }
}

@media (max-width: 960px) {
  .contact-dialog__body {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .contact-dialog__intro {
    position: relative;
    top: auto;
    display: grid;
    max-width: none;
    grid-template-columns: 1.15fr 0.85fr;
    column-gap: 3rem;
  }

  .contact-dialog__intro .section-index,
  .contact-dialog__intro h2 {
    grid-column: 1;
  }

  .contact-dialog__intro > p,
  .contact-progress {
    grid-column: 2;
  }

  .contact-dialog__intro > p {
    align-self: end;
    grid-row: 2;
  }

  .contact-dialog__intro h2 {
    font-size: clamp(5.4rem, 13vw, 8rem);
  }

  .contact-progress {
    align-self: end;
    width: 100%;
    max-width: none;
    margin-top: 2.5rem;
  }

  .signal-form {
    width: 100%;
    justify-self: stretch;
  }

  .contact-dialog__result {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem;
  }

  .contact-dialog__result h2 {
    font-size: clamp(5.4rem, 13vw, 8rem);
  }

  .contact-result__actions {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .contact-dialog__header {
    min-height: 4.8rem;
    padding-block: 1rem;
    grid-template-columns: 1fr auto;
  }

  .contact-dialog__header > p {
    display: none;
  }

  .contact-dialog__body {
    min-height: calc(100dvh - 4.8rem);
    padding: 4rem var(--gutter);
    gap: 4rem;
  }

  .contact-dialog__intro {
    display: block;
  }

  .contact-dialog__intro h2 {
    margin: 2rem 0 1.6rem;
    font-size: clamp(4.6rem, 20vw, 7rem);
  }

  .contact-dialog__intro > p {
    font-size: 1.05rem;
  }

  .contact-progress {
    margin-top: 3rem;
  }

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

  .project-options label {
    min-height: 7.5rem;
  }

  .project-options label:nth-child(2) {
    border-right: 0;
  }

  .project-options label:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(241, 238, 229, 0.22);
  }

  .signal-form__grid {
    grid-template-columns: 1fr;
  }

  .signal-control {
    min-height: 6.2rem;
  }

  .signal-control input,
  .signal-control textarea {
    font-size: 1.15rem;
  }

  .signal-form__footer {
    min-height: 12rem;
  }

  .signal-form__submit {
    width: 9.5rem;
    font-size: 1.08rem;
  }

  .contact-dialog__result {
    inset: 4.8rem 0 0;
    min-height: calc(100dvh - 4.8rem);
    padding: 4rem var(--gutter);
  }

  .contact-dialog__result h2 {
    margin: 2rem 0 1.5rem;
    font-size: clamp(4.2rem, 19vw, 6.4rem);
  }

  .contact-review > div {
    grid-template-columns: 4.8rem 1fr;
  }

  .contact-result__actions {
    flex-wrap: wrap;
  }
}
