:root {
  --bg: #fafafa;
  --font-pretendard: "Pretendard Local";
  --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-pretendard), var(--font-fallback);
  --text: #111111;
  --graphite: #2f2f2f;
  --paper: #fafafa;
  --surface: #ffffff;
  --soft-surface: #eeeeee;
  --line: #e0e0e0;
  --line-soft: rgba(224, 224, 224, 0.62);
  --muted: #757575;
  --ink: #424242;
  --strong-ink: var(--graphite);
  --brand-ink: #363636;
  --soft-ink: #5c5c5c;
  --faint-ink: #9e9e9e;
  --error: #b04444;
  --glass: rgba(250, 250, 250, 0.58);
  --glass-strong: rgba(250, 250, 250, 0.72);
  --text-micro: 11px;
  --text-caption: 12px;
  --text-body: 14px;
  --text-body-large: 14px;
  --text-heading: clamp(22px, 2.7vw, 36px);
  --text-page: clamp(28px, 2.8vw, 38px);
  --text-hero: clamp(58px, 8vw, 124px);
  --max: 1120px;
  --home-rail: 960px;
  --ease-matt: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-matt: 760ms;
}

@font-face {
  font-family: "Pretendard Local";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("./assets/fonts/PretendardVariable.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-display);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60vh;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 250, 1) 0%,
    rgba(250, 250, 250, 0.98) 22%,
    rgba(250, 250, 250, 0.72) 58%,
    rgba(250, 250, 250, 0) 100%
  );
  z-index: 1;
}

.lava-background {
  position: fixed;
  top: -12vh;
  left: -4vw;
  z-index: 0;
  width: 108vw;
  height: 124vh;
  pointer-events: none;
  opacity: 1;
  filter: saturate(0);
  transform: translate3d(0, var(--lava-y, 0px), 0);
  will-change: transform;
}

.lava-background.is-static-lava {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.96), rgba(228, 228, 228, 0.78) 34%, transparent 58%),
    radial-gradient(circle at 76% 12%, rgba(214, 214, 214, 0.68), transparent 42%),
    linear-gradient(135deg, #f8f8f8 0%, #dedede 44%, #fafafa 100%);
  filter: saturate(0);
  transform: none;
  will-change: auto;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 1px;
  background: rgba(66, 66, 66, 0.24);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none;
  opacity: 0.48;
}

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

main,
footer {
  position: relative;
  z-index: 2;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22.3984375px clamp(20px, 4vw, 54px) 54px;
  color: var(--ink);
  pointer-events: auto;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand-lockup {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 180.484375px;
  height: 35.203125px;
  overflow: visible;
  color: rgb(115, 115, 115);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
}

.brand-lockup span {
  color: inherit;
}

.site-header nav {
  position: static;
  z-index: auto;
  transform: none;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6vw, 78px);
  margin-top: 28px;
  padding: 0;
  color: rgba(66, 66, 66, 0.72);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: var(--text-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav a {
  position: relative;
  padding-bottom: 5px;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header nav a[aria-current="page"] {
  color: var(--strong-ink);
}

.blur-cycle-measure,
.blur-cycle-stage {
  white-space: nowrap;
  width: calc(100% + 10px);
}

.blur-cycle-measure {
  display: block;
  margin: 0;
  visibility: hidden;
  pointer-events: none;
}

.blur-cycle-stage {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  overflow: visible;
}

.blur-cycle-phrase {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: visible;
  white-space: nowrap;
}

.blur-cycle-word {
  display: flex;
  flex-wrap: nowrap;
  white-space: pre;
}

.blur-cycle-char {
  display: block;
  opacity: 0;
  filter: blur(var(--blur-cycle-blur, 6.4px));
  animation-duration: 1416ms;
  animation-timing-function: linear;
  animation-fill-mode: both;
  will-change: opacity, filter, transform;
}

.blur-cycle-char.is-entering {
  animation-name: blurCycleEnter;
}

.blur-cycle-char.is-exiting {
  animation-name: blurCycleExit;
}

.blur-cycle-char-text {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

@keyframes blurCycleEnter {
  0% {
    opacity: 0;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 1));
  }
  2.632% {
    opacity: 0.017523;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.982477));
  }
  5.263% {
    opacity: 0.061552;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.938448));
  }
  7.895% {
    opacity: 0.121901;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.878099));
  }
  10.526% {
    opacity: 0.191208;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.808792));
  }
  13.158% {
    opacity: 0.264241;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.735759));
  }
  15.789% {
    opacity: 0.337373;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.662627));
  }
  18.421% {
    opacity: 0.408167;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.591833));
  }
  21.053% {
    opacity: 0.475069;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.524931));
  }
  23.684% {
    opacity: 0.537163;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.462837));
  }
  26.316% {
    opacity: 0.593994;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.406006));
  }
  28.947% {
    opacity: 0.64543;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.35457));
  }
  31.579% {
    opacity: 0.691559;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.308441));
  }
  34.211% {
    opacity: 0.732615;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.267385));
  }
  36.842% {
    opacity: 0.768922;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.231078));
  }
  39.474% {
    opacity: 0.800852;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.199148));
  }
  42.105% {
    opacity: 0.828799;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.171201));
  }
  44.737% {
    opacity: 0.853158;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.146842));
  }
  47.368% {
    opacity: 0.874311;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.125689));
  }
  50% {
    opacity: 0.89262;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.10738));
  }
  52.632% {
    opacity: 0.908422;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.091578));
  }
  55.263% {
    opacity: 0.922023;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.077977));
  }
  57.895% {
    opacity: 0.933702;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.066298));
  }
  60.526% {
    opacity: 0.94371;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.05629));
  }
  63.158% {
    opacity: 0.952267;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.047733));
  }
  65.789% {
    opacity: 0.959572;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.040428));
  }
  68.421% {
    opacity: 0.965797;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.034203));
  }
  71.053% {
    opacity: 0.971094;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.028906));
  }
  73.684% {
    opacity: 0.975594;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.024406));
  }
  76.316% {
    opacity: 0.979413;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.020587));
  }
  78.947% {
    opacity: 0.982649;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.017351));
  }
  81.579% {
    opacity: 0.985388;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.014612));
  }
  84.211% {
    opacity: 0.987704;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.012296));
  }
  86.842% {
    opacity: 0.989661;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.010339));
  }
  89.474% {
    opacity: 0.991313;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.008687));
  }
  92.105% {
    opacity: 0.992705;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.007295));
  }
  94.737% {
    opacity: 0.993878;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.006122));
  }
  97.368% {
    opacity: 0.994865;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.005135));
  }
  100% {
    opacity: 1;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0));
  }
}

