:root {
  --black: #101111;
  --white: #eeede8;
  --felt: #4a4c49;
  --warm: #c59d70;
  --rust: #9b4b37;
  --moss: #65705c;
  --air: #b9b7af;
  --chamber: #252625;
  --membrane: #d9d0c4;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.whisper {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 18rem;
  color: var(--felt);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.95rem 1.35rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--chamber);
}

.btn:hover::after,
.btn:focus-visible::after {
  width: 2.1rem;
}

.btn--light {
  background: var(--white);
  color: var(--black);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: var(--membrane);
}

.btn--ghost {
  background: transparent;
  color: inherit;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: transparent;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem var(--gutter) 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.logo span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--felt);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.6rem;
}

.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after,
.nav-desktop a:focus-visible::after {
  width: 1.15rem;
}

.nav-desktop a.is-active::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: 0.35rem;
  width: 4px;
  height: 4px;
  background: var(--warm);
}

.header-cta {
  display: none;
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0.45rem;
  width: 1.55rem;
  height: 1px;
  background: currentColor;
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle--close span {
  background: transparent;
}

.nav-toggle--close span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle--close span::after {
  top: 0;
  transform: rotate(-45deg);
}

.work-page .site-header,
.contact-page .site-header {
  color: var(--white);
}

.work-page .logo span,
.contact-page .logo span {
  color: var(--air);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  color: var(--white);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem var(--gutter) 2rem;
  transform: translateY(-101%);
  transition: transform 0.55s var(--ease);
}

.nav-mobile.is-open {
  transform: none;
}

.nav-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.nav-mobile ol {
  list-style: none;
  padding: 8vh 0 0;
  display: grid;
  gap: 1.6rem;
}

.nav-mobile ol a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 12vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.nav-mobile ol a.is-active::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--warm);
  margin-right: 0.7rem;
  vertical-align: 0.55rem;
}

.nav-mobile__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--air);
  font-size: 0.78rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 4rem;
  overflow: hidden;
  background: var(--white);
}

.hero__baffle {
  position: absolute;
  right: -6%;
  top: 28%;
  width: min(58vw, 620px);
  height: 62vh;
  background: var(--black);
  border-radius: 0 0 0 46% / 0 0 0 18%;
  box-shadow: -48px 28px 90px rgba(16, 17, 17, 0.28);
  pointer-events: none;
  z-index: 1;
  transform: translateY(16px);
  animation: settle 1.1s 0.35s var(--ease) forwards;
}

.hero__baffle::after {
  content: "";
  position: absolute;
  inset: 0 auto 18% 0;
  width: 2px;
  background: var(--warm);
  opacity: 0.85;
}

.hero__label {
  position: relative;
  color: var(--felt);
  animation: rise 1s 0.2s var(--ease) both;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 8vh;
  padding-right: min(22vw, 16rem);
}

.hero__controlled {
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  max-width: 12ch;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 2;
  animation: rise 1.1s 0.35s var(--ease) both;
}

.hero__aside {
  position: absolute;
  top: 6.2rem;
  right: var(--gutter);
  text-align: right;
  max-width: 12rem;
  z-index: 4;
  color: var(--felt);
  animation: rise 1.1s 0.7s var(--ease) both;
}

.hero__word {
  position: relative;
  z-index: 2;
  font-size: clamp(3.4rem, 16vw, 12.5rem);
  margin: 12vh 0 0;
  max-width: 10ch;
  mix-blend-mode: multiply;
  animation: rise 1.2s 0.15s var(--ease) both;
}

.hero__rule {
  display: block;
  width: 0;
  height: 1px;
  background: var(--black);
  margin: 7vh 0 2.2rem;
  animation: line 1s 0.9s var(--ease) forwards;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  animation: rise 1s 1.05s var(--ease) both;
}

