:root {
  --color-light: #eff0ec;
  --color-dark: #171b1a;
  --color-green: #b9c993;
  --color-brown: #9b7563;
  --color-blue: #7d98a2;
  --color-lime: #c9e68d;
  --page-progress: 0;
  --page-turn: 0deg;
  --cursor-x: -40px;
  --cursor-y: -40px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: #171713;
  color: var(--color-dark);
}
button,
a {
  font: inherit;
}
button {
  color: inherit;
}
.nowrap-line {
  display: block;
  white-space: nowrap;
}
.transition-copy-mobile {
  display: none;
}

.site-main {
  position: relative;
  overflow-x: clip;
  min-height: 100vh;
  background: var(--color-light);
  color: var(--color-dark);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  transition: background .45s ease, color .45s ease;
}

.intro-sequence {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-light);
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 1.05s;
}
.intro-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  background: var(--color-dark);
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
.intro-panel.p1 {
  left: 0;
}
.intro-panel.p2 {
  left: 33%;
  transition-delay: .08s;
}
.intro-panel.p3 {
  right: 0;
  transition-delay: .16s;
}
.intro-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  font: 9vw/.8 Georgia, serif;
  letter-spacing: -.1em;
  transition: opacity .25s ease, transform .55s cubic-bezier(.6, 0, .2, 1), letter-spacing .55s ease;
}
.intro-lockup img {
  display: block;
  width: min(26vw, 320px);
  height: auto;
  filter: brightness(0) invert(1);
}
.intro-sequence>p {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  margin: 0;
  font: 8px "Courier New", monospace;
  letter-spacing: .22em;
  transition: opacity .25s ease;
}
.intro-sequence.done {
  pointer-events: none;
  visibility: hidden;
}
.intro-sequence.done .intro-panel {
  transform: translateY(-102%);
}
.intro-sequence.done .intro-lockup {
  opacity: 0;
  letter-spacing: .12em;
  transform: scale(.94);
}
.intro-sequence.done>p {
  opacity: 0;
}
html.skip-intro .intro-sequence {
  display: none;
}

.motion-section {
  --section-shift-soft: 0px;
  --section-shift-reverse: 0px;
  --section-turn-soft: 0deg;
  --section-turn-fast: 0deg;
  --section-turn-reverse: 0deg;
  --section-fade: 1;
}

.motion-pointer {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  opacity: .55;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, border-color .3s ease, background .3s ease;
}
.motion-pointer::before,
.motion-pointer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.motion-pointer::before {
  width: 6px;
  height: 1px;
}
.motion-pointer::after {
  width: 1px;
  height: 6px;
}
.motion-pointer i {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brown);
  transform: translateX(-50%);
}

.motion-hud {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: 18px;
  width: 34px;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--color-dark);
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}
.hud-compass {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(var(--page-turn));
}
.hud-compass::before,
.hud-compass::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.hud-compass::before {
  width: 38px;
  height: 1px;
}
.hud-compass::after {
  width: 1px;
  height: 38px;
}
.hud-compass i {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-brown);
  transform: translateX(-50%) rotate(45deg);
}
.hud-compass b {
  position: absolute;
  inset: 8px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  transform: rotate(var(--scroll-velocity));
  transition: transform .18s ease-out;
}
.hud-section {
  font: 11px "Courier New", monospace;
}
.hud-progress {
  position: relative;
  width: 1px;
  height: 92px;
  background: rgba(29, 29, 27, .25);
  overflow: hidden;
}
.hud-progress i {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleY(var(--page-progress));
  transform-origin: top;
}
.hud-percent {
  writing-mode: vertical-rl;
  font: 8px "Courier New", monospace;
  letter-spacing: .08em;
}

.paper-noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  mix-blend-mode: multiply;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(29, 29, 27, .28);
  background: rgba(238, 229, 211, .86);
  backdrop-filter: blur(12px);
}

.site-title {
  margin: 0;
  font-size: inherit;
  line-height: 1;
}
.wordmark {
  display: block;
  color: inherit;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 51px);
  line-height: 1;
  letter-spacing: -.08em;
}
.wordmark img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.contact-link {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .12em;
  white-space: nowrap;
}
.contact-link span {
  margin-left: 18px;
  font-size: 17px;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}
.desktop-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font: 8px "Courier New", monospace;
  letter-spacing: .14em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right .3s ease;
}
.desktop-nav a:hover::after {
  right: 0;
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 1680px;
  height: 240vh;
  max-height: none;
  padding: 0;
}
.hero-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100vh;
  min-height: 720px;
  padding: 100px 42px 38px;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-light);
}
.hero .hero-copy {
  transform: translate3d(0, var(--section-shift-reverse), 0);
  opacity: var(--section-fade);
  will-change: transform, opacity;
}
.hero .hero-meta {
  transform: translate3d(0, var(--section-shift-soft), 0);
  opacity: var(--section-fade);
}
.hero-grid {
  display: none;
  position: absolute;
  inset: 100px 0 0;
  z-index: -3;
}
.hero-meta {
  position: absolute;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font: 9px/1.2 "Courier New", monospace;
  letter-spacing: .12em;
}
.meta-left {
  left: 42px;
}
.meta-right {
  right: 42px;
  text-align: right;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  left: 7vw;
  top: 24vh;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font: 10px "Courier New", monospace;
  letter-spacing: .16em;
}
.eyebrow span {
  width: 44px;
  height: 1px;
  background: currentColor;
}
.hero-title {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(62px, 8vw, 130px);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: .96;
}
.hero-title .emphasis {
  display: block;
  margin-left: 7vw;
  color: var(--color-brown);
  font-style: italic;
}
.hero-statement {
  margin: 46px 0 0 39vw;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.8;
  letter-spacing: .08em;
  white-space: nowrap;
}

.hero-calibration {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 13vh;
  width: min(64vw, 900px);
  height: 34px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(29, 29, 27, .35);
  transform: translateX(-50%) translateY(var(--section-shift-soft));
}
.hero-calibration::before {
  content: "ROTATION / VALUE CALIBRATION";
  position: absolute;
  right: 0;
  bottom: 10px;
  font: 7px "Courier New", monospace;
  letter-spacing: .14em;
}
.hero-calibration i {
  width: 1px;
  height: 9px;
  align-self: end;
  background: currentColor;
}
.hero-calibration i:nth-child(4) {
  height: 20px;
  background: var(--color-brown);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(29, 29, 27, .28);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  right: -15vw;
  top: 1vh;
  width: 72vw;
  aspect-ratio: 1;
}
.hero .orbit-one {
  transform: rotate(var(--hero-turn));
}
.orbit-one i {
  position: absolute;
  left: 8%;
  top: 25%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brown);
}
.orbit-two {
  right: -3vw;
  top: 14vh;
  width: 48vw;
  aspect-ratio: 1;
  border-style: dashed;
}
.hero .orbit-two {
  transform: rotate(var(--hero-turn-reverse));
}
.orbit-two i,
.orbit-two b {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
}
.orbit-two i {
  top: 12%;
  left: 21%;
}
.orbit-two b {
  right: 6%;
  bottom: 32%;
  background: var(--color-green);
}
.scroll-cue {
  position: absolute;
  left: 42px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 9px "Courier New", monospace;
  letter-spacing: .15em;
}
.hero .scroll-cue {
  opacity: var(--section-fade);
  transform: translateY(var(--section-shift-reverse));
}
.scroll-cue i {
  display: block;
  width: 70px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}