@keyframes blurCycleExit {
  0% {
    opacity: 1;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0));
  }
  2.632% {
    opacity: 0.982477;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.017523));
  }
  5.263% {
    opacity: 0.938448;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.061552));
  }
  7.895% {
    opacity: 0.878099;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.121901));
  }
  10.526% {
    opacity: 0.808792;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.191208));
  }
  13.158% {
    opacity: 0.735759;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.264241));
  }
  15.789% {
    opacity: 0.662627;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.337373));
  }
  18.421% {
    opacity: 0.591833;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.408167));
  }
  21.053% {
    opacity: 0.524931;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.475069));
  }
  23.684% {
    opacity: 0.462837;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.537163));
  }
  26.316% {
    opacity: 0.406006;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.593994));
  }
  28.947% {
    opacity: 0.35457;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.64543));
  }
  31.579% {
    opacity: 0.308441;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.691559));
  }
  34.211% {
    opacity: 0.267385;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.732615));
  }
  36.842% {
    opacity: 0.231078;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.768922));
  }
  39.474% {
    opacity: 0.199148;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.800852));
  }
  42.105% {
    opacity: 0.171201;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.828799));
  }
  44.737% {
    opacity: 0.146842;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.853158));
  }
  47.368% {
    opacity: 0.125689;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.874311));
  }
  50% {
    opacity: 0.10738;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.89262));
  }
  52.632% {
    opacity: 0.091578;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.908422));
  }
  55.263% {
    opacity: 0.077977;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.922023));
  }
  57.895% {
    opacity: 0.066298;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.933702));
  }
  60.526% {
    opacity: 0.05629;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.94371));
  }
  63.158% {
    opacity: 0.047733;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.952267));
  }
  65.789% {
    opacity: 0.040428;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.959572));
  }
  68.421% {
    opacity: 0.034203;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.965797));
  }
  71.053% {
    opacity: 0.028906;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.971094));
  }
  73.684% {
    opacity: 0.024406;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.975594));
  }
  76.316% {
    opacity: 0.020587;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.979413));
  }
  78.947% {
    opacity: 0.017351;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.982649));
  }
  81.579% {
    opacity: 0.014612;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.985388));
  }
  84.211% {
    opacity: 0.012296;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.987704));
  }
  86.842% {
    opacity: 0.010339;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.989661));
  }
  89.474% {
    opacity: 0.008687;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.991313));
  }
  92.105% {
    opacity: 0.007295;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.992705));
  }
  94.737% {
    opacity: 0.006122;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.993878));
  }
  97.368% {
    opacity: 0.005135;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 0.994865));
  }
  100% {
    opacity: 0;
    filter: blur(calc(var(--blur-cycle-blur, 6.4px) * 1));
  }
}

.hero {
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 126px clamp(20px, 4vw, 54px) 44px;
}

.grain {
  position: absolute;
  inset: -18%;
  background: transparent;
  animation: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: block;
  min-width: 0;
}

.hero-copy-block {
  width: min(920px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  min-width: 0;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8.6vw, 128px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
  max-width: none;
  transform-origin: center;
  color: var(--brand-ink);
  opacity: 0.94;
}

.hero h1 span {
  display: inline;
  transform-origin: left center;
}

.hero-descriptor {
  margin: clamp(10px, 1.2vw, 15px) 0 0;
  color: rgba(54, 54, 54, 0.64);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 360;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-statement {
  display: grid;
  gap: 7px;
  width: min(650px, 100%);
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  margin-inline: auto;
}

.hero-statement p {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 330;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-statement p:nth-child(2) {
  color: var(--soft-ink);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4vw, 58px);
  margin-top: clamp(34px, 4.2vw, 52px);
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 46px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.32fr);
  gap: 14px;
  align-items: end;
}

.hero-feature,
.hero-side figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--soft-surface);
  clip-path: inset(0 0 0 0);
}

.hero-feature {
  aspect-ratio: 1.04;
}

.hero-feature img,
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.54) grayscale(0.18) contrast(1.02) brightness(1.08);
  transform: scale(1.01);
  transition:
    filter 280ms ease,
    transform 280ms ease;
}

.hero-feature:hover img,
.hero-feature:focus-within img,
.hero-side figure:hover img,
.hero-side figure:focus-within img {
  filter: saturate(0.36) grayscale(0.28) contrast(1.06) brightness(0.5) blur(5px);
  transform: scale(1.035);
}

.hero-feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 14px 15px;
  border-top: 1px solid rgba(250, 250, 250, 0.7);
  background: transparent;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  color: white;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}

