:root {
  --ink: #090909;
  --paper: #eeeae0;
  --coral: #ec2f91;
  --blue: #4b1d78;
  --pale: #e8dff5;
  --purple: #4b1d78;
  --fuchsia: #ec2f91;
  --namek-sky: #c4da45;
  --namek-glass: #3b94a6;
  --namek-cobalt: #315a91;
  --namek-violet: #654475;
  --namek-pressure: #21152d;
  --namek-abyss: #07080c;
  --namek-mint: #cce5c5;
  --lavender: #d8c8f2;
  --blush: #f2cfe3;
  --deep-purple: #24103d;
  --acid: #c7ff32;
  --heat: #ff5a36;
  --heat-gold: #ffd84a;
  --ice: #c8f5ff;
  --ice-blue: #7bd8f4;
  --line-dark: rgba(9, 9, 9, 0.24);
  --line-light: rgba(238, 234, 224, 0.3);
  --pad: clamp(1rem, 3vw, 3rem);
  --scene-top: clamp(6.5rem, 10vh, 8.5rem);
  --scene-bottom: 2rem;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}

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

body.menu-open main :where(h1, h2, h3, p, a, li > span, .panel-art span, .identity-mark),
body.menu-open [data-manifesto-field],
body.menu-open .site-footer > * {
  opacity: 0 !important;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus-visible {
  top: max(0.75rem, env(safe-area-inset-top));
  left: max(0.75rem, env(safe-area-inset-left));
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.7rem 0.9rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.loader {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(0);
  transition:
    transform 900ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 1ms linear 900ms;
  will-change: transform;
}

.loader.is-leaving {
  transform: translateY(-108%);
}

.loader.is-finished {
  display: none;
  visibility: hidden;
  transform: translateY(-108%);
}

.loader-word {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 800;
  font-stretch: 85%;
  letter-spacing: -0.105em;
  line-height: 0.64;
  text-transform: uppercase;
}

.loader-word span:last-child {
  margin-left: 0.55em;
  color: var(--coral);
}

.loader-meta {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 1.5rem;
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.loader-meta p {
  margin: 0;
}

.loader-wipe {
  position: absolute;
  z-index: 4;
  inset: -30%;
  background: var(--coral);
  clip-path: polygon(0 100%, 0 100%, 0 100%);
  transition: clip-path 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.is-leaving .loader-wipe {
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

.loader.is-finished .loader-wipe {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.cursor {
  --cursor-ring-opacity: 0.46;
  --cursor-ring-outer-opacity: 0.19;
  --cursor-ring-scale: 1;
  position: fixed;
  z-index: 1400;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  pointer-events: none;
  color: var(--paper);
  background: var(--paper);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: transform;
  transition: width 220ms ease, height 220ms ease, opacity 180ms ease, background 180ms ease;
}

.cursor::before,
.cursor::after {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  opacity: var(--cursor-ring-opacity);
  transform: scale(var(--cursor-ring-scale));
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.cursor::before {
  inset: -0.75rem;
}

.cursor::after {
  inset: -1.4rem;
  opacity: var(--cursor-ring-outer-opacity);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 5rem;
  height: 5rem;
  background: var(--paper);
}

.cursor span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  mix-blend-mode: normal;
}

.cursor.is-text span {
  font-size: 0.6rem;
}

.persistent-line {
  position: fixed;
  z-index: 900;
  top: 50%;
  right: 0.65rem;
  margin: 0;
  pointer-events: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.88;
  transform: translateY(-50%) rotate(180deg);
  mix-blend-mode: difference;
  transition: opacity 180ms ease;
}

.persistent-line.is-docked,
body.menu-open .persistent-line {
  opacity: 0;
}

.depth-readout {
  position: fixed;
  z-index: 900;
  top: 50%;
  left: 0.65rem;
  margin: 0;
  pointer-events: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.88;
  mix-blend-mode: difference;
  transform: translateY(-50%) rotate(180deg);
  transition: opacity 180ms ease;
}

body.menu-open .depth-readout {
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 5rem;
  padding: 0 var(--pad);
  color: var(--paper);
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(7.5rem, 9vw, 9rem);
  filter: invert(1);
  mix-blend-mode: difference;
}

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2.78;
}

.logo-crop img {
  position: absolute;
  width: 256%;
  max-width: none;
  transform: translate(-27.2%, -37.8%);
}

.header-status {
  justify-self: center;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.header-status span {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  background: currentColor;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  justify-self: end;
  gap: clamp(1.2rem, 2.5vw, 2.7rem);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  mix-blend-mode: difference;
}

.site-header.is-on-light .header-status,
.site-header.is-on-light .site-nav,
.site-header.is-on-light .menu-toggle {
  color: var(--ink);
  mix-blend-mode: normal;
}

.site-header.is-on-light .brand {
  filter: none;
  mix-blend-mode: multiply;
}

body.menu-open .site-header .brand {
  filter: invert(1);
  mix-blend-mode: difference;
}

body.menu-open .site-header .menu-toggle {
  color: var(--paper);
  mix-blend-mode: difference;
}

body.menu-open .site-header .site-nav {
  color: var(--paper);
  mix-blend-mode: normal;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-canvas,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--paper) 0,
    #dfe7a3 54%,
    var(--namek-sky) 76%,
    var(--namek-glass) 76.5%,
    var(--namek-cobalt) 100%
  );
}

.webgl-ready .hero-fallback {
  display: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, rgba(255,255,255,.12), transparent 25%, transparent 72%, rgba(49,90,145,.08));
}

.hero-meta {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  left: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-meta p,
.hero-meta a {
  margin: 0;
}

.hero-meta p:nth-child(2) {
  justify-self: center;
}

.hero-meta p:nth-child(3) {
  justify-self: end;
}

.hero-meta a {
  justify-self: end;
}

.hero-meta-top {
  top: 6.5rem;
}

.hero-meta-bottom {
  bottom: 1.35rem;
}

.hero-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--pad);
  width: calc(100% - (var(--pad) * 2));
  margin: 0;
  font-size: clamp(4.8rem, 12.3vw, 13rem);
  font-weight: 850;
  font-stretch: 82%;
  letter-spacing: -0.105em;
  line-height: 0.63;
  text-transform: uppercase;
  transform: translateY(-48%);
}

.hero-title > span {
  display: block;
  overflow: hidden;
}

.hero-title i {
  display: block;
  font-style: normal;
}

.js .hero-title i {
  transform: translateY(115%);
  transition: transform 900ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.hero.is-ready .hero-title i {
  transform: translateY(0);
}

.hero-title > span:nth-child(2) i { transition-delay: 70ms; }
.hero-title > span:nth-child(3) i { transition-delay: 140ms; }
.hero-title > span:nth-child(4) i { transition-delay: 210ms; }

.hero-title > span:nth-child(2) {
  margin-left: 10vw;
}

.hero-title > span:nth-child(3) {
  margin-left: 35vw;
}

.hero-title-accent {
  padding-right: 3vw;
  color: var(--fuchsia);
  text-align: right;
  mix-blend-mode: multiply;
}

.hero-refraction {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--hero-refraction-opacity, 0.38);
  clip-path: inset(calc(var(--hero-waterline, 76%) - 1rem) 0 0 0);
  mix-blend-mode: screen;
}

.hero-title-refracted {
  color: var(--namek-mint);
  text-shadow:
    var(--hero-shift-x, 2px) 0 rgba(196, 218, 69, 0.24),
    var(--hero-shift-negative, -1px) 0 rgba(49, 90, 145, 0.38);
  filter: blur(0.28px);
  transform:
    translateY(-48%)
    translate3d(var(--hero-shift-x, 2px), var(--hero-shift-y, 1px), 0)
    scaleX(var(--hero-squash, 0.995));
  transform-origin: left center;
}

.hero-title-refracted .hero-title-accent {
  color: var(--namek-mint);
  mix-blend-mode: normal;
}

.hero-title-refracted .hero-title-accent i span {
  color: var(--fuchsia);
}

.declaration {
  position: relative;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  min-height: 110svh;
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 24%, rgba(236, 47, 145, 0.13) 0 12%, transparent 43%),
    radial-gradient(ellipse at 18% 92%, rgba(75, 29, 120, 0.10) 0 9%, transparent 42%),
    var(--paper);
}

.declaration::before {
  position: absolute;
  top: 8%;
  right: -15%;
  width: 64vw;
  height: 54vw;
  border: 1px solid rgba(75, 29, 120, 0.23);
  border-radius: 43% 57% 63% 37% / 48% 39% 61% 52%;
  content: "";
  transform: rotate(-11deg);
  animation: tide-contour 14s ease-in-out infinite alternate;
}

.declaration-index,
.studio-side {
  display: flex;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.declaration-index p,
.studio-side p {
  margin: 0;
}

.declaration-index span,
.studio-side span {
  color: var(--coral);
}

.declaration-copy h2 {
  max-width: 72rem;
  margin: 0;
  font-size: clamp(4.6rem, 10vw, 10rem);
  font-weight: 800;
  font-stretch: 82%;
  letter-spacing: -0.095em;
  line-height: 0.78;
  text-transform: uppercase;
}

.declaration-copy h2 span,
.studio-main h2 span,
.manifesto h2 span,
.contact h2 span {
  color: var(--coral);
}

.declaration-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 56rem;
  margin: clamp(6rem, 12vw, 12rem) 0 0 auto;
  font-family: var(--mono);
  font-size: clamp(0.76rem, 1vw, 0.96rem);
  line-height: 1.55;
}

.declaration-body p {
  margin: 0;
  padding: 1.3rem 1.45rem;
  background: rgba(216, 200, 242, 0.25);
  border: 1px solid rgba(75, 29, 120, 0.18);
  border-radius: 2.8rem 5rem 3.6rem 2.2rem / 2.4rem 3.2rem 4.4rem 3rem;
}

.declaration-body p:last-child {
  border-radius: 4.8rem 2.4rem 3rem 5.2rem / 3.5rem 2.2rem 4.2rem 2.8rem;
  transform: translateY(2rem);
}

.declaration-orbit {
  position: absolute;
  right: -9vw;
  bottom: -15vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 43% 57% 61% 39% / 48% 38% 62% 52%;
  font-size: 9vw;
  font-weight: 800;
  letter-spacing: -0.1em;
  animation: tide-orbit 16s ease-in-out infinite alternate;
}

.declaration-orbit i {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid var(--coral);
  border-radius: 59% 41% 46% 54% / 38% 56% 44% 62%;
  animation: tide-contour 9s ease-in-out infinite alternate-reverse;
}

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

@keyframes tide-contour {
  0% {
    border-radius: 43% 57% 63% 37% / 48% 39% 61% 52%;
  }
  50% {
    border-radius: 58% 42% 40% 60% / 37% 61% 39% 63%;
  }
  100% {
    border-radius: 38% 62% 54% 46% / 60% 42% 58% 40%;
  }
}

@keyframes tide-orbit {
  0% {
    border-radius: 43% 57% 61% 39% / 48% 38% 62% 52%;
    transform: rotate(-7deg);
  }
  50% {
    border-radius: 57% 43% 39% 61% / 36% 60% 40% 64%;
    transform: rotate(5deg) translate3d(-1.5vw, -1vw, 0);
  }
  100% {
    border-radius: 39% 61% 55% 45% / 62% 43% 57% 38%;
    transform: rotate(-3deg) translate3d(1vw, -2vw, 0);
  }
}

.showcase {
  position: relative;
  height: 400vh;
  background: var(--ink);
}

.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.showcase-header {
  position: absolute;
  z-index: 5;
  top: 1.4rem;
  right: var(--pad);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.showcase-header p {
  margin: 0;
}

.showcase-track {
  display: flex;
  width: 300vw;
  height: 100%;
  will-change: transform;
}

.showcase-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  padding: 6rem var(--pad) 2rem;
  overflow: hidden;
}

.showcase-panel::before,
.showcase-panel::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.showcase-panel::before {
  right: -18vw;
  bottom: -42vh;
  width: 105vw;
  height: 90vh;
  border-radius: 46% 54% 41% 59% / 57% 42% 58% 43%;
  animation: tide-contour 12s ease-in-out infinite alternate;
}

.showcase-panel::after {
  right: -8vw;
  bottom: -30vh;
  width: 82vw;
  height: 66vh;
  border: 1px solid currentColor;
  border-radius: 58% 42% 53% 47% / 39% 61% 42% 58%;
  opacity: 0.28;
}

.panel-digital::before {
  background: var(--blush);
  opacity: 0.42;
}

.panel-identity::before {
  background: var(--fuchsia);
  opacity: 0.35;
}

.panel-direction::before {
  background: var(--lavender);
  opacity: 0.65;
}

.panel-digital {
  color: var(--ink);
  background: var(--coral);
}

.panel-identity {
  color: var(--paper);
  background: var(--blue);
}

.panel-direction {
  color: var(--ink);
  background: var(--pale);
}

.panel-meta {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.panel-meta p {
  margin: 0;
}

.showcase-panel h3 {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: 8vh 0 0;
  font-size: clamp(6rem, 17vw, 18rem);
  font-weight: 850;
  font-stretch: 78%;
  letter-spacing: -0.115em;
  line-height: 0.55;
  text-transform: uppercase;
}

.showcase-panel h3 span:last-child {
  align-self: flex-end;
}

.panel-description {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 2rem;
  max-width: 22rem;
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.5;
}

.panel-art {
  position: absolute;
  z-index: 1;
}

.browser-art {
  right: 9vw;
  bottom: 15vh;
  width: min(42vw, 42rem);
  aspect-ratio: 1.45;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 3.5rem 8rem 4.5rem 2.8rem / 2.8rem 4.5rem 7rem 4rem;
  transform: rotate(-5deg);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.panel-digital:hover .browser-art {
  transform: rotate(1deg) scale(1.025);
}

.browser-bar {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  height: 2rem;
  padding: 0 0.6rem;
  border-bottom: 1px solid rgba(9, 9, 9, 0.45);
}

.browser-bar i {
  width: 0.5rem;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
}

.browser-stage {
  display: grid;
  height: calc(100% - 2rem);
  place-items: center;
  background:
    radial-gradient(ellipse at 24% 78%, rgba(75, 29, 120, 0.20) 0 15%, transparent 47%),
    radial-gradient(ellipse at 78% 28%, rgba(236, 47, 145, 0.25) 0 12%, transparent 44%),
    rgba(238, 234, 224, 0.20);
}

.browser-stage span {
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.browser-stage b {
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  font-size: 3rem;
}

.identity-art {
  top: 25%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(44vw, 42rem);
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.identity-mark {
  position: relative;
  z-index: 2;
  font-size: 11vw;
  font-weight: 850;
  letter-spacing: -0.1em;
}

.identity-ring {
  position: absolute;
  border: 1px solid var(--paper);
  border-radius: 43% 57% 62% 38% / 55% 38% 62% 45%;
}

.ring-one {
  inset: 5%;
  animation: tide-contour 11s ease-in-out infinite alternate;
}

.ring-one::before,
.ring-two::before {
  position: absolute;
  top: 50%;
  left: -0.45rem;
  width: 0.9rem;
  aspect-ratio: 1;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.ring-two {
  inset: 25%;
  animation: tide-contour 7s ease-in-out infinite alternate-reverse;
}

.direction-art {
  right: 8vw;
  bottom: 12vh;
  width: min(55vw, 55rem);
  height: 28vh;
}

.direction-line {
  position: absolute;
  top: 12%;
  right: 0;
  left: 0;
  height: 88%;
  border: 2px solid var(--ink);
  border-color: var(--ink) transparent transparent;
  border-radius: 50%;
  background: transparent;
  transform: rotate(-7deg);
}

.direction-line::before,
.direction-line::after {
  position: absolute;
  top: -0.25rem;
  width: 3rem;
  aspect-ratio: 1;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.direction-line::before { left: 18%; }
.direction-line::after { right: 13%; background: var(--coral); }

.direction-art > span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.showcase-progress {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.28rem;
  background: rgba(0,0,0,.2);
}

.showcase-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
}

.studio {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  min-height: 120svh;
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  color: var(--paper);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 78%, rgba(75, 29, 120, 0.55) 0 13%, transparent 49%),
    linear-gradient(155deg, var(--ink) 0 57%, var(--deep-purple) 100%);
}

.studio::before {
  position: absolute;
  right: -24vw;
  bottom: -28vw;
  width: 76vw;
  aspect-ratio: 1.25;
  border: 1px solid rgba(242, 207, 227, 0.25);
  border-radius: 42% 58% 55% 45% / 61% 39% 58% 42%;
  content: "";
  animation: tide-contour 15s ease-in-out infinite alternate;
}

.studio-side,
.studio-main {
  position: relative;
  z-index: 1;
}

.studio-main h2 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 820;
  font-stretch: 80%;
  letter-spacing: -0.1em;
  line-height: 0.73;
  text-transform: uppercase;
}

.studio-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(8rem, 15vw, 15rem) 0 0;
  padding: 0;
  list-style: none;
  gap: clamp(1rem, 2vw, 2rem);
}

.studio-steps li {
  position: relative;
  min-height: 20rem;
  padding: 1.5rem clamp(1.4rem, 2.2vw, 2.4rem);
  border: 1px solid var(--line-light);
  border-radius: 3.5rem 6rem 4.5rem 2.8rem / 4.5rem 3rem 5.8rem 3.5rem;
  background: rgba(238, 234, 224, 0.025);
}

.studio-steps li:nth-child(2) {
  border-radius: 6rem 3rem 5.5rem 4rem / 3rem 5.8rem 3.6rem 5rem;
  transform: translateY(3rem);
}

.studio-steps li:nth-child(3) {
  border-radius: 3rem 5.5rem 2.8rem 6rem / 5rem 3.4rem 5.6rem 3rem;
  transform: translateY(-1.5rem);
}

.studio-steps span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.studio-steps h3 {
  margin: 7rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.studio-steps p {
  max-width: 19rem;
  margin: 0;
  color: rgba(238,234,224,.68);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.5;
}

.manifesto {
  position: relative;
  min-height: 110svh;
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 79% 76%, var(--lavender) 0 13%, transparent 42%),
    radial-gradient(ellipse at 14% 19%, var(--blush) 0 8%, transparent 34%),
    linear-gradient(145deg, var(--fuchsia), #d9429d 62%, #b76ca8 100%);
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.manifesto::before {
  right: -18vw;
  bottom: -30vh;
  width: 92vw;
  height: 82vh;
  background: rgba(75, 29, 120, 0.38);
  border-radius: 46% 54% 38% 62% / 58% 41% 59% 42%;
  animation: tide-contour 13s ease-in-out infinite alternate;
}

.manifesto::after {
  right: -7vw;
  bottom: -18vh;
  width: 72vw;
  height: 62vh;
  border: 1px solid rgba(238, 234, 224, 0.46);
  border-radius: 58% 42% 61% 39% / 44% 62% 38% 56%;
}

.manifesto-field {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  pointer-events: none;
  color: transparent;
  font-size: 27vw;
  font-weight: 850;
  letter-spacing: -0.15em;
  -webkit-text-stroke: 1px rgba(9,9,9,.25);
  z-index: 1;
}

.manifesto-field span {
  transition: transform 250ms ease-out;
}

.manifesto h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(6rem, 16vw, 17rem);
  font-weight: 850;
  font-stretch: 78%;
  letter-spacing: -0.115em;
  line-height: 0.62;
  text-transform: uppercase;
}

.manifesto h2 span {
  color: var(--paper);
}

.manifesto > p {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 2rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact {
  position: relative;
  min-height: 110svh;
  padding: clamp(7rem, 12vw, 12rem) var(--pad) 2rem;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 10% 84%, rgba(236, 47, 145, 0.46) 0 11%, transparent 42%),
    linear-gradient(145deg, var(--purple), #643079 58%, #7d4a84 100%);
}

.contact::before {
  position: absolute;
  top: -18vh;
  left: -16vw;
  width: 72vw;
  height: 54vh;
  border: 1px solid rgba(242, 207, 227, 0.42);
  border-radius: 44% 56% 62% 38% / 58% 40% 60% 42%;
  content: "";
  transform: rotate(-8deg);
}

.contact-slice {
  position: absolute;
  z-index: 1;
  right: -32%;
  bottom: -58%;
  width: 112%;
  height: 130%;
  background: var(--ink);
  border-radius: 48% 52% 39% 61% / 43% 62% 38% 57%;
  transform: rotate(-9deg);
  transform-origin: center;
  animation: tide-contour 15s ease-in-out infinite alternate;
}

.contact-slice::after {
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(236, 47, 145, 0.38);
  border-radius: 57% 43% 61% 39% / 38% 59% 41% 62%;
  content: "";
}

.contact-kicker,
.contact h2,
.contact-bottom {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.contact h2 {
  margin: clamp(6rem, 13vh, 12rem) 0;
  font-size: clamp(7rem, 20vw, 21rem);
  font-weight: 850;
  font-stretch: 78%;
  letter-spacing: -0.12em;
  line-height: 0.58;
  text-transform: uppercase;
}

.contact h2 span {
  color: var(--coral);
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--paper);
}

.contact-bottom a {
  font-size: clamp(1.5rem, 3.4vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.contact-bottom a span {
  display: inline-block;
  transition: transform 200ms ease;
}

.contact-bottom a:hover span {
  transform: rotate(45deg);
}

.contact-bottom p {
  justify-self: end;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem var(--pad);
  color: var(--paper);
  background: var(--deep-purple);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer a {
  justify-self: end;
}

/* Elemental chapters ---------------------------------------------------- */

.atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Acid rain: translucent lens cells pass in front of the type. */

.declaration {
  color: var(--paper);
  background:
    radial-gradient(ellipse at 94% 12%, rgba(199, 255, 50, 0.16), transparent 37%),
    radial-gradient(ellipse at 14% 94%, rgba(236, 47, 145, 0.34), transparent 46%),
    linear-gradient(145deg, #13091f 0%, var(--deep-purple) 58%, #3c1457 100%);
}

.declaration::before {
  border: 0;
  background: rgba(199, 255, 50, 0.07);
}

.declaration-index,
.declaration-copy,
.declaration-orbit {
  z-index: 2;
}

.declaration-index span,
.declaration-copy h2 span {
  color: var(--acid);
}

.declaration-body p,
.declaration-body p:last-child {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(238, 234, 224, 0.76);
  transform: none;
}

.declaration-orbit {
  border: 0;
  background: rgba(199, 255, 50, 0.08);
  color: var(--acid);
  opacity: 0.68;
  mix-blend-mode: screen;
}

.declaration-orbit i {
  border: 0;
  background: rgba(236, 47, 145, 0.58);
}

.rain-lens {
  z-index: 4;
}

.rain-lens span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--size);
  aspect-ratio: 0.56;
  overflow: hidden;
  background: radial-gradient(ellipse at 46% 36%, rgba(238, 255, 189, 0.18) 0 22%, rgba(199, 255, 50, 0.48) 68%, rgba(199, 255, 50, 0.2));
  border-radius: 58% 42% 61% 39% / 38% 34% 66% 62%;
  opacity: 0.82;
  -webkit-backdrop-filter: blur(2.6px) brightness(1.5) contrast(1.5) saturate(1.65);
  backdrop-filter: blur(2.6px) brightness(1.5) contrast(1.5) saturate(1.65);
  mix-blend-mode: screen;
  transform: rotate(var(--tilt));
  will-change: transform;
  animation: rain-lens-fall var(--duration) linear var(--delay) infinite;
}

.rain-lens span::after {
  display: none;
}

/* Wind: broad, soft currents rather than decorative rules. */

.showcase-sticky {
  isolation: isolate;
}

.wind-layer {
  z-index: 2;
  mix-blend-mode: screen;
}

.wind-layer span {
  position: absolute;
  top: var(--y);
  left: -55vw;
  width: var(--width);
  height: var(--thickness);
  border-radius: 44% 56% 62% 38% / 55% 44% 56% 45%;
  background: linear-gradient(90deg, transparent, rgba(238, 234, 224, 0.08) 18%, rgba(238, 234, 224, 0.5) 54%, transparent);
  filter: blur(1.5px);
  opacity: 0.55;
  will-change: transform;
  animation: wind-pass var(--duration) cubic-bezier(0.4, 0, 0.2, 1) var(--delay) infinite;
}

.showcase-panel::after {
  border: 0;
  background: currentColor;
  opacity: 0.07;
  animation: tide-contour 17s ease-in-out infinite alternate-reverse;
}

.panel-description {
  padding-top: 0;
  border-top: 0;
}

.browser-art {
  border: 0;
  border-radius: 41% 59% 54% 46% / 38% 47% 53% 62%;
  background: rgba(238, 234, 224, 0.2);
}

.browser-bar {
  display: none;
  border: 0;
}

.browser-stage {
  height: 100%;
  background:
    radial-gradient(ellipse at 23% 76%, rgba(75, 29, 120, 0.72) 0 12%, transparent 48%),
    radial-gradient(ellipse at 78% 24%, rgba(238, 234, 224, 0.52) 0 10%, transparent 42%),
    linear-gradient(145deg, rgba(242, 207, 227, 0.58), rgba(236, 47, 145, 0.24));
}

.identity-ring {
  border: 0;
  background: rgba(236, 47, 145, 0.34);
  mix-blend-mode: screen;
}

.ring-two {
  background: rgba(216, 200, 242, 0.3);
}

.ring-one::before,
.ring-two::before {
  display: none;
}

.direction-line {
  top: 42%;
  height: clamp(2.5rem, 6vw, 5.5rem);
  border: 0;
  border-radius: 48% 52% 61% 39% / 58% 41% 59% 42%;
  background: linear-gradient(90deg, transparent, rgba(75, 29, 120, 0.9) 22%, rgba(236, 47, 145, 0.76) 72%, transparent);
  transform: rotate(-7deg);
  animation: tide-contour 10s ease-in-out infinite alternate;
}

.direction-line::before,
.direction-line::after {
  display: none;
}

/* Heat: open typography over rising colour, with no process cards. */

.studio {
  background:
    radial-gradient(ellipse at 86% 88%, rgba(255, 90, 54, 0.32), transparent 45%),
    linear-gradient(155deg, #09080b 0 54%, #281037 100%);
}

.studio::before {
  border: 0;
  background: rgba(236, 47, 145, 0.09);
}

.heat-layer {
  z-index: 0;
}

.heat-layer span {
  position: absolute;
  bottom: -42%;
  left: var(--x);
  width: var(--width);
  height: 112%;
  border-radius: 48% 52% 38% 62% / 68% 46% 54% 32%;
  background: linear-gradient(0deg, rgba(236, 47, 145, 0.54), rgba(255, 90, 54, 0.38) 38%, rgba(255, 216, 74, 0.2) 66%, transparent 90%);
  filter: blur(14px);
  opacity: var(--opacity);
  transform-origin: 50% 100%;
  will-change: transform;
  animation: heat-rise var(--duration) ease-in-out var(--delay) infinite alternate;
}

.studio-side,
.studio-main {
  z-index: 2;
}

.studio-side span,
.studio-main h2 span,
.studio-steps span {
  color: var(--heat);
}

.studio-steps {
  gap: clamp(2rem, 6vw, 7rem);
}

.studio-steps li,
.studio-steps li:nth-child(2),
.studio-steps li:nth-child(3) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  transform: none;
}

.studio-steps h3 {
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

/* Leaves: flat forms with the same slow, layered movement as the sea. */

.manifesto::after {
  border: 0;
  background: rgba(216, 200, 242, 0.2);
  animation: tide-contour 17s ease-in-out infinite alternate-reverse;
}

.manifesto-field {
  color: rgba(36, 16, 61, 0.13);
  -webkit-text-stroke: 0;
}

.leaf-fall {
  z-index: 1;
}

.leaf-fall span {
  position: absolute;
  top: -18vh;
  left: var(--x);
  width: var(--size);
  aspect-ratio: 1.78;
  border-radius: 100% 0 100% 0;
  background: var(--leaf-tone);
  opacity: var(--opacity);
  transform-origin: 20% 80%;
  will-change: transform;
  animation: leaf-drift var(--duration) linear var(--delay) infinite;
}

/* Frost: pale edge blooms over a deep, high-contrast closing scene. */

.contact {
  background:
    radial-gradient(ellipse at 88% 82%, rgba(123, 216, 244, 0.2), transparent 42%),
    linear-gradient(145deg, #090714 0%, var(--deep-purple) 58%, #17364d 100%);
}

.contact::before {
  border: 0;
  background: rgba(200, 245, 255, 0.08);
}

.frost-layer {
  z-index: 1;
}

.frost-layer span {
  position: absolute;
  right: -12vw;
  bottom: var(--bottom);
  left: -12vw;
  height: var(--height);
  border-radius: 48% 52% 58% 42% / 68% 61% 39% 32%;
  background: linear-gradient(180deg, rgba(226, 250, 255, 0.36), rgba(123, 216, 244, 0.12) 54%, rgba(216, 200, 242, 0.05));
  opacity: var(--opacity);
  -webkit-backdrop-filter: blur(1px) brightness(1.12) saturate(0.75);
  backdrop-filter: blur(1px) brightness(1.12) saturate(0.75);
  will-change: transform, border-radius;
  animation: frost-bloom var(--duration) ease-in-out var(--delay) infinite alternate;
}

.contact-slice {
  z-index: 0;
  right: -26%;
  bottom: -64%;
  background: linear-gradient(145deg, rgba(200, 245, 255, 0.3), rgba(123, 216, 244, 0.08) 48%, rgba(216, 200, 242, 0.15));
  transform: rotate(-7deg);
}

.contact-slice::after {
  border: 0;
  background: rgba(200, 245, 255, 0.08);
}

.contact h2 span {
  color: var(--ice);
}

.contact-bottom {
  padding-top: 0;
  border-top: 0;
}

@keyframes rain-lens-fall {
  0% {
    transform: translate3d(-0.8rem, -42vh, 0) rotate(var(--tilt)) scale(0.88, 1.08);
  }
  48% {
    transform: translate3d(0.7rem, 34vh, 0) rotate(calc(var(--tilt) + 3deg)) scale(1.04, 0.96);
  }
  100% {
    transform: translate3d(-0.2rem, 124vh, 0) rotate(calc(var(--tilt) - 2deg)) scale(0.92, 1.06);
  }
}

@keyframes wind-pass {
  0% {
    transform: translate3d(-12vw, 0, 0) rotate(-3deg) scaleX(0.82);
  }
  48% {
    transform: translate3d(92vw, var(--lift), 0) rotate(2deg) scaleX(1.12);
  }
  100% {
    transform: translate3d(172vw, var(--return-lift), 0) rotate(-1deg) scaleX(0.9);
  }
}

@keyframes heat-rise {
  0% {
    transform: translate3d(-4%, 9%, 0) rotate(-6deg) scale(0.92, 0.96);
  }
  55% {
    transform: translate3d(5%, -5%, 0) rotate(4deg) scale(1.04, 1.08);
  }
  100% {
    transform: translate3d(-1%, -11%, 0) rotate(-2deg) scale(0.96, 1.15);
  }
}

@keyframes leaf-drift {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(0deg) scale(0.82);
  }
  42% {
    transform: translate3d(var(--drift), 46vh, 0) rotate(172deg) scale(1.04);
  }
  100% {
    transform: translate3d(var(--return-drift), 132vh, 0) rotate(380deg) scale(0.88);
  }
}

@keyframes frost-bloom {
  0% {
    border-radius: 48% 52% 58% 42% / 68% 61% 39% 32%;
    transform: translate3d(-3%, 6%, 0) scale(1, 0.9) rotate(-1deg);
  }
  100% {
    border-radius: 56% 44% 41% 59% / 58% 72% 28% 42%;
    transform: translate3d(4%, -4%, 0) scale(1.04, 1.08) rotate(1deg);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 700ms ease, transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none !important;
  }

  body,
  a,
  button {
    cursor: auto;
  }
}

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

  .header-status {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-self: end;
    min-width: max-content;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.65rem;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 1.5rem;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(-0.38rem);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    justify-content: center;
    gap: 0;
    padding: 6rem var(--pad) 2rem;
    color: var(--paper);
    background: rgba(75, 29, 120, 0.72);
    -webkit-backdrop-filter: saturate(1.5) hue-rotate(8deg);
    backdrop-filter: saturate(1.5) hue-rotate(8deg);
    mix-blend-mode: normal;
    isolation: isolate;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      visibility 0s linear 420ms,
      transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 0.3rem 0;
    border-bottom: 0;
    font-family: var(--display);
    font-size: clamp(4rem, 13vw, 7rem);
    font-weight: 750;
    letter-spacing: -0.08em;
    line-height: 0.9;
  }

  .declaration,
  .studio {
    grid-template-columns: 0.3fr 1.7fr;
  }

  .declaration-orbit {
    width: 55vw;
  }

  .studio-steps {
    grid-template-columns: 1fr;
  }

  .studio-steps li,
  .studio-steps li:first-child {
    min-height: 0;
    padding: 0;
    border: 0;
    transform: none;
  }

  .studio-steps h3 {
    margin-top: 4rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 4.2rem;
  }

  .brand {
    width: 7.2rem;
  }

  .hero-meta-top {
    top: 5.5rem;
    display: block;
  }

  .hero-meta-top p:nth-child(2) {
    display: none;
  }

  .hero-meta-top p:nth-child(3) {
    display: none;
  }

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

  .hero-meta-bottom p:nth-child(2) {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.85rem, 12vw, 4.7rem);
    font-stretch: 76%;
    line-height: 0.72;
  }

  .hero-title > span:nth-child(2) {
    margin-left: 0;
  }

  .hero-title > span:nth-child(3) {
    margin-left: 15vw;
  }

  .hero-title-accent {
    padding-right: 0;
    text-align: left;
  }

  .declaration,
  .studio {
    display: block;
    min-height: auto;
  }

  .declaration::before {
    top: 7rem;
    right: -58vw;
    left: auto;
    width: 115vw;
    height: 120vw;
  }

  .declaration-index,
  .studio-side {
    margin-bottom: 3rem;
  }

  .declaration-copy h2,
  .studio-main h2,
  .manifesto h2 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .declaration-copy h2 {
    font-size: clamp(2.6rem, 13.1vw, 5.2rem);
  }

  .declaration-body {
    display: block;
    margin-top: 4rem;
  }

  .declaration-body p + p {
    margin-top: 2rem;
  }

  .declaration-body p:last-child {
    transform: none;
  }

  .declaration-orbit {
    right: -20vw;
    width: 75vw;
  }

  .showcase {
    height: auto;
  }

  .showcase-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .showcase-header,
  .showcase-progress {
    display: none;
  }

  .showcase-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .showcase-panel {
    width: 100%;
    min-height: 100svh;
    padding-top: 5rem;
  }

  .showcase-panel::before {
    right: -72vw;
    bottom: -32vh;
    width: 170vw;
  }

  .showcase-panel h3 {
    margin-top: 14vh;
    font-size: clamp(5rem, 23vw, 8rem);
  }

  .browser-art {
    right: -10vw;
    bottom: 18vh;
    width: 78vw;
  }

  .identity-art {
    width: 88vw;
  }

  .identity-mark {
    font-size: 27vw;
  }

  .direction-art {
    right: -20vw;
    width: 110vw;
  }

  .panel-description {
    left: var(--pad);
    max-width: 20rem;
  }

  .studio-steps {
    margin-top: 6rem;
  }

  .manifesto {
    min-height: 90svh;
  }

  .manifesto-field {
    font-size: 48vw;
  }

  .contact {
    min-height: 100svh;
  }

  .contact-slice {
    right: -78%;
    bottom: -48%;
    width: 160%;
    height: 110%;
  }

  .contact h2 {
    margin: 18vh 0;
    font-size: clamp(5.5rem, 25vw, 9rem);
  }

  .contact-bottom {
    display: block;
  }

  .contact-bottom a {
    font-size: 1.15rem;
  }

  .contact-bottom p {
    justify-self: start;
    max-width: 15rem;
    margin-top: 1.5rem;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

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

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

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

  .loader {
    display: none;
  }

  .js .hero-title i,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Post-hero editorial system ------------------------------------------- */

[hidden] {
  display: none !important;
}

.declaration {
  isolation: isolate;
  min-height: 115svh;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 82% 112%, rgba(236, 47, 145, 0.3) 0%, rgba(216, 200, 242, 0.16) 28%, transparent 62%),
    var(--paper);
}

.declaration::before,
.declaration::after,
.declaration-orbit,
.rain-lens {
  display: none;
}

.declaration-index,
.declaration-copy {
  position: relative;
  z-index: 1;
}

.declaration-index span,
.declaration-copy h2 span {
  color: var(--fuchsia);
}

.declaration-body p,
.declaration-body p:last-child {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(9, 9, 9, 0.66);
  background: none;
  transform: none;
}

.showcase {
  height: 400vh;
  background: var(--ink);
}

.showcase-sticky {
  isolation: isolate;
}

.wind-layer,
.showcase-panel::before,
.showcase-panel::after,
.panel-art {
  display: none;
}

.showcase-panel {
  isolation: isolate;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) 2rem;
}

.showcase-header {
  top: 5.8rem;
}

.panel-digital {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 82% 74%, rgba(236, 47, 145, 0.58), transparent 43%),
    radial-gradient(ellipse at 12% 8%, rgba(216, 200, 242, 0.58), transparent 38%),
    var(--paper);
}

.panel-identity {
  color: var(--paper);
  background:
    radial-gradient(ellipse at 22% 78%, rgba(236, 47, 145, 0.48), transparent 44%),
    radial-gradient(ellipse at 88% 18%, rgba(216, 200, 242, 0.16), transparent 40%),
    var(--deep-purple);
}

.panel-direction {
  color: var(--paper);
  background:
    radial-gradient(ellipse at 72% 66%, rgba(75, 29, 120, 0.68), transparent 46%),
    radial-gradient(ellipse at 9% 14%, rgba(236, 47, 145, 0.18), transparent 36%),
    #09080b;
}

.showcase-panel h3 {
  max-width: 94vw;
  margin-top: clamp(5rem, 10vh, 9rem);
  font-size: clamp(6rem, 16vw, 17rem);
  line-height: 0.62;
}

.panel-description {
  right: var(--pad);
  bottom: 2rem;
  left: auto;
  max-width: 24rem;
  padding: 0;
  border: 0;
  color: currentColor;
  opacity: 0.72;
}

.panel-scope {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: var(--pad);
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  opacity: 0.72;
}

.showcase-progress {
  height: 0.18rem;
  background: rgba(0, 0, 0, 0.14);
}

.studio {
  min-height: 125svh;
  background:
    radial-gradient(ellipse at 86% 88%, rgba(255, 90, 54, 0.28), transparent 44%),
    linear-gradient(155deg, #09080b 0 55%, #281037 100%);
}

.studio::before {
  display: none;
}

.studio-side,
.studio-main {
  z-index: 2;
}

.studio-side span,
.studio-main h2 span,
.studio-steps span {
  color: var(--heat);
}

.studio-steps {
  gap: clamp(2.5rem, 6vw, 7rem);
}

.studio-steps li,
.studio-steps li:nth-child(2),
.studio-steps li:nth-child(3) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  transform: none;
}

.studio-steps h3 {
  margin-top: clamp(3rem, 7vw, 7rem);
}

.manifesto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105svh;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 100% 100%, rgba(216, 200, 242, 0.68), transparent 52%),
    var(--paper);
}

.manifesto::before,
.manifesto::after,
.manifesto-field,
.leaf-fall {
  display: none;
}

.manifesto > .manifesto-kicker {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.manifesto h2 {
  align-self: flex-start;
  max-width: 92rem;
  margin: auto 0;
  font-size: clamp(6rem, 15vw, 16rem);
  line-height: 0.64;
}

.manifesto h2 span {
  color: var(--fuchsia);
}

.manifesto > .manifesto-response {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  align-self: flex-end;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.contact {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 88% 82%, rgba(75, 29, 120, 0.46), transparent 48%),
    radial-gradient(ellipse at 6% 12%, rgba(236, 47, 145, 0.12), transparent 34%),
    #08070a;
}

.contact::before,
.contact-slice,
.frost-layer {
  display: none;
}

.contact h2 {
  max-width: 92vw;
  margin: auto 0;
  font-size: clamp(7rem, 19vw, 20rem);
  line-height: 0.58;
}

.contact h2 span {
  color: var(--fuchsia);
}

.contact-bottom {
  padding: 0;
  border: 0;
}

.site-footer {
  background: #08070a;
}

@media (max-width: 900px) {
  .studio-steps li,
  .studio-steps li:first-child {
    min-height: 0;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 680px) {
  .declaration {
    min-height: auto;
    padding-bottom: 9rem;
    background:
      radial-gradient(ellipse at 92% 106%, rgba(236, 47, 145, 0.28), transparent 52%),
      var(--paper);
  }

  .declaration-copy h2 {
    font-size: clamp(2.6rem, 13.1vw, 5.2rem);
  }

  .showcase-panel {
    min-height: 100svh;
    padding: 5.5rem var(--pad) 2rem;
  }

  .showcase-panel h3 {
    margin-top: 17vh;
    font-size: clamp(5rem, 23vw, 8rem);
    line-height: 0.62;
  }

  .panel-description {
    right: auto;
    bottom: 5rem;
    left: var(--pad);
    max-width: min(22rem, calc(100vw - var(--pad) * 2));
  }

  .panel-scope {
    right: var(--pad);
    bottom: 2rem;
    left: var(--pad);
  }

  .studio {
    min-height: auto;
  }

  .studio-steps {
    gap: 5rem;
  }

  .studio-steps h3 {
    margin-top: 2rem;
  }

  .manifesto {
    min-height: 90svh;
  }

  .manifesto h2 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .manifesto > .manifesto-response {
    align-self: flex-start;
  }

  .contact {
    min-height: 100svh;
  }

  .contact h2 {
    margin: auto 0;
    font-size: clamp(5.5rem, 25vw, 9rem);
  }

  .contact-bottom p {
    justify-self: start;
    max-width: 15rem;
  }
}

/* Tide world ----------------------------------------------------------- */

.tide-world {
  --ocean-stretch: 82%;
  --ocean-tracking: -0.1em;
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: var(--namek-abyss);
}

.tide-world.tide-ready .hero {
  background: transparent;
}

.tide-world.tide-ready .hero-canvas,
.tide-world.tide-ready .hero-fallback {
  display: none;
}

.hero-title-accent {
  color: var(--ink);
}

.hero-title-accent i span {
  color: var(--fuchsia);
}

.declaration-copy h2,
.project-frame h2,
.studio-heading h2,
.manifesto-inner h2,
.contact-inner h2 {
  font-stretch: var(--ocean-stretch);
  letter-spacing: var(--ocean-tracking);
}

.tide-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100vw;
  height: 100svh;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(var(--tide-clip-top, 100%) 0 var(--tide-clip-bottom, 0) 0);
  transition: opacity 280ms ease, visibility 1ms linear 280ms;
}

.tide-world.is-tide-active .tide-canvas {
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease;
}

.tide-scene {
  --tide-progress: 0;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  overflow: visible;
  color: var(--paper);
  background: #09060d;
}

.tide-world.tide-ready .tide-scene {
  background: transparent;
}

.tide-scene[data-tone="light"] {
  color: var(--ink);
  background: var(--paper);
}

.tide-world.tide-ready .tide-scene[data-tone="light"] {
  background: transparent;
}

.tide-scene-inner {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100svh;
  padding: var(--scene-top) var(--pad) var(--scene-bottom);
  overflow: hidden;
}

.scene-mark {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.scene-mark p,
.scene-eyebrow {
  margin: 0;
}

.mobile-break {
  display: none;
}

.scene-mark span,
.scene-eyebrow {
  color: var(--fuchsia);
}

.scene-eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

/* Position */

.declaration {
  min-height: 150svh;
}

.declaration::before,
.declaration::after {
  display: none;
}

.declaration-inner {
  display: grid;
  grid-template-columns: minmax(8rem, 16vw) 1fr;
  grid-template-rows: auto 1fr auto;
}

.declaration-inner .scene-mark {
  grid-column: 1;
  grid-row: 1;
}

.declaration-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.declaration-copy h2 {
  max-width: none;
  margin: 1.2rem 0 0;
  font-size: clamp(4.7rem, 9.7vw, 10.5rem);
  font-weight: 830;
  font-stretch: 82%;
  letter-spacing: -0.1em;
  line-height: 0.72;
  text-transform: uppercase;
  transform: translate3d(0, calc((var(--tide-progress) - 0.5) * -3vh), 0);
}

.declaration-copy h2 span {
  color: var(--fuchsia);
}

.declaration-copy h2 em {
  display: block;
  margin: 0.12em 0 0 8vw;
  color: var(--namek-cobalt);
  font-style: normal;
}

.declaration-copy h2 em span {
  color: var(--fuchsia);
}

.declaration-body,
.declaration-body.reveal {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 8rem);
  width: min(58rem, 82%);
  max-width: none;
  margin: 0 0 0 auto;
  color: var(--paper);
  font-family: var(--mono);
  font-size: clamp(0.68rem, 0.9vw, 0.88rem);
  line-height: 1.55;
}

.declaration-body p,
.declaration-body p:last-child {
  margin: 0;
  padding: 0;
  color: currentColor;
  background: none;
  border: 0;
  border-radius: 0;
  opacity: 0.72;
  transform: none;
}

/* Work */

.work {
  --logo-tide: 8%;
  min-height: 240svh;
}

.work-inner {
  color: var(--paper);
}

.work-header {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.work-header p {
  margin: 0;
}

.project-stack {
  position: absolute;
  inset: clamp(8.5rem, 14vh, 11rem) var(--pad) 2rem;
}

.project-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 7vh, 0);
  transition:
    opacity 480ms ease,
    transform 700ms cubic-bezier(0.2, 0.78, 0.2, 1),
    visibility 1ms linear 700ms;
}

.project-visual {
  position: absolute;
  z-index: 0;
  inset: -3rem -2vw 1rem 10vw;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}

.project-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(59, 148, 166, 0.18), rgba(49, 90, 145, 0.54) 62%, rgba(33, 21, 45, 0.72));
  mix-blend-mode: color;
}

.project-proof {
  position: absolute;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 700ms ease, transform 1.1s cubic-bezier(0.2, 0.78, 0.2, 1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 82%, transparent 100%);
}

.project-frame.is-active .project-proof {
  opacity: 0.58;
}

.project-proof--car {
  top: 2%;
  right: -2%;
  width: 66%;
  height: 72%;
  transform: translate3d(var(--proof-car-x, 2rem), -1rem, 0) rotate(-1.5deg);
}

.project-frame.is-active .project-proof--car {
  transform: translate3d(var(--proof-car-x, 0), 0, 0) rotate(-1.5deg);
}

.project-proof--craft {
  bottom: -4%;
  left: 2%;
  width: 49%;
  height: 43%;
  transform: translate3d(var(--proof-craft-x, -2rem), 1rem, 0) rotate(1deg);
}

.project-frame.is-active .project-proof--craft {
  opacity: 0.38;
  transform: translate3d(var(--proof-craft-x, 0), 0, 0) rotate(1deg);
}

.project-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.16) brightness(0.78);
}