.hero__copy p {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

.silence {
  min-height: 62vh;
  padding: 8vh var(--gutter);
  display: grid;
  align-content: space-between;
  background: var(--white);
}

.silence__label {
  justify-self: end;
  color: var(--felt);
}

.silence__rule {
  width: min(38vw, 280px);
  height: 1px;
  background: var(--air);
  margin: 12vh 0;
}

.silence p {
  max-width: 22rem;
  font-size: 1.05rem;
}

.noise {
  min-height: 100vh;
  padding: 10vh var(--gutter) 12vh;
  background: var(--membrane);
  position: relative;
  overflow: hidden;
}

.noise__frag {
  position: relative;
  margin: 0;
}

.noise__frag--faint {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(16, 17, 17, 0.22);
  max-width: 12ch;
  line-height: 0.92;
}

.noise__frag--hard {
  font-size: 0.92rem;
  font-weight: 500;
  margin: 8vh 0 0 auto;
  width: min(16rem, 72vw);
}

.noise__frag--dark {
  background: var(--black);
  color: var(--white);
  padding: 1.4rem 1.2rem;
  max-width: 16rem;
  margin: 10vh 0 0;
  font-size: 0.95rem;
}

.noise__frag--alone {
  margin: 14vh 0 0 8vw;
  font-size: 0.88rem;
  color: var(--felt);
  max-width: 14rem;
}

.noise__focus {
  margin-top: 16vh;
  max-width: 36rem;
}

.noise__focus h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.damping {
  position: relative;
  background: var(--white);
}

.damping__before,
.damping__after {
  padding: 18vh var(--gutter);
}

.damping__before p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5.4rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 12ch;
  line-height: 0.9;
}

.damping__plane {
  position: sticky;
  top: 12vh;
  height: 64vh;
  width: min(86vw, 1180px);
  margin-left: auto;
  background: var(--black);
  z-index: 2;
  box-shadow: 0 40px 80px rgba(16, 17, 17, 0.18);
}

.damping__plane::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--warm);
}

.damping__after {
  position: relative;
  z-index: 3;
  background: var(--white);
  min-height: 78vh;
}

.damping__after p {
  max-width: 28rem;
  margin-left: auto;
  font-size: 1.2rem;
}

.nodes {
  position: relative;
  min-height: 100vh;
  padding: 8vh var(--gutter) 12vh;
  background: var(--white);
  overflow: hidden;
}

.nodes__stage {
  position: absolute;
  right: 6%;
  top: 18%;
  width: min(34vw, 380px);
  height: 42vh;
  background: var(--chamber);
  border-radius: 0 0 38% 0 / 0 0 16% 0;
  opacity: 0.9;
  pointer-events: none;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-radius 0.5s var(--ease);
}

.nodes__stage[data-visual="1"] {
  background: var(--black);
}

.nodes__stage[data-visual="2"] {
  background: var(--felt);
  border-radius: 0;
}

.nodes__stage[data-visual="3"] {
  background: var(--warm);
}

.nodes__stage[data-visual="4"] {
  background: var(--chamber);
  width: min(18vw, 180px);
}

.nodes__stage[data-visual="5"] {
  background: var(--rust);
}

.nodes__stage[data-visual="6"] {
  background: var(--moss);
}

.nodes header {
  margin-bottom: 10vh;
}

.nodes header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.node {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  padding: 0.4rem 0 2.4rem;
  transition: color 0.35s var(--ease);
}

.node:hover,
.node:focus-within {
  color: var(--black);
}

.node:hover .node__name,
.node:focus-within .node__name {
  font-weight: 600;
}

.node__num {
  color: var(--felt);
  display: block;
  margin-bottom: 0.6rem;
}

.node__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.node p {
  font-size: 0.95rem;
  max-width: 22rem;
}

.node--huge {
  max-width: 34rem;
}

.node--huge .node__name {
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 0.92;
}

.node--narrow {
  max-width: 14rem;
  margin-left: auto;
}

.node--edge {
  margin-left: -0.4rem;
}