.hero-feature:hover figcaption,
.hero-feature:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.hero-feature figcaption span,
.hero-side figcaption {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-feature figcaption strong {
  font-size: 14px;
  font-weight: 500;
}

.hero-side {
  display: grid;
  gap: 14px;
}

.hero-side figure {
  aspect-ratio: 1 / 1;
}

.hero-side figure:first-child {
  animation-delay: 160ms;
}

.hero-side figure:last-child {
  animation-delay: 280ms;
}

.hero-side figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-top: 1px solid rgba(250, 250, 250, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero-side figure:hover figcaption,
.hero-side figure:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.button {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  color: var(--soft-ink);
  font-size: var(--text-body);
  transition:
    color 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before {
  transform: scaleX(1);
}

.button-primary {
  background: transparent;
  color: var(--soft-ink);
}

.button-secondary {
  background: transparent;
  color: var(--muted);
}

.button:hover {
  background: transparent;
  color: var(--strong-ink);
}

section {
  padding: clamp(56px, 6.6vw, 96px) clamp(20px, 4vw, 54px);
}

.studio,
.lab-index,
.archive-preview,
.instagram-preview,
.process,
.operating-preview,
.projects {
  max-width: calc(var(--max) + 108px);
  margin: 0 auto;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: var(--text-heading);
  font-weight: 300;
  line-height: 1.18;
  word-break: keep-all;
}

.studio-copy p,
.section-head p {
  margin: 0;
  color: var(--soft-ink);
  font-size: var(--text-body-large);
  line-height: 1.86;
  word-break: keep-all;
}

.lab-index {
  border-top: 1px solid rgba(224, 224, 224, 0.7);
}

.lab-index > h2 {
  max-width: 780px;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(28px, 3.2vw, 40px);
  background: transparent;
}

.lab-grid article {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background 520ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lab-grid article + article {
  margin-left: -1px;
}

.lab-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.lab-grid h3 {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 300;
  line-height: 1.18;
}

.lab-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
}

.lab-grid small,
.process-list small {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  word-break: keep-all;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  filter: blur(12px);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
  transition:
    opacity 460ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lab-grid small::after,
.process-list small::after {
  content: "";
  width: min(72px, 46%);
  height: 1px;
  background: rgba(250, 250, 250, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 6px, 0);
  animation: none;
  will-change: opacity, filter, transform;
}

.scroll-reveal.is-visible {
  animation: sectionRevealIn 800ms var(--ease-matt) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.reveal-item {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 6px, 0);
  animation: none;
  will-change: opacity, filter, transform;
}

.reveal-item.is-visible {
  animation: sectionRevealIn 860ms var(--ease-matt) both;
  animation-delay: var(--item-reveal-delay, 0ms);
}

.home-text-reveal {
  transform: none;
}

.home-text-reveal .text-reveal-line {
  display: inline;
}

.home-text-reveal .text-reveal-char {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 4px, 0);
  animation: none;
  will-change: opacity, filter, transform;
}

.home-text-reveal.is-visible .text-reveal-char {
  animation: textRevealIn 830ms var(--ease-matt) both;
  animation-delay: calc(var(--text-reveal-delay, 0ms) + var(--line-reveal-delay, 0ms) + var(--char-reveal-delay, 0ms));
}

.hero h1.home-text-reveal.is-visible .text-reveal-char {
  animation-duration: 1060ms;
}

.home-text-reveal .text-reveal-space {
  width: 0.28em;
}

@keyframes textRevealIn {
  from {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(0, 4px, 0);
  }
  30% {
    opacity: 0.42;
    filter: blur(11px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sectionRevealIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 6px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.lab-grid article:hover,
.process-list article:hover {
  z-index: 3;
  transform: none;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(48, 48, 48, 0.26);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.lab-grid article:hover + article,
.lab-grid article:has(+ article:hover),
.process-list article:hover + article,
.process-list article:has(+ article:hover) {
  z-index: 2;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  filter: brightness(1.015);
}

.lab-grid article:hover span,
.lab-grid article:hover h3,
.lab-grid article:hover p,
.process-list article:hover span,
.process-list article:hover h3,
.process-list article:hover p {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(-10px);
}

.lab-grid article:hover small,
.process-list article:hover small {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
}

.lab-grid article:hover small::after,
.process-list article:hover small::after {
  transform: scaleX(1);
}

.archive-preview {
  display: block;
}

.archive-copy {
  width: min(100%, var(--home-rail));
  max-width: none;
  padding-top: 6px;
  margin: 0 auto clamp(22px, 2.6vw, 34px);
}

.archive-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--home-rail));
  margin-inline: auto;
  background: rgba(224, 224, 224, 0.64);
}

.archive-tile {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--soft-surface);
}

.archive-tile-large {
  grid-row: auto;
}

.archive-board .archive-tile {
  aspect-ratio: 1 / 1;
}

.archive-tile img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.52) grayscale(0.12) contrast(1.03) brightness(1.06);
  transform: scale(1.01);
  transition:
    filter 300ms ease,
    transform 300ms ease;
}

.archive-tile span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 240px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-tile span::after,
.project-card-body::after,
.instagram-caption::after {
  content: "";
  width: min(72px, 46%);
  height: 1px;
  background: rgba(250, 250, 250, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-tile:hover img,
.archive-tile:focus img {
  filter: saturate(0.3) grayscale(0.3) contrast(1.04) brightness(0.72) blur(7px);
  transform: scale(1.035);
}

.archive-tile:hover span,
.archive-tile:focus span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.archive-tile:hover span::after,
.archive-tile:focus span::after {
  transform: scaleX(1);
}

.material-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.material-row span {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 116px;
  border: 1px solid var(--line);
  background: var(--tone);
  padding: 14px;
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(224, 224, 224, 0.64);
}

.studio-image-grid figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft-surface);
}

.studio-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.36) grayscale(0.22) contrast(1.04) brightness(1.1);
}

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

.home-process .section-kicker {
  width: min(100%, var(--home-rail));
  margin: 0 auto clamp(16px, 2vw, 24px);
}

.process > h2 {
  max-width: 760px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(100%, var(--home-rail));
  background: transparent;
  margin: 0 auto;
}

.process-list article {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background 520ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-list article + article {
  margin-left: -1px;
}

.process-list span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.56;
  word-break: keep-all;
}