.hero-transition {
  position: absolute;
  z-index: 16;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 128px 6vw 52px;
  overflow: hidden;
  color: var(--color-light);
  background: var(--color-brown);
  border-radius: 34px 34px 0 0;
  transform: translate3d(0, var(--section-reveal-y, 104%), 0);
  will-change: transform;
  box-shadow: 0 -24px 80px rgba(29, 29, 27, .22);
}
.hero-transition::before {
  content: "";
  position: absolute;
  top: -17vw;
  right: -10vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 229, 211, .38);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(238, 229, 211, .05), 0 0 0 14vw rgba(238, 229, 211, .05);
  transform: rotate(var(--hero-turn));
}
.hero-transition>span {
  align-self: start;
  font: 9px "Courier New", monospace;
  letter-spacing: .18em;
}
.hero-transition>b {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  font: italic 400 clamp(70px, 10vw, 158px)/.86 Georgia, "Yu Mincho", serif;
  letter-spacing: -.08em;
}
.hero-transition>i {
  position: absolute;
  right: 4vw;
  bottom: 3vw;
  color: rgba(238, 229, 211, .18);
  font: italic 40vw/.7 Georgia, serif;
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--color-dark);
  background: var(--color-brown);
  color: var(--color-light);
}
.marquee div {
  width: max-content;
  padding: 14px 0;
  font: 12px "Courier New", monospace;
  letter-spacing: .12em;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font: 9px "Courier New", monospace;
  letter-spacing: .16em;
}
.section-index h2 {
  margin: 0;
  font: inherit;
}
.motion-section .section-index {
  opacity: .15;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .9s cubic-bezier(.2, .7, .1, 1), opacity .7s ease;
}
.motion-section.is-in-view .section-index {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.intro-preview>h2,
.principles-heading h2,
.letter-content h2,
.footer>p {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s cubic-bezier(.2, .75, .1, 1);
}
.intro-preview.is-in-view>h2,
.principles.is-in-view .principles-heading h2,
.letter-section.is-in-view .letter-content h2,
.footer.is-in-view>p {
  clip-path: inset(0 0 0 0);
}
.section-index.light {
  color: rgba(238, 229, 211, .72);
  border-color: rgba(238, 229, 211, .35);
}
.intro-preview {
  min-height: 930px;
  padding: 62px 7vw 100px;
  position: relative;
}
.manifesto-kicker {
  margin: 85px 0 0;
  font: 10px "Courier New", monospace;
  letter-spacing: .16em;
}
.intro-preview>h2 {
  position: relative;
  z-index: 2;
  margin: 48px 0 70px;
  color: var(--color-brown);
  font: italic 400 clamp(72px, 10.5vw, 165px)/.86 Georgia, "Yu Mincho", serif;
  letter-spacing: -.08em;
}
.manifesto-body {
  width: 67%;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(29, 29, 27, .35);
}
.manifesto-body p {
  margin: 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 14px;
  line-height: 2;
}
.manifesto-body strong {
  color: var(--color-brown);
  font-weight: 400;
}
.manifesto-mark {
  position: absolute;
  right: -1vw;
  top: 115px;
  display: flex;
  align-items: center;
  color: rgba(216, 155, 40, .38);
  font: 34vw/.8 Georgia, serif;
  letter-spacing: -.18em;
}
.intro-preview .manifesto-mark {
  transform: translate3d(var(--section-shift-reverse), var(--section-shift-soft), 0) rotate(var(--section-turn-soft));
  will-change: transform;
}
.manifesto-mark i {
  font-style: normal;
}
.manifesto-mark b {
  color: rgba(180, 67, 46, .16);
  font-family: Arial, sans-serif;
  font-weight: 400;
  transform: rotate(-12deg);
}
.passport-stamp {
  position: absolute;
  left: 7vw;
  bottom: 82px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  color: var(--color-blue);
  font: 11px/1.45 "Courier New", monospace;
  letter-spacing: .13em;
  text-align: center;
  transform: rotate(12deg);
  opacity: .7;
}
.intro-preview .passport-stamp {
  transform: rotate(var(--section-turn-fast)) translateY(var(--section-shift-soft));
}
.intro-preview>h2 {
  transform: translate3d(0, var(--section-shift-reverse), 0);
}
.manifesto-body p:nth-child(1) {
  transform: translateY(var(--section-shift-soft));
}
.manifesto-body p:nth-child(2) {
  transform: translateY(var(--section-shift-reverse));
}
.manifesto-body p:nth-child(3) {
  transform: translateY(var(--section-shift-soft));
}

.service-section {
  position: relative;
  min-height: 1550px;
  padding: 62px 5vw 150px;
  overflow: hidden;
  background: #e7eae6;
}
.service-orbit {
  position: absolute;
  top: 5%;
  right: -16vw;
  width: 53vw;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 27, 26, .18);
  border-radius: 50%;
  transform: rotate(var(--section-turn-reverse));
  pointer-events: none;
}
.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.service-orbit::before {
  inset: 16%;
  border: 1px dashed rgba(23, 27, 26, .2);
}
.service-orbit::after {
  inset: 36%;
  border: 1px solid rgba(23, 27, 26, .14);
}
.service-orbit i,
.service-orbit b,
.service-orbit span {
  position: absolute;
  display: block;
  border-radius: 50%;
}
.service-orbit i {
  left: 5%;
  top: 28%;
  width: 11px;
  height: 11px;
  background: var(--color-blue);
}
.service-orbit b {
  right: 12%;
  bottom: 17%;
  width: 6px;
  height: 6px;
  background: var(--color-green);
}
.service-orbit span {
  left: 48%;
  top: 48%;
  width: 4%;
  aspect-ratio: 1;
  border: 1px solid var(--color-dark);
}
.service-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 7vw;
  align-items: end;
  padding: 92px 0 78px;
}
.service-heading>div>p {
  margin: 0 0 24px;
  font: 9px "Courier New", monospace;
  letter-spacing: .18em;
}
.service-heading h2 {
  margin: 0;
  font: 300 clamp(68px, 8vw, 126px)/.88 Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  letter-spacing: -.075em;
}
.service-heading>p {
  max-width: 510px;
  margin: 0 0 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 27, 26, .32);
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 14px;
  line-height: 2;
}
.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 470px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 26, .28);
  border-radius: 24px;
  background: rgba(244, 246, 243, .76);
  backdrop-filter: blur(7px);
  transition: transform .45s cubic-bezier(.2, .7, .1, 1), background .35s ease;
}
.service-card:nth-child(1) {
  grid-column: span 7;
  min-height: 520px;
  transform: translateY(var(--section-shift-soft));
}
.service-card:nth-child(2) {
  grid-column: span 5;
  min-height: 520px;
  transform: translateY(var(--section-shift-reverse));
  background: #dce5d9;
}
.service-card:nth-child(3) {
  transform: translateY(var(--section-shift-reverse));
  background: #d7e0e3;
}
.service-card:nth-child(4) {
  transform: translateY(var(--section-shift-soft));
  background: #dfdbd3;
}
.service-card:nth-child(5) {
  transform: translateY(var(--section-shift-reverse));
}
.service-card:hover {
  background: #f7f8f5;
}
.service-card-top {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid currentColor;
  font: 9px "Courier New", monospace;
  letter-spacing: .16em;
}
.service-card-top i {
  font-style: normal;
}
.service-card h3 {
  position: relative;
  z-index: 3;
  margin: 0 0 22px;
  font: 300 clamp(34px, 3.5vw, 57px)/.94 Arial, "Helvetica Neue", sans-serif;
  letter-spacing: -.065em;
}
.service-card p {
  position: relative;
  z-index: 3;
  max-width: 510px;
  margin: 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 12px;
  line-height: 1.9;
}
.service-card-dark {
  color: #f1f3ef;
  background: #536964;
}
.service-geometry {
  position: absolute;
  z-index: 1;
  right: -3%;
  top: 13%;
  width: min(23vw, 330px);
  aspect-ratio: 1;
  opacity: .68;
  transform: rotate(var(--section-turn-soft));
}
.service-card:nth-child(1) .service-geometry,
.service-card:nth-child(2) .service-geometry {
  width: min(29vw, 410px);
}
.service-geometry::before,
.service-geometry::after,
.service-geometry i,
.service-geometry b {
  content: "";
  position: absolute;
  display: block;
}
.geometry-brand::before {
  inset: 5%;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(125, 152, 162, .12);
}
.geometry-brand::after {
  inset: 25%;
  border-radius: 50%;
  background: #9fb5ae;
}
.geometry-brand i {
  left: 50%;
  top: -4%;
  width: 1px;
  height: 108%;
  background: currentColor;
  transform: rotate(42deg);
}
.geometry-brand b {
  left: 12%;
  top: 46%;
  width: 76%;
  height: 13%;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.geometry-goods::before {
  left: 17%;
  top: 9%;
  width: 66%;
  height: 82%;
  border-radius: 50% 50% 4px 4px;
  background: #9fb2a1;
}
.geometry-goods::after {
  left: 36%;
  bottom: 9%;
  width: 28%;
  height: 58%;
  border-radius: 50% 50% 0 0;
  background: #dce5d9;
}
.geometry-goods i {
  inset: 3%;
  border: 1px dashed currentColor;
  border-radius: 50%;
}
.geometry-goods b {
  right: 5%;
  top: 14%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-light);
}
.geometry-ip::before {
  inset: 12%;
  border: 4vw solid #9bb0b4;
  border-radius: 50%;
}
.geometry-ip::after {
  left: 8%;
  top: 49%;
  width: 84%;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}