.project-proof--car img {
  object-position: center 58%;
}

.project-proof--craft img {
  object-position: center;
}

.project-wordmark {
  position: absolute;
  z-index: 3;
  top: clamp(2.5rem, 6.5vh, 4.5rem);
  left: 11%;
  width: clamp(15rem, 25vw, 25rem);
  aspect-ratio: 3 / 1;
  opacity: 0;
  transform: translate3d(-1.5rem, 0, 0);
  transition: opacity 650ms ease, transform 950ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-wordmark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-wordmark-surface {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(51% + var(--logo-tide)),
    87% calc(55% + var(--logo-tide)),
    72% calc(50% + var(--logo-tide)),
    55% calc(57% + var(--logo-tide)),
    40% calc(54% + var(--logo-tide)),
    25% calc(61% + var(--logo-tide)),
    12% calc(53% + var(--logo-tide)),
    0 calc(59% + var(--logo-tide))
  );
}

.project-wordmark-submerged {
  clip-path: polygon(
    0 calc(59% + var(--logo-tide)),
    12% calc(53% + var(--logo-tide)),
    25% calc(61% + var(--logo-tide)),
    40% calc(54% + var(--logo-tide)),
    55% calc(57% + var(--logo-tide)),
    72% calc(50% + var(--logo-tide)),
    87% calc(55% + var(--logo-tide)),
    100% calc(51% + var(--logo-tide)),
    100% 100%,
    0 100%
  );
  filter: brightness(0.7) saturate(1.24) hue-rotate(-6deg);
  opacity: 0.94;
  transform: translate3d(3px, 1px, 0) scaleX(0.986);
  transform-origin: center;
}