.lab-grid span,
.lab-grid h3,
.lab-grid p,
.process-list span,
.process-list h3,
.process-list p {
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-grid article,
.process-list article {
  min-height: 168px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px 16px;
  border-color: rgba(224, 224, 224, 0.72);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.service-grid article:hover,
.process-list article:hover {
  border-color: rgba(224, 224, 224, 0.92);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.service-grid article:hover + article,
.service-grid article:has(+ article:hover),
.process-list article:hover + article,
.process-list article:has(+ article:hover) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(224, 224, 224, 0.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
}

.service-grid article:hover span,
.service-grid article:hover h3,
.service-grid article:hover p,
.process-list article:hover span,
.process-list article:hover h3,
.process-list article:hover p {
  opacity: 1;
  filter: none;
  transform: none;
}

.service-grid span,
.process-list span {
  color: var(--faint-ink);
  font-size: 10px;
  line-height: 1;
}

.service-grid h3,
.process-list h3 {
  color: var(--strong-ink);
  font-size: clamp(14px, 1.15vw, 16px);
}

.service-grid p,
.process-list p {
  max-width: 168px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.58;
  text-transform: none;
}

.home-process .process-list article:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(48, 48, 48, 0.26);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.home-process .process-list article:hover + article,
.home-process .process-list article:has(+ article:hover) {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.home-process .process-list article:hover span,
.home-process .process-list article:hover h3,
.home-process .process-list article:hover p {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(-10px);
}

.home-process .process-list article:hover small {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
}

.home-process .process-list article:hover small::after {
  transform: scaleX(1);
}

.operating-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  border-top: 1px solid rgba(224, 224, 224, 0.7);
}

.operating-copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.operating-copy h2 {
  max-width: 560px;
}

.operating-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--soft-ink);
  font-size: var(--text-body);
  line-height: 1.82;
  word-break: keep-all;
}

.operating-copy div:last-child {
  display: grid;
  gap: 6px;
}

.operating-mockup {
  display: grid;
  border-top: 1px solid rgba(224, 224, 224, 0.72);
  border-left: 1px solid rgba(224, 224, 224, 0.54);
}

.operating-mockup div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: baseline;
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid rgba(224, 224, 224, 0.54);
  border-bottom: 1px solid rgba(224, 224, 224, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.operating-mockup span,
.operating-mockup small {
  color: var(--faint-ink);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operating-mockup strong {
  color: var(--strong-ink);
  font-size: 13px;
  font-weight: 430;
  line-height: 1.45;
  word-break: keep-all;
}

.operating-mockup small {
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.work-gallery {
  padding-top: clamp(18px, 2.8vw, 36px);
}

.filter-panel {
  position: relative;
  top: auto;
  z-index: 5;
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  margin-bottom: clamp(18px, 2.4vw, 30px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(26px, 3.4vw, 48px);
  align-items: center;
  min-width: 0;
}

.filter-label {
  color: rgba(54, 54, 54, 0.46);
  font-size: var(--text-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-width: 52px;
}

.filter {
  position: relative;
  overflow: visible;
  min-height: 30px;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 0;
  font: inherit;
  font-size: var(--text-caption);
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.filter::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.46;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.filter:hover {
  color: var(--strong-ink);
  filter: brightness(1.01);
}

.filter:hover::before {
  transform: scaleX(1);
}

.filter.is-active {
  background: transparent;
  color: var(--strong-ink);
  font-weight: 430;
  animation: none;
}

.filter.is-active::before {
  transform: scaleX(1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.project-card {
  position: relative;
  display: block;
  min-width: 0;
  background: transparent;
  opacity: 1;
  transform: none;
  transition:
    opacity 560ms var(--ease-matt),
    filter 660ms var(--ease-matt),
    transform 760ms var(--ease-matt);
  overflow: hidden;
}

.js .project-card:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  filter: blur(8px);
}

.project-card.is-visible {
  opacity: 1;
  transform: none;
}

.project-card:hover,
.project-card:focus,
.project-card:focus-within {
  transform: none;
}

.project-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft-surface);
  box-shadow: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.52) grayscale(0.12) contrast(1.03) brightness(1.06);
  transform: scale(1.01);
  transition:
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover img,
.project-card:focus img,
.project-card:focus-within img {
  filter: saturate(0.42) grayscale(0.18) contrast(1.03) brightness(0.76) blur(7px);
  transform: scale(1.035);
}

.project-card-body {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(78%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.project-card-body span {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  word-break: keep-all;
}

.project-card-body p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  word-break: keep-all;
}

.project-card:hover .project-card-body,
.project-card:focus .project-card-body,
.project-card:focus-within .project-card-body {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.project-card:hover .project-card-body::after,
.project-card:focus .project-card-body::after,
.project-card:focus-within .project-card-body::after {
  transform: scaleX(1);
}

.project-card h3 {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  word-break: keep-all;
}

.project-meta,
.space-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  line-height: 1.45;
}

.space-tags {
  margin-top: 12px;
}

.space-tags span {
  border: 0;
  padding: 0;
}

.instagram-preview {
  padding-top: clamp(56px, 6.6vw, 96px);
}

.instagram-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  width: min(100%, var(--home-rail));
  margin-inline: auto;
}

.instagram-head h2 {
  margin-top: 10px;
}

.text-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: var(--text-caption);
}

.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.text-link:hover,
.text-link:focus {
  color: var(--strong-ink);
}

.text-link:hover::before,
.text-link:focus::before {
  transform: scaleX(1);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--home-rail));
  margin-top: clamp(18px, 2.4vw, 30px);
  margin-inline: auto;
}

.instagram-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft-surface);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.36) grayscale(0.22) contrast(1.04) brightness(1.1);
  transform: scale(1.01);
  transition:
    filter 300ms ease,
    transform 300ms ease;
}

.instagram-grid a:hover img,
.instagram-grid a:focus img {
  filter: saturate(0.3) grayscale(0.3) contrast(1.04) brightness(0.72) blur(7px);
  transform: scale(1.035);
}

.instagram-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(78%, 240px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.instagram-caption span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  word-break: keep-all;
}

.instagram-grid a:hover .instagram-caption,
.instagram-grid a:focus .instagram-caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.instagram-grid a:hover .instagram-caption::after,
.instagram-grid a:focus .instagram-caption::after {
  transform: scaleX(1);
}

.instagram-media-type {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.76;
  pointer-events: none;
}

.estimate-form {
  display: grid;
  gap: 16px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3.2vw, 38px) 20px;
  margin: 0;
  padding: clamp(14px, 2.3vw, 24px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

legend {
  padding: 0;
  color: var(--muted);
  font-size: var(--text-caption);
  letter-spacing: 0.08em;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: var(--text-caption);
}

label.full,
.field-group.full {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 12px;
}

.field-label {
  color: var(--muted);
  font-size: var(--text-caption);
  letter-spacing: 0.02em;
}

.field-label span,
label > span[aria-hidden="true"] {
  color: var(--faint-ink);
  transition:
    color 420ms ease,
    text-shadow 420ms ease;
}

.field-label::after {
  content: "";
  margin-left: 7px;
  color: var(--error);
  font-size: var(--text-micro);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(1px);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.74);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-body);
  outline: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

input[type="date"] {
  min-height: 46px;
  color-scheme: light;
  text-transform: uppercase;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.52;
  cursor: pointer;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--strong-ink);
}

.field-group.is-invalid .field-label,
label.is-invalid {
  color: var(--soft-ink);
}

.field-group.is-invalid .field-label span,
label.is-invalid .field-label span {
  color: var(--error);
  text-shadow: none;
}

.field-group.is-invalid .field-label::after,
label.is-invalid .field-label::after {
  content: attr(data-error);
  opacity: 1;
  transform: translateY(0);
}

.field-group.is-invalid .choice-card::after,
label.is-invalid input,
label.is-invalid textarea {
  border-color: var(--error);
}

.field-group.is-invalid .choice-card::after {
  background: var(--error);
  opacity: 0.58;
}

.form-submit {
  justify-self: start;
  min-width: 180px;
}