.geometry-ip i {
  left: 42%;
  top: 42%;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #667c76;
}
.geometry-ip b {
  left: 4%;
  top: 4%;
  width: 22%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
}
.geometry-ec::before {
  inset: 10%;
  background: #b0bd97;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.geometry-ec::after {
  inset: 30%;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #dfdbd3;
}
.geometry-ec i {
  left: 49%;
  top: 2%;
  width: 1px;
  height: 96%;
  background: currentColor;
  transform: rotate(24deg);
}
.geometry-ec b {
  left: 2%;
  top: 49%;
  width: 96%;
  height: 1px;
  background: currentColor;
  transform: rotate(-24deg);
}
.geometry-digital::before {
  inset: 5%;
  border: 1px solid rgba(241, 243, 239, .78);
  border-radius: 50%;
}
.geometry-digital::after {
  inset: 22%;
  border: 1px dashed rgba(241, 243, 239, .72);
  border-radius: 50%;
}
.geometry-digital i {
  inset: 39%;
  background: var(--color-lime);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.geometry-digital b {
  left: 49%;
  top: 2%;
  width: 1px;
  height: 96%;
  background: rgba(241, 243, 239, .72);
  transform: rotate(67deg);
}

.principles {
  position: relative;
  padding: 62px 5vw 22vh;
  color: var(--color-light);
  background: var(--color-dark);
}
.principles-orbit {
  position: absolute;
  right: -18vw;
  top: 5%;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 229, 211, .14);
  border-radius: 50%;
  transform: rotate(var(--section-turn-reverse));
  pointer-events: none;
}
.principles-orbit::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(238, 229, 211, .18);
  border-radius: 50%;
}
.principles-orbit i,
.principles-orbit b {
  position: absolute;
  border-radius: 50%;
}
.principles-orbit i {
  left: 4%;
  top: 29%;
  width: 11px;
  height: 11px;
  background: var(--color-green);
}
.principles-orbit b {
  right: 10%;
  bottom: 16%;
  width: 6px;
  height: 6px;
  background: var(--color-brown);
}
.principles-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  align-items: end;
  padding: 96px 0 72px;
}
.principles-heading p {
  margin: 0;
  font: 10px/1.7 "Courier New", monospace;
  letter-spacing: .16em;
  color: var(--color-green);
}
.principles-heading h2 {
  margin: 0;
  font: italic 400 clamp(66px, 8vw, 124px)/.9 Georgia, "Yu Mincho", serif;
  letter-spacing: -.07em;
}
.story-stack {
  position: relative;
  display: block;
  border: 0;
}
.story-stack::after {
  content: "";
  display: block;
  height: 88vh;
}
.story-stack .story-card {
  --stack-offset: 0px;
  position: sticky;
  top: calc(112px + var(--stack-offset));
  height: calc(100vh - 142px - var(--stack-offset));
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(430px, 1.14fr);
  grid-template-rows: auto 1fr;
  gap: 24px 4vw;
  margin: 0 0 20vh;
  padding: 30px 34px 34px;
  overflow: hidden;
  color: var(--color-light);
  background: var(--color-brown);
  border: 1px solid rgba(238, 229, 211, .45);
  border-radius: 28px;
  box-shadow: 0 -18px 56px rgba(0, 0, 0, .18);
  transform: none;
  transition: none;
  will-change: auto;
}
.story-stack .story-card:nth-child(1) {
  --stack-offset: 0px;
  z-index: 1;
}
.story-stack .story-card:nth-child(2) {
  --stack-offset: 10px;
  z-index: 2;
}
.story-stack .story-card:nth-child(3) {
  --stack-offset: 20px;
  z-index: 3;
}
.story-stack .story-card:nth-child(4) {
  --stack-offset: 30px;
  z-index: 4;
  margin-bottom: 0;
}
.story-stack .card-two {
  color: var(--color-dark);
  background: #d9a53c;
}
.story-stack .card-three {
  color: var(--color-light);
  background: var(--color-blue);
}
.story-stack .card-four {
  color: var(--color-light);
  background: #6c7553;
}
.card-label {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font: 9px "Courier New", monospace;
  letter-spacing: .16em;
}
.card-label b {
  font-weight: 400;
}
.card-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 590px;
}
.card-copy small {
  display: block;
  margin-bottom: 22px;
  font: 9px "Courier New", monospace;
  letter-spacing: .15em;
}
.story-stack .card-copy h3 {
  margin: 0 0 32px;
  font: italic 400 clamp(48px, 5.25vw, 82px)/.96 Georgia, "Yu Mincho", serif;
  letter-spacing: -.065em;
}
.story-stack .card-copy p {
  max-width: 510px;
  margin: 0;
  color: currentColor;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 13px;
  line-height: 2;
}
.card-arrow {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 28px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-light);
  background: var(--color-dark);
  font: 400 54px/1 Arial, sans-serif;
  transform: rotate(90deg);
}
.card-two .card-arrow {
  color: var(--color-dark);
  background: var(--color-light);
}
.principle-visual {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: min(46vw, 610px);
  aspect-ratio: 1;
  transform: translateY(var(--section-shift-soft)) rotate(var(--story-turn-soft));
}
.principle-visual::before,
.principle-visual::after,
.principle-visual i,
.principle-visual b,
.principle-visual span {
  content: "";
  position: absolute;
  display: block;
}