.node--low {
  margin-top: 8vh;
}

.node--invert {
  background: var(--black);
  color: var(--white);
  padding: 1.6rem 1.3rem;
  max-width: 20rem;
}

.node--invert .node__num {
  color: var(--warm);
}

.peak {
  position: relative;
  min-height: 90vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.peak::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 17, 0.15) 10%, #101111 92%);
  pointer-events: none;
}

.peak img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.peak__inner {
  position: relative;
  z-index: 2;
  padding: 10vh var(--gutter) 8vh;
}

.peak h2 {
  font-size: clamp(3rem, 13vw, 9.5rem);
  max-width: 8ch;
}

.peak__stack {
  display: grid;
  gap: 0.35rem;
  margin: 2rem 0 2.4rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36rem;
}

.quiet {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--membrane);
  padding: var(--gutter);
}

.quiet p {
  font-size: 0.95rem;
  max-width: 18rem;
}

.quiet span {
  display: block;
  margin-top: 1.4rem;
  color: var(--felt);
}

.work-zone {
  position: relative;
}

.work-zone--a {
  min-height: 92vh;
  background: var(--black);
}

.work-zone--a img {
  width: 100%;
  height: 92vh;
  object-fit: cover;
}

.work-zone--a figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 2rem;
  color: var(--white);
  max-width: 18rem;
  font-size: 0.88rem;
}

.work-zone--b {
  min-height: 80vh;
  background: var(--black);
  color: var(--white);
  padding: 12vh var(--gutter);
  display: grid;
  align-content: space-between;
}

.work-zone--b h3 {
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  max-width: 10ch;
}

.work-zone--c {
  min-height: 78vh;
  padding: 10vh var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 14rem) 1fr;
  gap: 2rem;
  background: var(--white);
}

.work-zone--c p {
  max-width: 16rem;
  font-size: 0.95rem;
}

.work-zone--d {
  min-height: 70vh;
  background: var(--chamber);
  color: var(--white);
  padding: 12vh var(--gutter);
}

.work-zone--d h3 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  max-width: 16ch;
  margin: 1.4rem 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
}

.work-zone--d p {
  max-width: 28rem;
}

.phase {
  min-height: 100vh;
  background: var(--chamber);
  color: var(--white);
  padding: 8vh var(--gutter);
  display: grid;
  align-content: space-between;
}

.phase p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 16ch;
  line-height: 1.02;
}

.phase__bottom {
  justify-self: end;
  text-align: right;
}

.chamber {
  padding: 12vh var(--gutter) 16vh;
  background: var(--white);
  display: grid;
  gap: 8vh;
}

.chamber h2 {
  font-size: clamp(2.4rem, 10vw, 7.5rem);
  max-width: 8ch;
}

.chamber__copy {
  max-width: 28rem;
  justify-self: end;
}

.chamber__copy p + p {
  margin-top: 1rem;
}

.chamber__image {
  width: min(42vw, 420px);
  height: 58vh;
  object-fit: cover;
  justify-self: start;
}

.principles {
  display: grid;
  gap: 1.4rem;
  max-width: 36rem;
}

.principles li {
  list-style: none;
  border-top: 1px solid var(--air);
  padding-top: 0.9rem;
  font-size: 1rem;
}

.chamber__void {
  min-height: 28vh;
}

.sequence {
  background: var(--white);
  padding: 0 0 8vh;
}

.seq {
  padding: 4vh var(--gutter);
}

.seq h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0.8rem;
}

.seq--listen {
  min-height: 28vh;
  color: var(--felt);
}

.seq--listen h3 {
  font-size: 1.1rem;
}

.seq--define {
  min-height: 36vh;
  background: var(--membrane);
}

.seq--define h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.seq--build {
  min-height: 52vh;
  background: var(--black);
  color: var(--white);
}

.seq--build h3 {
  font-size: clamp(3rem, 10vw, 7rem);
}