.footer {
  padding: clamp(38px, 6vw, 72px) clamp(20px, 4vw, 54px) clamp(28px, 5vw, 54px);
  background: transparent;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  width: min(100%, var(--home-rail));
  margin-inline: auto;
  padding-top: clamp(34px, 4.8vw, 56px);
  border-top: 1px solid rgba(224, 224, 224, 0.64);
}

.footer-brandline {
  display: grid;
  gap: 6px;
  align-self: end;
  min-width: 0;
  color: rgba(54, 54, 54, 0.7);
}

.footer-brandline strong {
  color: var(--strong-ink);
  font-size: 13px;
  font-weight: 360;
  letter-spacing: 0.18em;
}

.footer-brandline span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-info {
  display: grid;
  gap: 4px;
  justify-items: start;
  color: var(--muted);
  word-break: keep-all;
  max-width: 620px;
}

.footer-info a,
.footer-social a {
  position: relative;
  width: fit-content;
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 0;
  transition: color 420ms ease;
}

.footer-info a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-info a:hover,
.footer-social a:hover {
  color: var(--strong-ink);
}

.footer-info a:hover::after,
.footer-social a:hover::after {
  transform: scaleX(1);
}

.footer-social {
  display: grid;
  gap: 4px;
  justify-items: end;
  align-self: end;
  color: rgba(54, 54, 54, 0.62);
  font-family: var(--font-display);
  font-size: var(--text-caption);
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: end;
  width: min(var(--home-rail), calc(100% - 36px));
  margin-inline: auto;
  padding-top: clamp(142px, 14vh, 176px);
  padding-right: 0;
  padding-bottom: clamp(10px, 2vw, 26px);
  padding-left: 0;
  border-bottom: 0;
}

.work-hero h1 {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.work-hero p:last-child {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  word-break: keep-all;
}

.contact-direct-section {
  width: min(var(--home-rail), calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(152px, 15vh, 188px) 0 clamp(48px, 7vw, 76px);
}

.contact-section-head {
  display: grid;
  gap: 0;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.contact-section-head .section-kicker {
  margin-bottom: 0;
}

.contact-section-head h2 {
  margin: 0;
  color: var(--strong-ink);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.2;
}

.contact-form-intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.72;
  word-break: keep-all;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 104px;
  gap: 0;
}

.contact-direct a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid rgba(224, 224, 224, 0.66);
  border-left: 1px solid rgba(224, 224, 224, 0.54);
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.5;
  word-break: keep-all;
  transition:
    background 420ms ease,
    color 420ms ease;
}

.contact-direct a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 16px);
  width: min(72px, 42%);
  height: 1px;
  background: rgba(54, 54, 54, 0.34);
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0);
  transform-origin: center;
  transition:
    opacity 360ms var(--ease-matt),
    transform 520ms var(--ease-matt);
}

.contact-direct a:nth-child(3n) {
  border-right: 1px solid rgba(224, 224, 224, 0.54);
}

.contact-direct a:nth-last-child(-n + 3) {
  border-bottom: 1px solid rgba(224, 224, 224, 0.66);
}

.contact-direct a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--strong-ink);
}

.contact-direct a:hover::after,
.contact-direct a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0) scaleX(1);
}

.contact-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: rgba(54, 54, 54, 0.68);
  font-size: 10px;
  font-weight: 360;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition:
    color 420ms ease,
    opacity 420ms ease,
    filter 520ms var(--ease-matt),
    transform 520ms var(--ease-matt);
}

.contact-direct a:nth-child(-n + 2) .contact-icon,
.contact-direct a:nth-child(-n + 2) .contact-text {
  transform: translateY(-7px);
}

.contact-direct a:nth-child(-n + 2) small {
  top: calc(50% + 18px);
  opacity: 1;
  filter: none;
  transform: translate(-50%, 0);
  color: rgba(54, 54, 54, 0.54);
  font-size: 10px;
}

.contact-direct small {
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  width: min(84%, 230px);
  color: rgba(35, 35, 35, 0.78);
  font-size: 10.5px;
  font-weight: 380;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  text-transform: none;
  word-break: break-word;
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, 8px);
  transition:
    opacity 460ms var(--ease-matt),
    filter 620ms var(--ease-matt),
    transform 620ms var(--ease-matt);
}

.contact-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: rgba(54, 54, 54, 0.62);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: color 420ms ease;
}

.contact-direct a:hover .contact-icon {
  color: var(--strong-ink);
}

@media (hover: hover) and (pointer: fine) {
  .contact-direct a {
    gap: 0;
  }

  .contact-direct a:hover,
  .contact-direct a:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    color: var(--strong-ink);
  }

  .contact-direct .contact-text {
    color: rgba(54, 54, 54, 0.52);
    font-size: 9.5px;
    font-weight: 360;
    letter-spacing: 0.08em;
    opacity: 0.72;
    transition:
      color 420ms ease,
      opacity 420ms var(--ease-matt),
      filter 520ms var(--ease-matt),
      transform 520ms var(--ease-matt);
  }

  .contact-direct .contact-icon {
    width: 18px;
    height: 18px;
    transition:
      color 420ms ease,
      filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .contact-direct a:hover .contact-icon,
  .contact-direct a:focus-visible .contact-icon {
    color: var(--strong-ink);
    filter: blur(7px);
    opacity: 0;
    transform: translateY(-8px);
  }

  .contact-direct a:hover .contact-text,
  .contact-direct a:focus-visible .contact-text {
    color: var(--strong-ink);
    opacity: 0;
    filter: blur(7px);
    transform: translateY(-8px);
  }

  .contact-direct a:hover small,
  .contact-direct a:focus-visible small {
    top: calc(50% - 10px);
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0);
  }
}

@media (min-width: 744px) {
  .contact-direct .contact-icon,
  .contact-direct .contact-text {
    transform: translateY(-7px);
  }

  .contact-direct small {
    top: calc(50% + 18px);
    width: min(86%, 260px);
    opacity: 1;
    filter: none;
    transform: translate(-50%, 0);
    color: rgba(54, 54, 54, 0.48);
    font-size: 10px;
  }
}

.contact-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  width: min(var(--home-rail), calc(100% - 36px));
  margin-inline: auto;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  padding-top: clamp(28px, 3.4vw, 46px);
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid rgba(224, 224, 224, 0.56);
}

.stepped-form {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(18px, 4vw, 56px);
  width: 100%;
  margin: 0 0 clamp(8px, 1.4vw, 18px);
  padding: 0;
  list-style: none;
  overflow: visible;
}