.project-frame.is-active .project-wordmark {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-meta,
.project-frame h2,
.project-lead,
.project-scope,
.project-status {
  position: relative;
  z-index: 3;
}

.project-frame.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 480ms ease,
    transform 700ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-meta {
  display: flex;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project-meta span {
  color: var(--fuchsia);
}

.project-meta p,
.project-frame h2,
.project-lead,
.project-scope,
.project-status {
  margin: 0;
}

.project-frame h2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 850;
  font-stretch: 80%;
  letter-spacing: -0.11em;
  line-height: 0.58;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.project-frame h2 span {
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-frame h2 span:first-child {
  transform: translate3d(calc(var(--tide-progress) * -5vw), 0, 0);
}

.project-frame h2 span:last-child {
  margin-left: 9vw;
  color: var(--namek-mint);
  transform: translate3d(calc(var(--tide-progress) * 7vw), 0, 0);
}

.project-lead {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 25rem;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.project-facts {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: clamp(5.4rem, 12vh, 7.4rem);
  width: min(27rem, 34vw);
  height: 4.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-facts li.is-current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-facts span {
  color: var(--fuchsia);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-facts p {
  max-width: 25rem;
  margin: 0.45rem 0 0;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  font-weight: 540;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.project-scope,
.project-status {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project-scope {
  bottom: 0;
  left: 0;
}

.project-status {
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.project-status span {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--fuchsia);
  border-radius: 50%;
  box-shadow: 0 0 0.9rem rgba(236, 47, 145, 0.72);
}

.work-progress {
  position: absolute;
  z-index: 5;
  right: var(--pad);
  bottom: 0.75rem;
  left: var(--pad);
  height: 1px;
  overflow: hidden;
  background: rgba(238, 234, 224, 0.2);
}

.work-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--fuchsia);
  transform: scaleX(0);
  transform-origin: left;
}

/* Method */

.studio {
  min-height: 190svh;
}

.studio::before {
  display: none;
}

.studio-inner {
  display: grid;
  grid-template-columns: minmax(8rem, 16vw) 1fr;
  grid-template-rows: auto 1fr auto;
  color: var(--paper);
}

.studio-inner .scene-mark {
  grid-column: 1;
  grid-row: 1;
}

.studio-heading {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.studio-heading h2 {
  margin: 1rem 0 0;
  font-size: clamp(5rem, 10.5vw, 11rem);
  font-weight: 840;
  font-stretch: 82%;
  letter-spacing: -0.1em;
  line-height: 0.63;
  text-transform: uppercase;
  transform: translate3d(calc((var(--tide-progress) - 0.5) * 4vw), 0, 0);
}

.studio-heading h2 span {
  color: var(--fuchsia);
}

.method-list {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem);
  margin: 0;
  padding: 0;
  color: var(--paper);
  list-style: none;
}

.method-list li,
.method-list li:nth-child(2),
.method-list li:nth-child(3) {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: currentColor;
  background: none;
  border: 0;
  border-radius: 0;
  transform: none;
}

.method-list > li > span {
  color: var(--fuchsia);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.method-list h3 {
  margin: 1.3rem 0 0;
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.method-list p {
  max-width: 19rem;
  margin: 1.2rem 0 0;
  color: currentColor;
  font-family: var(--mono);
  font-size: clamp(0.65rem, 0.8vw, 0.78rem);
  line-height: 1.55;
  opacity: 0.7;
}

/* Position / contact */

.manifesto {
  min-height: 130svh;
}

.manifesto::before,
.manifesto::after {
  display: none;
}

.manifesto-inner,
.contact-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}

.manifesto-inner .manifesto-kicker,
.manifesto-inner .manifesto-response,
.contact-inner .contact-kicker {
  position: relative;
  inset: auto;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.manifesto-inner h2 {
  align-self: flex-start;
  max-width: 94vw;
  margin: auto 0;
  color: var(--paper);
  font-size: clamp(6rem, 15vw, 16rem);
  font-weight: 850;
  font-stretch: 80%;
  letter-spacing: -0.11em;
  line-height: 0.63;
  text-transform: uppercase;
  transform: translate3d(calc((var(--tide-progress) - 0.5) * -5vw), 0, 0);
}

.manifesto-inner h2 span {
  color: var(--fuchsia);
}

.manifesto-inner .manifesto-response {
  align-self: flex-end;
}

.contact {
  min-height: 110svh;
}

.contact::before {
  display: none;
}

.contact-inner h2 {
  position: relative;
  z-index: 2;
  max-width: 94vw;
  margin: auto 0;
  color: var(--paper);
  font-size: clamp(7rem, 19vw, 20rem);
  font-weight: 850;
  font-stretch: 80%;
  letter-spacing: -0.11em;
  line-height: 0.57;
  text-transform: uppercase;
}

.contact-inner h2 span {
  color: var(--fuchsia);
}

.contact-inner .contact-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 0;
  border: 0;
}

.contact-inner .contact-kicker {
  z-index: 2;
}

.contact-breach {
  --breach-x: 50%;
  --breach-y: 74%;
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      ellipse 34rem 6.5rem at var(--breach-x) var(--breach-y),
      rgba(238, 234, 224, 0.92) 0 2%,
      rgba(196, 218, 69, 0.72) 12%,
      rgba(59, 148, 166, 0.48) 34%,
      rgba(49, 90, 145, 0.16) 56%,
      transparent 74%
    );
  filter: blur(1px) saturate(0.92);
  mix-blend-mode: screen;
  transform: scale(0.92);
  transition: opacity 420ms ease, transform 700ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.contact.is-breaching .contact-breach {
  opacity: 0.78;
  transform: scale(1);
}

.contact.is-breaching .contact-bottom a {
  color: var(--paper);
  mix-blend-mode: difference;
}

.contact-inner .contact-bottom a {
  font-size: clamp(1.6rem, 3.6vw, 4rem);
}

.contact-inner .contact-kicker,
.contact-inner h2,
.contact-inner .contact-bottom {
  opacity: 1 !important;
}

.manifesto-inner .manifesto-kicker,
.manifesto-inner h2,
.manifesto-inner .manifesto-response {
  opacity: 1 !important;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: #09060d;
}

@media (max-width: 900px) {
  .declaration-inner,
  .studio-inner {
    grid-template-columns: 8rem 1fr;
  }

  .declaration-copy h2 {
    font-size: clamp(4rem, 10.5vw, 7rem);
  }

  .method-list {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .tide-scene-inner {
    --scene-top: 5.8rem;
    --scene-bottom: 1.5rem;
    min-height: 100svh;
    padding: var(--scene-top) var(--pad) var(--scene-bottom);
  }

  .declaration {
    min-height: 155svh;
  }

  .declaration-inner,
  .studio-inner {
    display: flex;
    flex-direction: column;
  }

  .declaration-copy,
  .studio-heading {
    align-self: stretch;
    margin: auto 0;
  }

  .declaration-copy h2 {
    margin-top: 0.8rem;
    font-size: clamp(2.5rem, 10.3vw, 4rem);
    line-height: 0.73;
  }

  .declaration-copy h2 em {
    margin-left: 0;
  }

  .declaration-body,
  .declaration-body.reveal {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: calc(100vw - var(--pad) - var(--pad));
    min-width: 0;
    max-width: 100%;
    margin: 0;
    font-size: 0.67rem;
  }

  .declaration-body p {
    width: calc(100vw - var(--pad) - var(--pad));
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .mobile-break {
    display: block;
  }

  .work {
    min-height: 230svh;
  }

  .project-stack {
    inset: 7.8rem var(--pad) 1.5rem;
  }

  .project-visual {
    inset: 5.5rem -22vw 7rem -18vw;
  }

  .project-proof--car {
    top: 8%;
    right: -8%;
    width: 96%;
    height: 52%;
  }

  .project-frame.is-active .project-proof--car {
    opacity: 0.42;
  }

  .project-proof--craft {
    bottom: 16%;
    left: -4%;
    width: 76%;
    height: 30%;
  }

  .project-frame.is-active .project-proof--craft {
    opacity: 0.24;
  }

  .project-wordmark {
    top: 1rem;
    left: 22%;
    width: 13rem;
  }

  .project-facts {
    right: auto;
    bottom: 9.4rem;
    left: 0;
    width: min(19rem, 88vw);
    height: 4.4rem;
  }

  .project-facts p {
    max-width: 18rem;
    font-size: 0.78rem;
  }

  .project-frame h2 {
    top: 46%;
    font-size: clamp(3rem, 12.5vw, 5rem);
    line-height: 0.63;
  }

  .project-frame h2 span:first-child {
    font-size: 1.38em;
  }

  .project-frame h2 span:last-child {
    margin-left: 0;
  }

  .project-lead {
    right: auto;
    bottom: 4.8rem;
    left: 0;
    max-width: 18rem;
    font-size: 1rem;
  }

  .project-scope {
    right: 0;
    font-size: 0.55rem;
    line-height: 1.5;
  }

  .project-status {
    top: 2rem;
    right: auto;
    left: 0;
  }

  .work-progress {
    right: var(--pad);
    left: var(--pad);
  }

  .studio {
    min-height: 210svh;
  }

  .studio-heading h2 {
    font-size: clamp(3.6rem, 15vw, 5.5rem);
    line-height: 0.62;
  }

  .method-list {
    position: relative;
    display: block;
    width: 100%;
    min-height: 8.6rem;
  }

  .method-list li,
  .method-list li:nth-child(2),
  .method-list li:nth-child(3) {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 1.5rem, 0);
    transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
  }

  .method-list li.is-current {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .method-list h3 {
    margin-top: 0.45rem;
    font-size: 1.45rem;
  }

  .method-list p {
    margin-top: 0.55rem;
    font-size: 0.62rem;
  }

  .manifesto {
    min-height: 120svh;
  }

  .manifesto-inner h2 {
    font-size: clamp(3rem, 12.5vw, 4.7rem);
    line-height: 0.64;
  }

  .manifesto-inner .manifesto-response {
    align-self: flex-start;
  }

  .contact {
    min-height: 108svh;
  }

  .contact-inner h2 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .contact-inner .contact-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-inner .contact-bottom a {
    font-size: clamp(1.25rem, 5.8vw, 1.9rem);
  }

  .contact-inner .contact-bottom p {
    justify-self: start;
  }

  .contact-breach {
    background:
      radial-gradient(
        ellipse 16rem 4rem at var(--breach-x) var(--breach-y),
        rgba(238, 234, 224, 0.92) 0 2%,
        rgba(196, 218, 69, 0.72) 12%,
        rgba(59, 148, 166, 0.48) 34%,
        rgba(49, 90, 145, 0.16) 56%,
        transparent 74%
      );
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .tide-scene-inner {
    min-height: 100vh;
  }

  .tide-canvas,
  .project-frame,
  .project-frame h2 span {
    transition: none;
  }

  .declaration-copy h2,
  .project-frame h2 span,
  .studio-heading h2,
  .manifesto-inner h2 {
    transform: none;
  }

  .hero-title-refracted {
    filter: none;
    transform: translateY(-48%);
  }

  .project-proof,
  .project-wordmark,
  .project-facts li,
  .contact-breach {
    transition: none;
  }
}

/* Coherent water interaction pass ------------------------------------- */

.inspection-mode .hero-title i {
  opacity: 1;
  transform: none;
  transition: none;
}

.logo-crop {
  transform: scaleX(var(--brand-pressure, 1));
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.tide-light {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--depth-light-opacity, 0);
  visibility: hidden;
  clip-path: inset(var(--tide-clip-top, 100%) 0 var(--tide-clip-bottom, 0) 0);
  mix-blend-mode: screen;
  transition: opacity 500ms ease, visibility 1ms linear 500ms;
}

.tide-world.is-tide-active .tide-light {
  visibility: visible;
  transition-delay: 0s;
}

.tide-light::before {
  position: absolute;
  inset: -12% -15% 28%;
  content: "";
  background:
    radial-gradient(ellipse 36% 68% at 22% 0%, rgba(238, 234, 224, 0.2), transparent 72%),
    radial-gradient(ellipse 31% 72% at 67% -8%, rgba(204, 229, 197, 0.16), transparent 74%),
    radial-gradient(ellipse 26% 58% at 96% 8%, rgba(238, 234, 224, 0.11), transparent 70%);
  filter: blur(12px);
  transform: translate3d(var(--light-drift, 0), 0, 0) skewX(-8deg);
}

.tide-light i {
  position: absolute;
  top: -8%;
  width: 38vw;
  height: 74vh;
  background: linear-gradient(172deg, rgba(238, 234, 224, 0.16), transparent 72%);
  filter: blur(24px);
  transform: rotate(7deg);
}

.tide-light i:first-child {
  left: 9%;
}

.tide-light i:last-child {
  right: 5%;
  opacity: 0.62;
  transform: rotate(-5deg);
}

.project-visual {
  --media-tide: 7%;
  --project-overlay-opacity: 0.4;
  --photo-saturation: 0.78;
  --photo-brightness: 0.86;
  --craft-opacity: 0;
  --craft-opacity-mobile: 0;
}

.project-visual::after {
  background: linear-gradient(135deg, rgba(59, 148, 166, 0.08), rgba(49, 90, 145, 0.22) 62%, rgba(33, 21, 45, 0.34));
  opacity: var(--project-overlay-opacity);
  transition: opacity 500ms ease;
}

.project-frame.is-active .project-proof--car {
  opacity: 0.64;
}

.project-proof--craft {
  bottom: 1%;
  left: 4%;
  width: 38%;
  height: 32%;
}

.project-frame.is-active .project-proof--craft {
  opacity: var(--craft-opacity);
}

.project-frame:first-child h2 {
  top: 52%;
}

.project-proof .project-proof-image {
  position: absolute;
  inset: 0;
  filter:
    saturate(var(--photo-saturation))
    contrast(1.08)
    brightness(var(--photo-brightness));
}

.project-proof .project-proof-image--submerged {
  /* A narrow duplicate-image band makes the waterline refract the image
     without washing the entire photograph in an underwater colour cast. */
  clip-path: polygon(
    0 calc(var(--media-tide) - 3%),
    15% calc(var(--media-tide) - 5%),
    31% calc(var(--media-tide) - 2%),
    49% calc(var(--media-tide) - 5%),
    66% calc(var(--media-tide) - 2%),
    84% calc(var(--media-tide) - 4%),
    100% calc(var(--media-tide) - 2%),
    100% calc(var(--media-tide) + 5%),
    84% calc(var(--media-tide) + 3%),
    66% calc(var(--media-tide) + 6%),
    49% calc(var(--media-tide) + 3%),
    31% calc(var(--media-tide) + 6%),
    15% calc(var(--media-tide) + 3%),
    0 calc(var(--media-tide) + 5%)
  );
  filter: brightness(0.68) saturate(0.8) hue-rotate(-5deg) contrast(1.14);
  opacity: 0.76;
  transform: translate3d(2px, 1px, 0) scaleX(0.994);
  transform-origin: center;
  transition: clip-path 240ms linear;
}

@media (max-width: 900px) {
  .site-nav {
    overflow: hidden;
    background: rgba(15, 12, 22, 0.38);
    -webkit-backdrop-filter: blur(9px) saturate(1.16) contrast(1.04);
    backdrop-filter: blur(9px) saturate(1.16) contrast(1.04);
  }

  .site-nav::before,
  .site-nav::after {
    position: absolute;
    z-index: -1;
    right: -18%;
    left: -18%;
    content: "";
    pointer-events: none;
    border-radius: 50% 50% 0 0 / 14% 16% 0 0;
    transition: transform 620ms cubic-bezier(0.2, 0.78, 0.2, 1);
  }

  .site-nav::before {
    top: 29%;
    bottom: -12%;
    background: linear-gradient(180deg, rgba(59, 148, 166, 0.46), rgba(49, 90, 145, 0.62));
    transform: translate3d(-3%, 18%, 0) rotate(-2deg);
  }

  .site-nav::after {
    top: 51%;
    bottom: -18%;
    background: linear-gradient(180deg, rgba(101, 68, 117, 0.48), rgba(33, 21, 45, 0.82));
    transform: translate3d(4%, 24%, 0) rotate(2deg);
  }

  .site-nav.is-open::before {
    transform: translate3d(-3%, 0, 0) rotate(-2deg);
  }

  .site-nav.is-open::after {
    transform: translate3d(4%, 0, 0) rotate(2deg);
  }

  .site-nav a {
    position: relative;
    z-index: 2;
    padding: 0.2rem 0;
    font-size: clamp(3.45rem, 11.2vw, 5.4rem);
    font-weight: 690;
    line-height: 0.94;
  }
}

@media (max-width: 680px) {
  .project-visual {
    inset: 4.8rem -8vw 7rem;
  }

  .project-proof--car {
    top: 10%;
    right: -12%;
    width: 110%;
    height: 49%;
  }

  .project-frame.is-active .project-proof--car {
    opacity: 0.54;
  }

  .project-proof--craft {
    bottom: 13%;
    left: -5%;
    width: 58%;
    height: 23%;
  }

  .project-frame.is-active .project-proof--craft {
    opacity: var(--craft-opacity-mobile);
  }

  .project-wordmark {
    top: 0.35rem;
    left: 28%;
    width: 10.5rem;
  }

  .project-frame:first-child h2 {
    top: 49%;
    font-size: clamp(3rem, 11.4vw, 4.6rem);
    line-height: 0.66;
  }

  .project-frame:first-child h2 span:first-child {
    font-size: 1.28em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tide-light {
    display: none;
  }

  .logo-crop,
  .project-visual::after,
  .project-proof-image--submerged {
    transition: none;
  }
}

/* Production content pass --------------------------------------------- */

.hero-support {
  position: absolute;
  z-index: 4;
  bottom: 4.6rem;
  left: var(--pad);
  width: min(27rem, 34vw);
}

.hero-support p {
  margin: 0;
  font-size: clamp(0.76rem, 1vw, 0.94rem);
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hero-support div {
  display: flex;
  gap: 1.3rem;
  margin-top: 0.85rem;
}

.hero-support a,
.services-link {
  padding-bottom: 0.2rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.declaration-body,
.declaration-body.reveal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(74rem, 84%);
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

/* Services */

.services-scene {
  min-height: 185svh;
}

.services-inner {
  display: grid;
  grid-template-columns: minmax(8rem, 16vw) minmax(18rem, 0.8fr) minmax(23rem, 1.2fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(2rem, 5vw, 6rem);
  color: var(--ink);
}

.services-inner .scene-mark {
  grid-column: 1;
  grid-row: 1;
}

.services-heading {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
}

.services-heading h2 {
  margin: 1rem 0 0;
  font-size: clamp(4.2rem, 7.6vw, 8.8rem);
  font-weight: 840;
  font-stretch: var(--ocean-stretch);
  letter-spacing: var(--ocean-tracking);
  line-height: 0.65;
  text-transform: uppercase;
  transform: translate3d(calc((var(--tide-progress) - 0.5) * -2.5vw), 0, 0);
}

.services-intro {
  max-width: 28rem;
  margin: 2.2rem 0 0;
  font-size: clamp(0.92rem, 1.3vw, 1.25rem);
  font-weight: 540;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.services-list {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.9rem;
  padding: clamp(0.8rem, 1.5vh, 1.2rem) 0;
  border-top: 1px solid rgba(17, 17, 15, 0.24);
}

.services-list li:last-child {
  border-bottom: 1px solid rgba(17, 17, 15, 0.24);
}

.services-list > li > span {
  padding-top: 0.2rem;
  color: var(--fuchsia);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.services-list h3 {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  font-weight: 690;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

.services-list p {
  max-width: 36rem;
  margin: 0.45rem 0 0;
  font-family: var(--mono);
  font-size: clamp(0.58rem, 0.7vw, 0.72rem);
  line-height: 1.42;
  opacity: 0.72;
}

.services-link {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.work-header p:first-child span {
  margin-right: 0.75rem;
  color: var(--fuchsia);
}

.contact-invite {
  max-width: 34rem;
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: clamp(0.62rem, 0.82vw, 0.78rem);
  line-height: 1.45;
  opacity: 0.72;
}

.contact-inner .contact-bottom > p {
  max-width: 24rem;
  text-align: right;
}

@media (max-width: 900px) {
  .services-inner {
    grid-template-columns: 8rem minmax(14rem, 0.75fr) minmax(20rem, 1.25fr);
    column-gap: 2rem;
  }

  .services-heading h2 {
    font-size: clamp(3.6rem, 7vw, 5.5rem);
  }
}

@media (max-width: 680px) {
  .hero-support {
    right: var(--pad);
    bottom: 4.35rem;
    width: auto;
  }

  .hero-support p {
    max-width: 22rem;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .hero-support div {
    margin-top: 0.65rem;
  }

  .hero-support a {
    font-size: 0.54rem;
  }

  .declaration-body,
  .declaration-body.reveal {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .services-scene {
    min-height: 190svh;
  }

  .services-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .services-heading {
    margin-top: auto;
  }

  .services-heading .scene-eyebrow {
    display: none;
  }

  .services-heading h2 {
    margin-top: 1rem;
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 0.66;
    transform: none;
  }

  .services-intro {
    max-width: 19rem;
    margin-top: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .services-list {
    align-self: stretch;
    margin-top: 1rem;
  }

  .services-list li {
    grid-template-columns: 1.6rem 1fr;
    gap: 0.45rem;
    padding: 0.45rem 0;
  }

  .services-list h3 {
    font-size: 0.9rem;
    line-height: 1;
  }

  .services-list p {
    margin-top: 0.22rem;
    font-size: 0.58rem;
    line-height: 1.32;
  }

  .services-link {
    margin-top: auto;
    font-size: 0.56rem;
  }

  .contact-inner .contact-bottom > p {
    text-align: left;
  }
}

@media (max-width: 360px), (max-height: 640px) and (max-width: 680px) {
  .hero-support p {
    max-width: 18rem;
    font-size: 0.6rem;
  }

  .services-heading h2 {
    font-size: 2.45rem;
  }

  .services-intro {
    font-size: 0.68rem;
  }

  .services-list p {
    font-size: 0.47rem;
  }
}