.visual-one::before {
  inset: 8%;
  border: 1px solid rgba(238, 229, 211, .55);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(238, 229, 211, .05);
  transform: rotate(var(--story-turn-reverse));
}
.visual-one::after {
  left: 17%;
  top: 17%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 27%, #f4d89a 0 8%, #d89b28 31%, #742d21 72%);
  box-shadow: 32px 38px 58px rgba(60, 15, 7, .34);
}
.visual-one i {
  z-index: 2;
  left: 9%;
  top: 41%;
  width: 82%;
  height: 18%;
  border: 1px solid rgba(238, 229, 211, .8);
  border-radius: 50%;
  transform: rotate(var(--story-turn));
}
.visual-one b {
  z-index: 3;
  left: 43%;
  top: 6%;
  width: 14%;
  height: 88%;
  border: 1px solid rgba(238, 229, 211, .75);
  border-radius: 999px;
  transform: rotate(calc(var(--story-turn-reverse) + 28deg));
}
.visual-one span {
  z-index: 4;
  right: 5%;
  top: 23%;
  width: 13%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-light);
  box-shadow: 0 0 0 9px rgba(238, 229, 211, .18);
}

.visual-two::before {
  left: 15%;
  bottom: 9%;
  width: 70%;
  height: 78%;
  border-radius: 50% 50% 4px 4px;
  background: var(--color-blue);
  box-shadow: 26px 34px 0 rgba(29, 29, 27, .2);
  transform: rotate(var(--story-turn-small));
}
.visual-two::after {
  z-index: 2;
  left: 32%;
  bottom: 9%;
  width: 36%;
  height: 55%;
  border-radius: 50% 50% 0 0;
  background: #d9a53c;
}
.visual-two i {
  z-index: 3;
  right: 6%;
  top: 8%;
  width: 31%;
  aspect-ratio: 1;
  border: 2px solid var(--color-dark);
  border-radius: 50%;
  transform: rotate(var(--story-turn-reverse));
}
.visual-two i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6%;
  width: 1px;
  height: 112%;
  background: var(--color-dark);
  transform: rotate(37deg);
}
.visual-two b {
  z-index: 4;
  left: 9%;
  top: 28%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-light);
  box-shadow: inset -13px -9px 0 rgba(29, 29, 27, .12);
}
.visual-two span {
  z-index: 5;
  left: 52%;
  bottom: 2%;
  width: 3%;
  height: 88%;
  background: var(--color-brown);
  transform: rotate(calc(var(--story-turn-lean) + 39deg));
  transform-origin: bottom;
}

.visual-three::before {
  left: 6%;
  top: 14%;
  width: 60%;
  aspect-ratio: 1;
  border: 7vw solid #d89b28;
  border-radius: 50%;
  box-shadow: 28px 32px 40px rgba(4, 18, 54, .25);
  transform: rotate(var(--story-turn-medium));
}
.visual-three::after {
  right: 4%;
  bottom: 8%;
  width: 59%;
  aspect-ratio: 1;
  border: 6vw solid var(--color-light);
  border-radius: 50%;
  mix-blend-mode: screen;
  transform: rotate(var(--story-turn-reverse-soft));
}
.visual-three i {
  z-index: 3;
  left: 43%;
  top: 4%;
  width: 4px;
  height: 92%;
  background: var(--color-brown);
  transform: rotate(calc(var(--story-turn) + 45deg));
  transform-origin: 50% 50%;
}
.visual-three b {
  z-index: 4;
  left: 43%;
  top: 43%;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-brown);
  box-shadow: 0 0 0 14px rgba(238, 229, 211, .16);
}
.visual-three span {
  z-index: 5;
  left: 10%;
  bottom: 2%;
  width: 18%;
  aspect-ratio: 1;
  border: 1px solid var(--color-light);
  transform: rotate(var(--story-turn-reverse));
}

.visual-four::before {
  inset: 11%;
  background: var(--color-light);
  clip-path: polygon(50% 0, 60% 37%, 100% 50%, 62% 61%, 50% 100%, 39% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(30px 34px 0 rgba(29, 29, 27, .22));
  transform: rotate(var(--story-turn-large));
}
.visual-four::after {
  z-index: 2;
  inset: 30%;
  border-radius: 50%;
  background: var(--color-brown);
  box-shadow: inset -14px -11px 0 rgba(29, 29, 27, .18);
}
.visual-four i {
  z-index: 3;
  left: 49%;
  top: 3%;
  width: 2%;
  height: 94%;
  background: var(--color-green);
  transform: rotate(var(--story-turn-reverse));
  transform-origin: center;
}
.visual-four b {
  z-index: 3;
  left: 3%;
  top: 49%;
  width: 94%;
  height: 2%;
  background: var(--color-green);
  transform: rotate(var(--story-turn));
  transform-origin: center;
}
.visual-four span {
  z-index: 4;
  right: 4%;
  top: 7%;
  width: 18%;
  aspect-ratio: 1;
  border: 1px solid var(--color-light);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(238, 229, 211, .12);
}

.about-section {
  position: relative;
  min-height: 1020px;
  padding: 62px 7vw 120px;
  overflow: hidden;
  background: #eef0ec;
}
.about-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(23, 27, 26, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 27, 26, .14) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, transparent, #000 42%, transparent);
}
.about-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 2fr;
  gap: 7vw;
  align-items: end;
  padding-top: 18vh;
}
.about-label {
  align-self: start;
  margin: 12px 0 0;
  font: 9px/1.7 "Courier New", monospace;
  letter-spacing: .16em;
}
.about-copy {
  max-width: 1080px;
}
.about-copy h2 {
  margin: 0 0 66px;
  font: 300 clamp(58px, 6.2vw, 100px)/.91 Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  letter-spacing: -.075em;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s cubic-bezier(.2, .75, .1, 1);
  transform: translateY(var(--section-shift-reverse));
}
.about-section.is-in-view .about-copy h2 {
  clip-path: inset(0);
}
.about-copy>p {
  width: 64%;
  margin: 0 0 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(23, 27, 26, .34);
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 15px;
  line-height: 2.2;
  transform: translateY(var(--section-shift-soft));
}
.about-orbit {
  position: absolute;
  right: -14vw;
  bottom: -19vw;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 27, 26, .18);
  border-radius: 50%;
  transform: rotate(var(--section-turn-reverse));
}
.about-orbit::before,
.about-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.about-orbit::before {
  inset: 18%;
  border: 1px dashed rgba(23, 27, 26, .23);
}
.about-orbit::after {
  inset: 39%;
  background: rgba(185, 201, 147, .46);
}
.about-orbit i,
.about-orbit b,
.about-orbit span {
  position: absolute;
  display: block;
  border-radius: 50%;
}
.about-orbit i {
  left: 5%;
  top: 30%;
  width: 11px;
  height: 11px;
  background: var(--color-blue);
}
.about-orbit b {
  right: 13%;
  top: 15%;
  width: 7px;
  height: 7px;
  background: var(--color-brown);
}
.about-orbit span {
  left: 48%;
  top: 3%;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-dark);
}