.step-indicator li {
  position: relative;
  min-width: 0;
  min-height: 30px;
  margin-left: 0;
  padding: 0;
  color: var(--faint-ink);
  background: transparent;
  clip-path: none;
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition:
    color 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-indicator button {
  width: 100%;
  min-height: 30px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  white-space: inherit;
  cursor: pointer;
}

.step-indicator button:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.34);
  outline-offset: 6px;
}

.step-indicator li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-indicator li span {
  color: var(--faint-ink);
  font-size: var(--text-micro);
  letter-spacing: 0.16em;
}

.step-indicator li.is-done {
  color: var(--muted);
  background: transparent;
}

.step-indicator li.is-active {
  z-index: 2;
  color: var(--strong-ink);
  background: transparent;
  animation: none;
}

.step-indicator li.is-active span,
.step-indicator li.is-done span {
  color: currentColor;
}

.step-indicator li.is-done::after,
.step-indicator li.is-active::after {
  transform: scaleX(1);
}

.form-error {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--error);
  background: transparent;
  font-size: var(--text-caption);
}

.form-error::before {
  content: "* ";
}

.form-success {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(92, 92, 92, 0.16);
  border-radius: 2px;
  color: var(--strong-ink);
  background: rgba(252, 252, 252, 0.92);
  box-shadow: 0 18px 54px rgba(26, 26, 26, 0.11);
  font-size: var(--text-body);
  line-height: 1.75;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + 10px), 0) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-success.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.form-step {
  animation: formStepIn 320ms var(--ease-matt) both;
}

.form-step.is-exiting {
  animation: formStepOut 220ms var(--ease-matt) both;
}

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 4px 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    color 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-card::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: scale(0.45);
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.24;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card span {
  min-width: 0;
  pointer-events: none;
  font-weight: 430;
  transition:
    font-weight 180ms ease,
    text-shadow 180ms ease;
}

.choice-card:has(input:checked) {
  color: var(--strong-ink);
  background: transparent;
  animation: none;
}

.choice-card:has(input:checked)::before {
  opacity: 0.92;
  transform: scale(1.05);
}

.choice-card:has(input:checked) span {
  font-weight: 520;
  text-shadow: none;
}

.choice-card:hover::after {
  opacity: 0.56;
  transform: scaleX(1);
}

.choice-card:has(input:checked)::after {
  height: 1px;
  opacity: 0.68;
  transform: scaleX(1);
}

.choice-card:hover {
  color: var(--soft-ink);
}

.choice-grid {
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 18px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-top: -4px;
  padding-top: 12px;
  border-top: 1px solid rgba(224, 224, 224, 0.52);
}

.form-actions .step-next,
.form-actions .form-submit {
  width: auto;
}

.stepped-form .button-primary {
  border: 0;
  background: transparent;
  color: var(--soft-ink);
  animation: none;
}