.seq--test {
  min-height: 32vh;
  max-width: 22rem;
  margin-left: auto;
  padding-right: var(--gutter);
}

.seq--refine {
  min-height: 26vh;
  color: var(--felt);
}

.seq--release {
  min-height: 48vh;
  background: var(--rust);
  color: var(--white);
}

.seq--release h3 {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.index {
  background: var(--air);
  padding: 8vh var(--gutter) 10vh;
}

.index header {
  margin-bottom: 3rem;
}

.index header h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.index-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--felt);
  font-size: 0.92rem;
}

.index-row:last-child {
  border-bottom: 1px solid var(--felt);
}

.index-row span:first-child,
.index-row span:last-child {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chamber);
}

.marquee {
  background: var(--chamber);
  color: var(--white);
  padding: 2.4rem 0;
  overflow: hidden;
}

.marquee__row {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.marquee__row + .marquee__row {
  margin-top: 0.8rem;
}

.marquee__a {
  animation: drift 42s linear infinite;
}

.marquee__b {
  animation: drift 51s linear infinite reverse;
}

.echo {
  min-height: 48vh;
  display: grid;
  align-content: center;
  padding: 8vh var(--gutter);
  background: var(--white);
}

.echo p {
  max-width: 20rem;
  color: var(--felt);
  font-size: 1rem;
}

.signal {
  min-height: 75vh;
  display: grid;
  align-content: center;
  padding: 10vh var(--gutter);
  background: var(--white);
  position: relative;
}

.signal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  width: 8px;
  height: 64%;
  background: var(--black);
}

.signal h2 {
  font-size: clamp(2rem, 7vw, 4.8rem);
  max-width: 12ch;
  margin-bottom: 1.4rem;
}

.signal p {
  max-width: 28rem;
  margin-bottom: 2rem;
}

.frequency {
  padding: 6vh var(--gutter) 8vh;
  background: var(--membrane);
}

.frequency h2 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  color: var(--felt);
}

.frequency__line {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.frequency a:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--black);
  color: var(--air);
  padding: 8vh var(--gutter) 3rem;
}

.site-footer nav,
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-bottom: 6vh;
  font-size: 0.82rem;
}

.site-footer small {
  display: block;
  margin-top: 2rem;
  font-size: 0.72rem;
  color: var(--felt);
}

.page-hero {
  min-height: 72vh;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 8vh;
  display: grid;
  align-content: space-between;
}

.page-hero h1 {
  font-size: clamp(3rem, 12vw, 9rem);
  max-width: 8ch;
}

.about-open {
  background: var(--white);
}

.about-body {
  padding: 0 0 8vh;
}

.about-block {
  padding: 10vh var(--gutter);
}

.about-block--quiet {
  min-height: 50vh;
  background: var(--membrane);
}

.about-block--wide p {
  max-width: 36rem;
  font-size: 1.15rem;
}

.about-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  margin-bottom: 1.4rem;
}

.service-open {
  background: var(--white);
  min-height: 86vh;
}

.service-open p {
  max-width: 24rem;
}

.service-item {
  padding: 10vh var(--gutter);
}

.service-item h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0.6rem 0 1rem;
}

.service-item--void {
  min-height: 80vh;
  display: grid;
  align-content: center;
}

.service-item--void h2 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  max-width: 10ch;
}

.service-item--image {
  display: grid;
  gap: 2rem;
  background: var(--membrane);
}

.service-item--image img {
  width: 100%;
  max-height: 46vh;
  object-fit: cover;
}

.service-item--dark {
  background: var(--black);
  color: var(--white);
  max-width: 34rem;
  margin-left: auto;
  width: 100%;
}

.service-item--type h2 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  max-width: 12ch;
}

.faq {
  padding: 8vh var(--gutter) 12vh;
  background: var(--white);
}

.faq h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.faq details {
  border-top: 1px solid var(--air);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--air);
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

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