.works-section {
  position: relative;
  /* min-height: 1040px; */
  padding: 62px 20px 110px;
  overflow: hidden;
  background: #f5f4f1;
}
.work-case {
  /* min-height: 840px; */
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(520px, 1.1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 8vw;
  padding: 52px 0 0;
  /* border-bottom: 1px solid rgba(23, 27, 26, .28); */
}

.work-coming-soon {
  grid-area: 1 / 1 / -1 / -1;
  display: grid;
  place-items: center;
}

.work-coming-soon p {
  margin: 0;
  font: 300 clamp(62px, 7.2vw, 116px)/.9 Arial, "Helvetica Neue", sans-serif;
  letter-spacing: -.05em;
}

.work-type {
  grid-column: 1 / -1;
  font: 9px "Courier New", monospace;
  letter-spacing: .5em;
}
.work-number {
  grid-column: 1;
  align-self: center;
  margin: -20px 0 0;
  font: italic 400 clamp(115px, 14vw, 225px)/.8 Georgia, "Times New Roman", serif;
  letter-spacing: -.08em;
  transform: translateY(var(--section-shift-soft)) rotate(var(--section-turn-soft));
  transform-origin: left center;
}
.work-meta {
  grid-column: 1;
  align-self: end;
  display: grid;
  gap: 22px;
  margin: 0 0 90px;
  transform: translateY(var(--section-shift-reverse));
}
.work-meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 0;
}
.work-meta dt {
  color: rgba(23, 27, 26, .48);
  font: 9px "Courier New", monospace;
  letter-spacing: .08em;
}
.work-meta dd {
  margin: 0;
  font: italic 400 clamp(30px, 3.15vw, 52px)/1 Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
}
.work-media {
  position: relative;
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  margin: 0;
  transform: translateY(var(--section-shift-soft));
}
.work-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -9px 9px 34px -9px;
  border: 1px solid rgba(23, 27, 26, .25);
}
.work-media-inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 26, .55);
  background: linear-gradient(145deg, #e4e7e2, #c7d0c9);
}
.work-media-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(circle at center, transparent 0 18%, rgba(23, 27, 26, .16) 18.2% 18.35%, transparent 18.55% 34%, rgba(23, 27, 26, .15) 34.2% 34.35%, transparent 34.55%);
  transform: rotate(var(--section-turn-reverse));
}
.work-media-inner img {
  position: relative;
  z-index: 1;
  width: 84%;
  height: auto;
  object-fit: contain;
  transform: translateX(var(--section-shift-soft));
}
.work-media figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font: 8px "Courier New", monospace;
  letter-spacing: .14em;
}

.company-section {
  position: relative;
  min-height: 780px;
  padding: 62px 7vw 120px;
  background: #e8ebe7;
}
.company-layout {
  display: grid;
  grid-template-columns: .72fr 1.65fr;
  gap: 8vw;
  padding-top: 110px;
}
.company-layout h2 {
  margin: 0;
  font: 300 clamp(62px, 7.2vw, 116px)/.9 Arial, "Helvetica Neue", sans-serif;
  letter-spacing: -.07em;
  transform: translateY(var(--section-shift-soft));
}
.company-list {
  margin: 0;
  border-top: 1px solid rgba(23, 27, 26, .35);
}
.company-list>div {
  display: grid;
  grid-template-columns: minmax(150px, .5fr) 1.4fr;
  gap: 30px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid rgba(23, 27, 26, .28);
}
.company-list dt {
  font: 9px "Courier New", monospace;
  letter-spacing: .14em;
}
.company-list dd {
  margin: 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 14px;
  line-height: 1.8;
}

.letter-section {
  min-height: 900px;
  padding: 62px 7vw 110px;
  background: #cbc0a8;
}
.letter-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.4fr;
  gap: 8vw;
  padding-top: 88px;
}
.letter-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  border-right: 1px solid rgba(29, 29, 27, .34);
}
.letter-seal {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brown);
  color: #cbc0a8;
  font: italic 82px/.8 Georgia, serif;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 0 6px rgba(203, 192, 168, .4);
}
.letter-section .letter-seal {
  transform: rotate(var(--section-turn-fast)) translateY(var(--section-shift-soft));
}
.letter-section .letter-content {
  transform: translateY(var(--section-shift-reverse));
}
.letter-side p {
  margin: 0 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(29, 29, 27, .34);
  font: 9px/1.6 "Courier New", monospace;
  letter-spacing: .14em;
}
.letter-content {
  max-width: 850px;
}
.letter-label {
  margin: 0 0 38px;
  font: 9px "Courier New", monospace;
  letter-spacing: .16em;
}
.letter-content h2 {
  margin: 0;
  font: italic 400 clamp(46px, 5vw, 76px)/1.08 Georgia, "Yu Mincho", serif;
  letter-spacing: -.06em;
}
.letter-content h2 span {
  display: block;
  white-space: nowrap;
}
.letter-lead {
  margin: 54px 0 28px;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 16px;
  line-height: 2;
}
.letter-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .85s cubic-bezier(.2, .75, .1, 1), opacity .4s ease;
}
.letter-more.open {
  max-height: 3200px;
  opacity: 1;
  margin-bottom: 38px;
}
.letter-more p {
  max-width: 680px;
  margin: 0 0 24px;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 13px;
  line-height: 2.1;
}
.letter-more .letter-closing {
  margin-top: 46px;
  font-size: 17px;
  line-height: 2;
}
.letter-more .letter-signature {
  margin: 46px 0 0 auto;
  text-align: right;
  font-size: 12px;
  letter-spacing: .08em;
}
.letter-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border: 0;
  border-block: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .12em;
}
.letter-button b {
  font-size: 24px;
  line-height: .6;
  font-weight: 400;
}
.letter-button span {
  transition: letter-spacing .35s ease, transform .35s ease;
}
.letter-button:hover span {
  letter-spacing: .2em;
  transform: translateX(8px);
}
.letter-button:hover b {
  transform: rotate(180deg);
  transition: transform .45s ease;
}

.footer {
  position: relative;
  min-height: 1000px;
  padding: 48px 42px 26px;
  overflow: hidden;
  color: var(--color-light);
  background: var(--color-brown);
}
.footer-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(circle at 50% 120%, transparent 0 26%, currentColor 26.2% 26.35%, transparent 26.55% 38%, currentColor 38.2% 38.35%, transparent 38.55% 50%, currentColor 50.2% 50.35%, transparent 50.55%);
}
.footer .footer-grid {
  inset: -15%;
  transform: rotate(var(--section-turn-soft)) scale(1.15);
}
.footer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(238, 229, 211, .5);
  font: 9px "Courier New", monospace;
  letter-spacing: .16em;
}
.footer>p {
  position: relative;
  margin: 112px auto 50px;
  max-width: 1000px;
  text-align: center;
  font: italic 400 clamp(52px, 7vw, 108px)/1.05 Georgia, "Yu Mincho", serif;
  letter-spacing: -.06em;
}
.contact-copy {
  position: relative;
  z-index: 2;
  margin: -20px auto 36px;
  text-align: center;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 14px;
  line-height: 2;
}
.contact-button {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 55px;
  margin: 0 auto;
  padding: 17px 24px;
  border: 1px solid var(--color-light);
  color: inherit;
  background: transparent;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: .25s ease;
}
.contact-button:hover {
  color: var(--color-brown);
  background: var(--color-light);
}
.contact-button span {
  display: inline-block;
  font-size: 18px;
  transition: transform .35s ease;
}
.contact-button:hover span {
  transform: rotate(45deg) translate(3px, -3px);
}
.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(42vw, 520px);
  transform: translateX(-50%);
  white-space: nowrap;
}
.footer .footer-wordmark {
  transform: translateX(-50%) translateY(var(--section-shift-reverse));
}
.footer-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .78;
}
.footer-bottom {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 42px;
  right: 42px;
  display: flex;
  justify-content: space-between;
  font: 8px "Courier New", monospace;
  letter-spacing: .12em;
}