.stepped-form .button-secondary {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.reveal-item {
  transition-delay: var(--item-reveal-delay, 0ms);
}

.process-list article.reveal-item {
  transition-delay: var(--item-reveal-delay, 0ms);
}

.work-page .projects {
  width: min(var(--home-rail), calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid rgba(224, 224, 224, 0.56);
}

.work-page .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1680px) {
  .work-page .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.work-page .project-card figure {
  aspect-ratio: 1 / 1;
}

.work-page .project-card {
  background: transparent;
}

.post-page main {
  padding-top: clamp(168px, 17vh, 220px);
}

.post-hero {
  width: min(var(--home-rail), calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  padding: 0 0 clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.62fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: end;
}

.back-link {
  grid-column: 1 / -1;
  width: max-content;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.back-link::before {
  content: "< ";
}

.post-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  word-break: keep-all;
  white-space: nowrap;
}

.post-hero h1.is-long-title {
  font-size: clamp(22px, 3.2vw, 42px);
}

.post-hero h1 span {
  display: inline;
}

.post-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.post-meta dt,
.post-meta dd {
  margin: 0;
}

.post-meta dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.post-meta dd {
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
}

.post-filter-status {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-filter-status b {
  color: var(--strong-ink);
  font-weight: 400;
}

.post-filter-status a {
  position: relative;
  color: var(--muted);
  padding-bottom: 4px;
}

.post-filter-status a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  transform: scaleX(1);
}

.post-gallery {
  width: min(var(--home-rail), calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  display: block;
  padding-inline: 0;
  padding-bottom: clamp(80px, 12vw, 150px);
  border-top: 1px solid rgba(224, 224, 224, 0.56);
}

.gallery-viewer {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  width: min(100%, 1120px);
  margin-inline: auto;
  animation: galleryViewerIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gallery-main {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: clamp(430px, 62vh, 720px);
  background: var(--soft-surface);
  opacity: 1;
  transform: none;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: var(--soft-surface);
  opacity: 0;
  filter: saturate(0.82) contrast(1.02) blur(10px);
  transform: scale(1.026);
  transition:
    opacity 280ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main img.is-loaded {
  opacity: 1;
  filter: saturate(0.82) contrast(1.02) blur(0);
  transform: scale(1);
}

.post-page .post-hero {
  animation: postHeroIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gallery-viewer.is-switching .gallery-main figcaption {
  opacity: 0.54;
  transform: none;
}

.gallery-main figcaption {
  position: absolute;
  left: clamp(18px, 2.6vw, 34px);
  right: clamp(18px, 2.6vw, 34px);
  bottom: clamp(18px, 2.6vw, 30px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main figcaption strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  margin-top: -4px;
}

.gallery-control {
  position: relative;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 0;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-control::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.46;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  color: var(--strong-ink);
}

.gallery-control:hover::after,
.gallery-control:focus-visible::after {
  transform: scaleX(1);
}

.gallery-rail-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 8px;
  --rail-thumb-left: 0%;
  --rail-thumb-width: 100%;
}

.gallery-rail-wrap::before,
.gallery-rail-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  pointer-events: none;
}

.gallery-rail-wrap::before {
  left: 0;
  right: 0;
  background: rgba(224, 224, 224, 0.72);
}

.gallery-rail-wrap::after {
  left: var(--rail-thumb-left);
  width: var(--rail-thumb-width);
  background: rgba(48, 48, 48, 0.36);
}

.gallery-rail {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-auto-columns: clamp(78px, 9vw, 124px);
  grid-auto-flow: column;
  gap: 1px;
  overflow-x: auto;
  background: rgba(224, 224, 224, 0.64);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  animation: galleryRailIn 760ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
  -ms-overflow-style: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gallery-rail.is-auto-scrolling {
  scroll-snap-type: none;
}

.gallery-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--soft-surface);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: center;
  opacity: 0;
  transform: none;
  animation: galleryThumbIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(120ms + min(var(--i), 12) * 34ms);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) grayscale(0.28) contrast(1.03) brightness(1.02);
  transform: scale(1.01);
  transition:
    filter 360ms ease,
    opacity 360ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-thumb span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img,
.gallery-thumb.is-active img {
  filter: saturate(0.72) grayscale(0.04) contrast(1.04) brightness(0.92);
  transform: scale(1.04);
}

.gallery-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.gallery-thumb.is-active span {
  opacity: 1;
}

.empty-state {
  color: var(--muted);
  font-size: 15px;
  grid-column: 1 / -1;
}

.is-hidden {
  display: none;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: none;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes formStepOut {
  from {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
  to {
    opacity: 0;
    filter: blur(8px);
    transform: none;
  }
}

@keyframes postHeroIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: none;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes postImageSettle {
  from {
    opacity: 0.72;
    filter: blur(8px);
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes galleryViewerIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: none;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes galleryRailIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes galleryThumbIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (max-width: 743px) {
  .site-header {
    padding: 22px 22px 48px;
  }

  .brand-lockup {
    width: 122px;
    height: 24px;
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .site-header nav {
    gap: clamp(24px, 7vw, 54px);
    margin-top: 24px;
  }

  .hero {
    padding-top: 146px;
  }

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

  .hero-copy-block {
    max-width: 660px;
  }

  .studio-grid,
  .section-head,
  .archive-preview,
  .work-hero,
  .contact-flow {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .lab-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .work-page .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-panel {
    top: auto;
  }
}

@media (min-width: 744px) and (max-width: 1100px) {
  .process-list h3 {
    font-size: clamp(14px, 1.55vw, 17px);
    line-height: 1.25;
    white-space: nowrap;
  }

  .process-list p {
    font-size: clamp(10px, 1.1vw, 12px);
    line-height: 1.55;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 18px 34px;
  }

  .brand-lockup {
    width: 100px;
    height: 20px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .site-header nav {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex: 0 0 auto;
    gap: 22px;
    margin-top: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 10px;
    justify-content: center;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 132px 18px 58px;
  }

  .home-page .hero {
    padding-top: 136px;
    padding-bottom: 70px;
  }

  .hero-shell,
  .hero-copy-block {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: 0.08em;
  }

  .hero-descriptor {
    margin-top: 9px;
    font-size: 10.5px;
    letter-spacing: 0.02em;
  }

  .hero-statement {
    gap: 6px;
    width: min(100%, 340px);
    max-width: 340px;
    margin-top: 18px;
  }

  .hero-statement p {
    font-size: 13px;
    letter-spacing: 0;
  }

  .hero-statement p:nth-child(2) {
    font-size: 13px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 28px;
    padding-top: 14px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

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

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

  .filter-panel {
    position: relative;
    top: auto;
    padding: 0;
    width: 100%;
    max-width: 354px;
  }

  .filter-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    min-width: 0;
  }

  .filter-label {
    flex: 0 0 auto;
    min-width: 0;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .filter {
    flex: 0 1 auto;
    width: auto;
    min-height: 28px;
    padding: 0 0 5px;
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  section {
    padding: 58px 18px;
  }

  .work-hero {
    padding-top: 132px;
    padding-bottom: 22px;
  }

  .contact-direct-section {
    max-width: none;
    padding: 132px 18px 42px;
  }

  .contact-section-head {
    gap: 0;
    margin-bottom: 14px;
  }

  .contact-section-head h2 {
    font-size: 20px;
  }

  .contact-direct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .contact-direct a {
    gap: 8px;
    padding: 16px 10px 14px;
    font-size: 11px;
  }

  .contact-direct .contact-text {
    position: static;
    inset: auto;
    max-width: 100%;
    color: rgba(54, 54, 54, 0.72);
    font-size: 10px;
    font-weight: 360;
    letter-spacing: 0.03em;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .contact-direct a::after {
    display: none;
  }

  .contact-direct small {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    color: rgba(54, 54, 54, 0.58);
    font-size: 9.5px;
    letter-spacing: 0;
    line-height: 1.25;
    text-overflow: ellipsis;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .contact-direct a:not(.contact-address) small {
    white-space: nowrap;
  }

  .contact-direct .contact-address small {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    word-break: keep-all;
    line-height: 1.34;
  }

  .contact-direct .contact-icon {
    width: 15px;
    height: 15px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .contact-direct a:nth-child(-n + 2) .contact-icon,
  .contact-direct a:nth-child(-n + 2) .contact-text {
    transform: none;
  }

  .contact-direct a:nth-child(-n + 2) small {
    position: static;
    top: auto;
    color: rgba(54, 54, 54, 0.58);
    font-size: 9.5px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .contact-direct a:nth-child(3n) {
    border-right: 0;
  }

  .contact-direct a:nth-child(2n) {
    border-right: 1px solid rgba(224, 224, 224, 0.54);
  }

  .contact-direct a:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .contact-direct a:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(224, 224, 224, 0.66);
  }

  .work-hero h1 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .material-row,
  .project-grid,
  .post-hero,
  fieldset {
    grid-template-columns: 1fr;
  }

  .estimate-form {
    gap: 28px;
  }

  fieldset {
    gap: 34px 18px;
    padding-top: 26px;
  }

  .field-group {
    gap: 10px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 8px;
  }

  .choice-card {
    min-height: 38px;
    padding: 0 0 7px;
  }

  .work-page .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .studio-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-tile,
  .archive-tile-large {
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .lab-grid,
  .process-list {
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .lab-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .lab-grid article,
  .process-list article {
    min-height: 154px;
    padding: 12px 8px 10px;
    gap: 7px;
  }

  .lab-grid small,
  .process-list small {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: min(82%, 150px);
    gap: 7px;
    padding-top: 8px;
    font-size: 10px;
    line-height: 1.42;
    letter-spacing: 0;
    overflow-wrap: normal;
    transform: translate(-50%, calc(-50% + 7px));
    text-align: center;
  }

  .lab-grid h3,
  .process-list h3 {
    margin: 0;
    font-size: 11px;
    line-height: 1.25;
  }

  .lab-grid p,
  .process-list p {
    font-size: 9px;
    line-height: 1.45;
    word-break: keep-all;
    text-align: center;
  }

  .post-page main {
    padding-top: 142px;
  }

  .post-hero {
    width: min(100% - 36px, var(--home-rail));
    gap: 28px;
    padding-bottom: 52px;
  }

  .post-hero > * {
    min-width: 0;
  }

  .post-hero h1 {
    max-width: 100%;
    font-size: clamp(22px, 6.8vw, 34px);
    line-height: 1.12;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: keep-all;
  }

  .post-hero h1.is-long-title {
    font-size: clamp(15px, 4.9vw, 24px);
  }

  .post-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-gallery {
    width: min(100% - 36px, var(--home-rail));
    max-width: none;
    padding-inline: 0;
  }

  .gallery-viewer {
    gap: 14px;
  }

  .gallery-main {
    aspect-ratio: 4 / 5;
    min-height: min(72vh, 460px);
  }

  .gallery-main figcaption {
    display: grid;
    gap: 6px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 10px;
  }

  .gallery-main figcaption strong {
    text-align: left;
  }

  .gallery-controls {
    justify-content: space-between;
    margin-top: 0;
  }

  .gallery-rail-wrap {
    padding-bottom: 8px;
  }

  .gallery-rail {
    grid-auto-columns: 74px;
  }

  .step-indicator {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
  }

  .step-indicator li {
    min-width: 0;
    min-height: 28px;
    margin-left: 0;
    padding: 0 0 6px;
    font-size: 10px;
  }

  .process-list article,
  .process-list article:first-child,
  .process-list article:nth-child(4) {
    min-height: 154px;
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .process-list article,
  .process-list article:first-child,
  .process-list article:nth-child(4) {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
  }

  .service-grid article + article,
  .process-list article + article {
    margin-left: 0;
    margin-top: -1px;
  }

  .service-grid p,
  .process-list p {
    max-width: none;
    font-size: 12px;
    text-align: left;
  }

  .service-grid h3,
  .process-list h3 {
    font-size: 16px;
    text-align: left;
  }

  .home-process .process-list {
    gap: 0;
    margin-top: 0;
  }

  .home-process .process-list article,
  .home-process .process-list article:first-child,
  .home-process .process-list article:nth-child(4) {
    display: grid;
    grid-template-columns: 34px 54px minmax(0, 1fr);
    align-items: baseline;
    gap: 10px;
    min-height: 0;
    padding: 14px 0 13px;
    border-color: rgba(0, 0, 0, 0.08);
  }

  .home-process .process-list span {
    font-size: 10px;
    line-height: 1.2;
  }

  .home-process .process-list h3 {
    font-size: 13px;
    line-height: 1.35;
  }

  .home-process .process-list p {
    font-size: 11px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.56);
  }

  .operating-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .operating-mockup div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .operating-mockup small {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }

  .footer {
    padding: 42px 18px 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding-top: 34px;
  }

  .footer-info {
    display: grid;
    gap: 6px;
  }

  .footer-social {
    justify-items: start;
    gap: 6px;
    text-align: left;
    white-space: normal;
  }
}

.about-page .about-main {
  --profile-body-font-size: 13px;
  --profile-body-font-weight: 400;
  --profile-body-line-height: 1.72;
  --profile-body-letter-spacing: 0;
  --profile-body-color: rgba(0, 0, 0, 0.68);
  padding-bottom: clamp(88px, 10vw, 132px);
}

.about-page .about-container {
  width: min(var(--home-rail), calc(100% - 36px));
  margin: 0 auto;
}

.about-page .about-hero {
  min-height: auto;
  padding: clamp(138px, 18vh, 196px) 0 clamp(126px, 16vh, 176px);
  border-bottom: 0;
}

.about-page .about-section-label,
.about-page .about-profile-list dt {
  margin: 0;
  color: rgba(0, 0, 0, 0.38);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page .about-quiet-statement {
  max-width: 760px;
  margin: 0 auto;
  color: var(--profile-body-color);
  font-size: var(--profile-body-font-size);
  font-weight: var(--profile-body-font-weight);
  line-height: var(--profile-body-line-height);
  letter-spacing: var(--profile-body-letter-spacing);
  text-align: center;
  word-break: keep-all;
}

.about-page .about-profile-section {
  width: auto;
  margin: 0;
  padding: 0 0 clamp(76px, 9vw, 118px);
}

.about-page .about-profile-section .about-container {
  padding-top: 42px;
  border-top: 1px solid rgba(224, 224, 224, 0.64);
}

.about-page .about-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 8vw, 96px);
  margin-top: 48px;
  padding-top: 0;
  border-top: 0;
}

.about-page .about-person {
  min-width: 0;
}

.about-page .about-person + .about-person {
  padding-left: clamp(32px, 4vw, 48px);
  border-left: 1px solid rgba(224, 224, 224, 0.58);
}

.about-page .about-person h3 {
  margin: 0 0 32px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.about-page .about-profile-list {
  display: grid;
  gap: 28px;
  margin: 0;
}

.about-page .about-profile-list > div {
  min-width: 0;
}

.about-page .about-profile-list dd {
  margin: 10px 0 0;
  color: var(--profile-body-color);
  font-size: var(--profile-body-font-size);
  font-weight: var(--profile-body-font-weight);
  line-height: var(--profile-body-line-height);
  letter-spacing: var(--profile-body-letter-spacing);
  word-break: keep-all;
}

.about-page .about-profile-list dd + dd {
  margin-top: 2px;
}

@media (max-width: 768px) {
  .about-page .about-container {
    width: min(100% - 36px, var(--home-rail));
  }

  .about-page .about-hero {
    padding: 112px 0 112px;
  }

  .about-page .about-quiet-statement {
    max-width: 320px;
  }

  .about-page .about-profile-section .about-container {
    padding-top: 34px;
  }

  .about-page .about-people-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 40px;
  }

  .about-page .about-person + .about-person {
    padding-left: 0;
    border-left: 0;
  }

  .about-page .about-person h3 {
    margin-bottom: 28px;
    font-size: 19px;
  }

  .about-page .about-profile-list {
    grid-template-rows: none;
    gap: 26px;
  }

  .about-page .about-profile-list dd {
    font-size: var(--profile-body-font-size);
    line-height: 1.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .scroll-reveal,
  .reveal-item,
  .project-card,
  .gallery-viewer,
  .gallery-main img,
  .gallery-rail,
  .gallery-thumb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}