.faq details p {
  margin-top: 0.8rem;
  max-width: 38rem;
  color: var(--felt);
}

.work-page .page-hero {
  background: var(--black);
  color: var(--white);
}

.contact-page {
  background: var(--white);
}

.contact-open {
  min-height: 70vh;
  background: var(--black);
  color: var(--white);
}

.contact-open .whisper,
.work-page .page-hero .whisper {
  color: var(--membrane);
}

.contact-open h1 {
  max-width: 10ch;
}

.contact-grid {
  padding: 8vh var(--gutter) 12vh;
  display: grid;
  gap: 6vh;
}

.contact-details p {
  margin: 0.3rem 0;
}

.form {
  display: grid;
  gap: 1.6rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.form input,
.form textarea {
  border: 0;
  border-bottom: 1px solid var(--air);
  background: transparent;
  padding: 0.7rem 0;
  border-radius: 0;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--black);
  border-bottom-width: 2px;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form .error {
  color: var(--rust);
  font-size: 0.82rem;
}

.form .success {
  color: var(--moss);
  font-size: 0.95rem;
}

.map-frame {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(1) contrast(0.92);
}

.legal {
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 12vh;
  max-width: 44rem;
}

.legal h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin-bottom: 1.4rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin: 2rem 0 0.6rem;
}

.legal p + p {
  margin-top: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    filter: contrast(0.2);
  }
  to {
    opacity: 1;
    filter: none;
  }
}

@keyframes settle {
  to {
    transform: none;
  }
}

@keyframes line {
  to {
    width: min(42vw, 420px);
  }
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 760px) {
  .index-row {
    grid-template-columns: 4.5rem 1.1fr 2fr 8rem;
    align-items: baseline;
    gap: 1.2rem;
  }

  .frequency__line {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.98rem;
  }

  .service-item--image {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .header-cta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    align-items: center;
    gap: 0.7rem;
  }

  .header-cta::after {
    content: "";
    width: 1.3rem;
    height: 1px;
    background: currentColor;
    transition: width 0.35s var(--ease);
  }

  .header-cta:hover::after {
    width: 2rem;
  }

  .hero__word {
    margin-left: 8vw;
  }

  .hero__copy {
    margin-left: 0;
    max-width: 26rem;
  }

  .noise__frag--faint {
    margin-left: 2vw;
  }

  .noise__frag--hard {
    margin-right: 8vw;
    margin-top: -4vh;
  }

  .noise__frag--dark {
    margin-left: 38vw;
  }

  .nodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vh 6vw;
  }

  .nodes header {
    grid-column: 1 / -1;
  }

  .node--huge {
    grid-column: 1 / -1;
  }

  .chamber {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .chamber h2 {
    grid-column: 1 / -1;
  }

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

  .contact-grid {
    grid-template-columns: 0.8fr 1.1fr;
  }
}

@media (max-width: 1099px) {
  .hero__baffle {
    width: 48vw;
    height: 22vh;
    top: auto;
    bottom: 6%;
    right: -12%;
    opacity: 0.88;
    z-index: 0;
  }

  .hero__word {
    mix-blend-mode: normal;
    z-index: 2;
  }

  .hero__aside {
    position: static;
    text-align: left;
    margin-top: 0.8rem;
  }

  .hero__top {
    padding-right: 0;
    flex-direction: column;
  }

  .work-zone--c {
    grid-template-columns: 1fr;
  }

  .nodes__stage {
    display: none;
  }

  .damping__plane {
    height: 42vh;
    width: 100%;
  }

  .phase {
    min-height: auto;
    gap: 12vh;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero__baffle,
  .hero__word,
  .hero__controlled,
  .hero__aside,
  .hero__copy,
  .hero__label {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero__rule {
    width: min(42vw, 420px);
  }

  .marquee__a,
  .marquee__b {
    animation: none;
    width: auto;
    white-space: normal;
  }
}