/* Laboratory journey direction */
.site-header {
  height: 86px;
  grid-template-columns: auto 1fr auto auto;
  padding-inline: 34px;
  gap: 28px;
  border-color: rgba(23, 27, 26, .18);
  background: rgba(239, 240, 236, .82);
}
.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.8vw, 47px);
  font-weight: 400;
  letter-spacing: -.08em;
}
.paper-noise {
  opacity: .08;
}
.site-main .motion-hud {
  color: #fff;
  mix-blend-mode: difference;
}

.hero-stage {
  padding-top: 86px;
  background: #eff0ec;
}
.hero-media {
  position: absolute;
  z-index: -4;
  inset: 86px 0 0;
  overflow: hidden;
  background: #eeeFEb;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239, 240, 236, .38) 0, rgba(239, 240, 236, .07) 47%, rgba(239, 240, 236, 0) 72%), linear-gradient(0deg, rgba(239, 240, 236, .27), transparent 34%);
}
.hero-media img {
  width: 108%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-media-x, 0), 0, 0) scale(var(--hero-scale, 1.025));
  transform-origin: 65% 50%;
  will-change: transform;
  filter: saturate(.66) contrast(.98);
}
.hero-grid {
  display: block;
  z-index: -1;
  inset: 86px 0 0;
  opacity: .18;
  background-image: linear-gradient(rgba(23, 27, 26, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 27, 26, .15) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, .55) 54%, transparent 88%);
}
.hero-meta {
  top: 110px;
  color: rgba(23, 27, 26, .72);
  font-size: 8px;
}
.meta-left {
  left: 34px;
}
.meta-right {
  right: 34px;
}
.hero-copy {
  left: 3vw;
  top: auto;
  bottom: 11vh;
  max-width: 76vw;
}
.hero .hero-copy {
  opacity: calc(.28 + var(--section-fade));
}
.eyebrow {
  margin-bottom: 20px;
  font-size: 8px;
}
.hero-title {
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-size: clamp(62px, 7.2vw, 115px);
  font-weight: 300;
  line-height: .91;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.hero-title .emphasis {
  margin-left: 0;
  color: inherit;
  font-style: normal;
}
.hero-statement {
  position: absolute;
  left: 68vw;
  bottom: 1vh;
  width: 24vw;
  margin: 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.9;
  letter-spacing: .06em;
  white-space: normal;
}
.hero-calibration {
  z-index: 2;
  bottom: 6vh;
  width: 52vw;
  border-color: rgba(23, 27, 26, .28);
}
.hero-calibration::before {
  color: rgba(23, 27, 26, .58);
}
.hero-calibration i:nth-child(4) {
  background: var(--color-blue);
}
.orbit {
  z-index: 0;
  border-color: rgba(23, 27, 26, .22);
}
.orbit-one {
  right: -21vw;
  top: -17vh;
  width: 70vw;
}
.orbit-two {
  right: -5vw;
  top: 7vh;
  width: 43vw;
  border-color: rgba(23, 27, 26, .2);
}
.orbit-one i,
.orbit-two i,
.orbit-two b {
  background: var(--color-blue);
}
.scroll-cue {
  left: 34px;
  bottom: 28px;
}
.hero-transition {
  color: var(--color-dark);
  background: #dce6d7;
  border-radius: 0;
  box-shadow: 0 -1px 0 rgba(23, 27, 26, .25);
}
.hero-transition::before {
  border-color: rgba(23, 27, 26, .28);
  box-shadow: 0 0 0 7vw rgba(255, 255, 255, .12), 0 0 0 14vw rgba(255, 255, 255, .1);
}
.hero-transition>b {
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.marquee {
  color: var(--color-dark);
  background: #f5f6f3;
  border-color: rgba(23, 27, 26, .35);
}

.intro-preview {
  min-height: 1050px;
  background: #f3f4f1;
}
.intro-preview>h2 {
  color: var(--color-dark);
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.manifesto-mark {
  color: rgba(185, 201, 147, .3);
}
.manifesto-mark b {
  color: rgba(125, 152, 162, .17);
}
.manifesto-body {
  border-color: rgba(23, 27, 26, .24);
}
.manifesto-body strong {
  color: var(--color-dark);
  background: linear-gradient(transparent 58%, rgba(185, 201, 147, .7) 58%);
}
.passport-stamp {
  border-color: var(--color-blue);
  color: #526b73;
}

.field-note {
  position: relative;
  height: 210vh;
  min-height: 1500px;
  color: #f2f3ef;
  background: #1b2426;
}
.field-stage {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #1b2426;
}
.field-image {
  position: absolute;
  z-index: 0;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--section-shift-soft), 0, 0) scale(var(--section-scale));
  will-change: transform;
  filter: saturate(.72) contrast(.94);
}
.field-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 17, .62), rgba(8, 16, 17, .06) 58%, rgba(8, 16, 17, .23)), linear-gradient(0deg, rgba(8, 16, 17, .62), transparent 46%);
}
.field-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(239, 240, 236, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(239, 240, 236, .18) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.field-index {
  position: absolute;
  z-index: 3;
  top: 116px;
  left: 4vw;
  right: 4vw;
  color: rgba(242, 243, 239, .8);
}
.field-copy {
  position: absolute;
  z-index: 3;
  left: 4vw;
  right: 4vw;
  bottom: 7vh;
  max-width: none;
}
.field-copy p {
  margin: 0 0 24px;
  font: 9px "Courier New", monospace;
  letter-spacing: .18em;
}
.field-copy h2 {
  margin: 0;
  font: 300 clamp(56px, 6.3vw, 100px)/.94 Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  letter-spacing: -.075em;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s cubic-bezier(.2, .75, .1, 1);
}
.field-note.is-in-view .field-copy h2 {
  clip-path: inset(0);
}
.field-copy .field-statement {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: min(38vw, 560px);
  margin: 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 2;
  letter-spacing: .04em;
}
.field-coordinates {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 4vh;
  display: grid;
  gap: 5px;
  padding-left: 34px;
  border-left: 1px solid rgba(242, 243, 239, .48);
  font: 8px "Courier New", monospace;
  letter-spacing: .14em;
}
.field-scope {
  position: absolute;
  z-index: 3;
  right: 7vw;
  top: 23%;
  width: min(26vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 243, 239, .48);
  border-radius: 50%;
  transform: rotate(var(--section-turn-reverse));
}
.field-scope::before,
.field-scope::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(242, 243, 239, .5);
  transform: translate(-50%, -50%);
}
.field-scope::before {
  width: 122%;
  height: 1px;
}
.field-scope::after {
  width: 1px;
  height: 122%;
}
.field-scope i {
  position: absolute;
  inset: 24%;
  border: 1px dashed rgba(242, 243, 239, .55);
  border-radius: 50%;
}
.field-scope b,
.field-scope span {
  position: absolute;
  border-radius: 50%;
  background: var(--color-lime);
}
.field-scope b {
  left: 10%;
  top: 27%;
  width: 8px;
  height: 8px;
}
.field-scope span {
  right: 15%;
  bottom: 19%;
  width: 4px;
  height: 4px;
}

.principles {
  color: var(--color-dark);
  background: #e7eae6;
}
.principles .section-index.light {
  color: rgba(23, 27, 26, .66);
  border-color: rgba(23, 27, 26, .25);
}
.principles-heading p {
  color: #667b72;
}
.principles-heading h2 {
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.principles-orbit {
  border-color: rgba(23, 27, 26, .14);
}
.principles-orbit::before {
  border-color: rgba(23, 27, 26, .16);
}
.story-stack .story-card {
  color: var(--color-dark);
  border-color: rgba(23, 27, 26, .3);
  box-shadow: 0 -18px 54px rgba(23, 27, 26, .11);
}
.story-stack .card-one {
  background: #f0f2ef;
}
.story-stack .card-two {
  color: var(--color-dark);
  background: #dce5d9;
}
.story-stack .card-three {
  color: var(--color-dark);
  background: #d7e0e3;
}
.story-stack .card-four {
  color: var(--color-dark);
  background: #dfdbd3;
}
.story-stack .card-copy h3 {
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-size: clamp(44px, 4.4vw, 68px);
  font-style: normal;
  font-weight: 300;
}
.card-arrow,
.card-two .card-arrow {
  color: #f1f2ef;
  background: var(--color-dark);
}
.principle-visual {
  filter: grayscale(.55) saturate(.45);
  opacity: .7;
}
.visual-one::before,
.visual-one i,
.visual-one b {
  border-color: rgba(23, 27, 26, .48);
}
.visual-one::after {
  background: radial-gradient(circle at 34% 27%, #f6f7f4 0 8%, #cbd7ce 31%, #6f8182 72%);
}
.visual-one span {
  background: var(--color-dark);
  box-shadow: 0 0 0 9px rgba(23, 27, 26, .09);
}
.visual-two::before {
  background: #859ea5;
}
.visual-two::after {
  background: #dce5d9;
}
.visual-three::before {
  border-color: #b4c7a9;
}
.visual-three::after {
  border-color: #f3f4f1;
}
.visual-four::after {
  background: #7d98a2;
}

.letter-section {
  background: #d9d9d2;
}
.letter-seal {
  color: #e9ebe7;
  background: #5f7771;
}
.letter-content h2 {
  font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.footer {
  color: #eef0eb;
  background: #1e2b29;
}

.error-page {
  background: var(--color-light);
}
.error-main {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px;
  background-color: var(--color-light);
  background-image: linear-gradient(rgba(23, 27, 26, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 27, 26, .08) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  text-align: center;
}
.error-content {
  width: 100%;
  max-width: 680px;
}
.error-code {
  margin: 0;
  font: 10px "Courier New", monospace;
  letter-spacing: 0;
}
.error-title {
  margin: 20px 0 0;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}
.error-description {
  margin: 34px 0 0;
  font-family: "Yu Mincho", Georgia, serif;
  font-size: 14px;
  line-height: 2;
}
.error-home-link {
  width: 240px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 52px auto 0;
  padding: 0 24px;
  border: 1px solid rgba(23, 27, 26, .35);
  color: inherit;
  background: transparent;
  font: 11px "Courier New", monospace;
  letter-spacing: 0;
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}
.error-home-link:hover,
.error-home-link:focus-visible {
  color: var(--color-light);
  background: var(--color-dark);
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    padding: 0 28px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .work-coming-soon p {
    font-size: 110px;
  }
}

@media (max-width: 768px) {
  .error-main {
    padding: 24px;
  }
  .error-title {
    font-size: 42px;
  }
  .error-description {
    margin-top: 26px;
    font-size: 13px;
  }
  .error-home-link {
    margin-top: 42px;
  }
  html {
    scroll-behavior: auto;
    scroll-padding-top: 82px;
  }
  .intro-lockup {
    font-size: 18vw;
  }
  .motion-hud {
    right: 8px;
    transform: translateY(-50%) scale(.78);
    transform-origin: right center;
  }
  .motion-pointer {
    display: none;
  }
  .site-header {
    height: 82px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .wordmark img {
    width: 62px;
    height: 62px;
  }
  .contact-link,
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border: 0;
    background: transparent;
    font: 9px "Courier New", monospace;
    letter-spacing: .16em;
  }
  .menu-toggle i {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
  .menu-toggle i::before,
  .menu-toggle i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
  }
  .menu-toggle[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .mobile-menu {
    position: fixed;
    z-index: 29;
    inset: 0;
    display: block;
    padding: 108px 20px 30px;
    visibility: hidden;
    pointer-events: none;
    color: #edf0eb;
    background: #1e2b29;
    transform: translateY(-102%);
    transition: transform .65s cubic-bezier(.76, 0, .24, 1), visibility 0s .65s;
  }
  .mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-menu-meta {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(237, 240, 235, .35);
    font: 8px "Courier New", monospace;
    letter-spacing: .14em;
  }
  .mobile-menu nav {
    margin-top: 24px;
  }
  .mobile-menu a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(237, 240, 235, .2);
    color: inherit;
    text-decoration: none;
  }
  .mobile-menu a small {
    font: 8px "Courier New", monospace;
  }
  .mobile-menu a span {
    font: 300 12vw/.95 Arial, "Helvetica Neue", sans-serif;
    letter-spacing: -.06em;
  }
  .mobile-menu a b {
    font-size: 17px;
    font-weight: 400;
  }
  .hero {
    min-height: 1540px;
    height: 220svh;
    padding: 0;
  }
  .hero-stage {
    min-height: 650px;
    height: 100svh;
    padding: 82px 20px 28px;
  }
  .hero-media {
    inset: 82px 0 0;
  }
  .hero-media img {
    width: 142%;
    max-width: none;
    object-position: 63% center;
    transform-origin: 67% 50%;
  }
  .hero-media::after {
    background: linear-gradient(0deg, rgba(239, 240, 236, .55), transparent 55%);
  }
  .hero-grid {
    inset: 82px 0 0;
    background-size: 25vw 25vw;
    opacity: .14;
  }
  .hero-meta {
    top: 105px;
    font-size: 7px;
  }
  .meta-left {
    left: 20px;
  }
  .meta-right {
    right: 20px;
  }
  .hero-copy {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 12vh;
    max-width: none;
  }
  .hero-title {
    font-size: 11vw;
    line-height: .96;
  }
  .hero-title-lead {
    display: block;
  }
  .hero-title .emphasis {
    display: inline;
    margin: 0;
  }
  .hero-statement {
    position: relative;
    top: 30px;
    width: 68%;
    left: 6%;
    margin: 28px auto 0 0;
    font-size: 13px;
    text-align: left;
  }
  .orbit-one {
    width: 110vw;
    right: -50vw;
    top: 18vh;
  }
  .orbit-two {
    width: 78vw;
    right: -31vw;
    top: 27vh;
  }
  .scroll-cue {
    left: 20px;
    bottom: 26px;
  }
  .hero-calibration {
    width: 78vw;
    bottom: 13vh;
  }
  .hero-transition {
    padding: 108px 20px 34px;
    border-radius: 22px 22px 0 0;
  }
  .hero-transition>b {
    font-size: 12vw;
    line-height: .92;
  }
  .transition-copy-desktop {
    display: none;
  }
  .transition-copy-mobile,
  .transition-copy-mobile span {
    display: block;
    white-space: nowrap;
  }
  .hero-transition>i {
    font-size: 72vw;
    right: -8vw;
    bottom: 3vh;
  }
  .field-note {
    height: 190svh;
    min-height: 1320px;
  }
  .field-stage {
    height: 100svh;
    min-height: 650px;
  }
  .field-image {
    inset: -4% -42%;
    width: 184%;
    height: 108%;
    object-position: 45% center;
  }
  .field-grid {
    background-size: 25vw 25vw;
  }
  .field-index {
    top: 105px;
    left: 20px;
    right: 20px;
  }
  .field-copy {
    left: 20px;
    right: 20px;
    bottom: 9vh;
  }
  .field-copy p {
    margin-bottom: 18px;
    font-size: 7px;
  }
  .field-copy h2 {
    font-size: 13.8vw;
    line-height: .98;
  }
  .field-copy .field-statement {
    position: static;
    width: 84%;
    margin: 28px 0 0 auto;
    font-size: 11px;
    line-height: 1.9;
  }
  .field-coordinates {
    display: none;
  }
  .field-scope {
    right: -22vw;
    top: 18%;
    width: 76vw;
    opacity: .62;
  }
  .intro-preview {
    padding-inline: 20px;
  }
  .section-index span:last-child {
    display: none;
  }
  .intro-preview {
    min-height: 920px;
    padding-top: 40px;
  }
  .manifesto-kicker {
    margin-top: 65px;
  }
  .intro-preview>h2 {
    margin-top: 36px;
    font-size: 14vw;
  }
  .manifesto-mark {
    top: 185px;
    right: -8vw;
    font-size: 58vw;
  }
  .manifesto-body {
    width: 72%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .manifesto-body p {
    font-size: 12px;
  }
  .passport-stamp {
    width: 85px;
    height: 85px;
    bottom: 55px;
    font-size: 8px;
  }
  .service-section {
    min-height: auto;
    padding: 42px 14px 110px;
  }
  .service-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 65px 6px 54px;
  }
  .service-heading h2 {
    font-size: 16vw;
  }
  .service-heading>p {
    width: 78%;
    margin-left: auto;
    font-size: 12px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1;
    min-height: 470px;
    transform: none;
  }
  .service-card {
    padding: 22px 20px 24px;
    border-radius: 20px;
  }
  .service-card-top {
    top: 22px;
    left: 20px;
    right: 20px;
  }
  .service-card h3 {
    font-size: 11vw;
  }
  .service-card p {
    max-width: 76%;
    font-size: 11px;
  }
  .service-geometry,
  .service-card:nth-child(1) .service-geometry,
  .service-card:nth-child(2) .service-geometry {
    right: -16vw;
    top: 15%;
    width: 76vw;
    opacity: .6;
  }
  .service-orbit {
    right: -46vw;
    width: 120vw;
  }
  .principles {
    padding: 42px 14px 16vh;
  }
  .principles-heading {
    grid-template-columns: 1fr;
    padding: 65px 0 50px;
  }
  .principles-heading h2 {
    font-size: 18vw;
  }
  .story-stack {
    display: block;
  }
  .story-stack .story-card {
    top: calc(92px + var(--stack-offset));
    height: calc(100svh - 108px - var(--stack-offset));
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    margin-bottom: 15vh;
    padding: 22px 20px 24px;
    border-radius: 20px;
  }
  .story-stack .story-card:nth-child(2) {
    --stack-offset: 7px;
  }
  .story-stack .story-card:nth-child(3) {
    --stack-offset: 14px;
  }
  .story-stack .story-card:nth-child(4) {
    --stack-offset: 21px;
  }
  .card-copy {
    align-self: end;
    max-width: 82%;
  }
  .card-copy small {
    margin-bottom: 12px;
    font-size: 7px;
  }
  .story-stack .card-copy h3 {
    margin-bottom: 20px;
    font-size: 9vw;
  }
  .story-stack .card-copy p {
    font-size: 11px;
    line-height: 1.8;
  }
  .principle-visual {
    position: absolute;
    right: -16vw;
    top: 16%;
    width: 78vw;
    opacity: .72;
  }
  .card-arrow {
    right: 18px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    font-size: 38px;
  }
  .about-section {
    min-height: 820px;
    padding: 42px 20px 90px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 85px;
  }
  .about-copy h2 {
    margin-bottom: 52px;
    font-size: 10vw;
    line-height: 1.02;
  }
  .about-copy>p {
    width: 84%;
    margin-left: auto;
    font-size: 12px;
    line-height: 2;
  }
  .about-orbit {
    right: -54vw;
    bottom: -18vw;
    width: 130vw;
  }
  .works-section {
    /* min-height: 960px; */
    padding: 42px 20px 80px;
  }
  .work-case {
    /* min-height: 820px; */
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 32px;
    padding-top: 44px;
  }
  .work-coming-soon p {
    font-size: 64px;
    line-height: .88;
  }
  .work-type {
    grid-column: 1;
  }
  .work-number {
    grid-column: 1;
    margin: 10px 0 0;
    font-size: 34vw;
  }
  .work-meta {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
  }
  .work-meta dd {
    font-size: 10vw;
  }
  .work-media {
    grid-column: 1;
    grid-row: 4;
    margin: 14px 0 72px;
  }
  .work-media-inner {
    aspect-ratio: 1.08;
  }
  .work-media-inner img {
    width: 90%;
  }
  .letter-section {
    padding: 42px 20px 80px;
  }
  .letter-wrap {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .letter-side {
    min-height: auto;
    flex-direction: row;
    align-items: end;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 27, .34);
    padding-bottom: 25px;
  }
  .letter-seal {
    width: 92px;
    height: 92px;
    font-size: 55px;
  }
  .letter-side p {
    border-top: 0;
    text-align: right;
  }
  .letter-content h2 {
    font-size: 8.3vw;
    line-height: 1.14;
  }
  .letter-lead {
    margin-top: 38px;
    font-size: 14px;
  }
  .letter-more.open {
    max-height: 5200px;
  }
  .letter-more p {
    font-size: 12px;
    line-height: 2;
  }
  .letter-more .letter-closing {
    font-size: 15px;
  }
  .company-section {
    min-height: 720px;
    padding: 42px 20px 90px;
  }
  .company-layout {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 72px;
  }
  .company-layout h2 {
    font-size: 17vw;
  }
  .company-list>div {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .company-list dd {
    font-size: 12px;
  }
  .footer {
    min-height: 740px;
    padding: 34px 20px 20px;
  }
  .footer>p {
    margin-top: 95px;
    font-size: 13vw;
  }
  .contact-copy {
    width: 88%;
    margin-top: -15px;
    font-size: 12px;
  }
  .contact-button {
    gap: 30px;
    font-size: 13px;
  }
  .footer-wordmark {
    width: 72vw;
  }
  .footer-bottom {
    left: 20px;
    right: 20px;
    font-size: 6px;
  }
  .footer-bottom span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee div {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
  .hero .hero-copy,
  .hero .hero-meta,
  .hero .orbit-one,
  .hero .orbit-two,
  .hero .scroll-cue,
  .intro-preview .manifesto-mark,
  .intro-preview .passport-stamp,
  .intro-preview>h2,
  .manifesto-body p,
  .principle-list article,
  .about-copy h2,
  .about-copy p,
  .about-orbit,
  .work-number,
  .work-meta,
  .work-media,
  .work-media-inner img,
  .letter-section .letter-seal,
  .letter-section .letter-content,
  .company-layout h2,
  .footer .footer-grid,
  .footer .footer-wordmark {
    transform: none !important;
    opacity: 1 !important;
  }
  .motion-pointer,
  .motion-hud {
    display: none;
  }
  .intro-sequence {
    display: none;
  }
  .intro-preview>h2,
  .principles-heading h2,
  .about-copy h2,
  .letter-content h2,
  .footer>p {
    clip-path: none !important;
  }
  .hero-transition {
    display: none;
  }
}
