:root {
  --paper: #fafafa;
  --surface: #fafafa;
  --soft-surface: #eeeeee;
  --line: #e0e0e0;
  --line-soft: rgba(224, 224, 224, 0.62);
  --muted: #757575;
  --ink: #424242;
  --strong-ink: #303030;
  --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;
  --ease-matt: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-matt: 760ms;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  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;
}

.page-transition-mask {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(250, 250, 250, 0.28);
  opacity: 0;
  transform: translateY(100%);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.page-transition-mask::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(48, 48, 48, 0.22);
  opacity: 0;
}

.js .site-header,
.js main,
.js footer {
  animation: pageEnter 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js footer {
  animation-delay: 60ms;
}

.is-page-transitioning .page-transition-mask {
  animation: pageSlice 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-page-transitioning .page-transition-mask::before {
  animation: pageSliceLine 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-page-transitioning .site-header,
.is-page-transitioning main,
.is-page-transitioning footer {
  animation: none;
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.36;
  filter: blur(7px);
  transform: translateY(-10px) scale(0.995);
}

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: 24px 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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.16em;
}

.brand-lockup span {
  position: relative;
  display: inline-block;
  color: var(--brand-ink);
  opacity: 0.86;
  will-change: opacity, filter;
}

.brand-char {
  display: inline-block;
  opacity: var(--logo-opacity, 0.86);
  filter: blur(0);
  animation: brandLetterBlur var(--logo-blur-duration, 10s) cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: calc(var(--i) * var(--logo-blur-step, 155ms));
  will-change: opacity, filter;
}

.brand-char-space {
  width: 0.42em;
  animation: none;
}

.brand-lockup .brand-char {
  --logo-opacity: 0.84;
  --logo-blur-duration: 13.6s;
  --logo-blur-step: 150ms;
  --logo-blur-soft: 0.42px;
  --logo-blur-mid: 1.08px;
  --logo-blur-peak: 2.25px;
}

.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);
}

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

.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;
  transform: translate3d(0, var(--kicker-y, 0px), 0);
  transition: transform 180ms linear;
  will-change: transform;
}

.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;
  --hero-logo-space: 0.12em;
  --hero-logo-space-wide: 0.135em;
  --hero-logo-space-return: 0.128em;
  letter-spacing: var(--hero-logo-space);
  white-space: nowrap;
  max-width: none;
  transform-origin: center;
  color: var(--brand-ink);
  animation: heroLogoDrift 13s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: letter-spacing, filter, opacity;
}

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

.hero h1 .brand-char {
  --logo-opacity: 0.94;
  --logo-blur-duration: 14.8s;
  --logo-blur-step: 170ms;
  --logo-blur-soft: 0.52px;
  --logo-blur-mid: 1.28px;
  --logo-blur-peak: 2.68px;
  display: inline-block;
}

.hero-descriptor {
  margin: clamp(8px, 1vw, 12px) 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 360;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-lead {
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 320;
  line-height: 1.55;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0;
  word-break: keep-all;
}

.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,
.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-top: 12px;
  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::before,
.process-list small::before {
  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 {
  transition:
    opacity 760ms var(--ease-matt),
    transform 820ms var(--ease-matt),
    filter 820ms var(--ease-matt);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .scroll-reveal:not(.is-visible) {
  opacity: 1;
  transform: translate3d(0, 5px, 0);
  filter: blur(0.5px);
}

.reveal-item {
  transition:
    opacity 620ms var(--ease-matt),
    transform 720ms var(--ease-matt),
    filter 720ms var(--ease-matt);
  transition-delay: var(--item-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .reveal-item:not(.is-visible) {
  opacity: 1;
  transform: translate3d(0, 4px, 0);
  filter: blur(0.5px);
}

.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::before,
.process-list article:hover small::before {
  transform: scaleX(1);
}

.archive-preview {
  display: block;
}

.archive-copy {
  max-width: 520px;
  padding-top: 6px;
  margin-bottom: clamp(22px, 2.6vw, 34px);
}

.archive-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 960px);
  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.36) grayscale(0.22) contrast(1.04) brightness(1.1);
  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-top: 12px;
  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::before,
.project-card-body::before,
.instagram-caption::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(72px, 46%);
  height: 1px;
  background: rgba(250, 250, 250, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  translate: -50% 0;
  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::before,
.archive-tile:focus span::before {
  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);
}

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

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

.process-list 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);
}

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

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

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

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  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);
}

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

.work-gallery {
  padding-top: clamp(28px, 4vw, 54px);
}

.filter-panel {
  position: relative;
  top: auto;
  z-index: 5;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  margin-bottom: clamp(24px, 3.2vw, 42px);
  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: var(--faint-ink);
  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);
  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 640ms var(--ease-matt),
    transform 720ms var(--ease-matt),
    filter 720ms var(--ease-matt);
  overflow: hidden;
}

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

.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.36) grayscale(0.22) contrast(1.04) brightness(1.1);
  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.3) grayscale(0.3) contrast(1.04) brightness(0.72) 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-top: 12px;
  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%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.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::before,
.project-card:focus .project-card-body::before,
.project-card:focus-within .project-card-body::before {
  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;
}

.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%, 960px);
  margin-top: clamp(18px, 2.4vw, 30px);
  margin-inline: auto;
  background: rgba(224, 224, 224, 0.64);
}

.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-top: 12px;
  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::before,
.instagram-grid a:focus .instagram-caption::before {
  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: 20px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 4vw, 48px) 20px;
  margin: 0;
  padding: clamp(18px, 3vw, 30px) 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 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  padding: clamp(38px, 6vw, 72px) clamp(20px, 4vw, 54px) clamp(28px, 5vw, 54px);
  border-top: 1px solid rgba(224, 224, 224, 0.64);
  background: transparent;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.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;
  padding-top: clamp(152px, 15vh, 188px);
  padding-bottom: clamp(10px, 2vw, 26px);
  border-bottom: 0;
}

.work-hero h1 {
  margin: 0;
  font-size: var(--text-page);
  font-weight: 300;
  line-height: 1.08;
  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-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 7vw, 94px);
  align-items: end;
  padding-top: clamp(152px, 15vh, 188px);
  padding-bottom: clamp(10px, 2vw, 26px);
  border-bottom: 0;
}

.contact-hero h1 {
  margin: 0;
  font-size: var(--text-page);
  font-weight: 300;
  line-height: 1.05;
  word-break: keep-all;
}

.contact-hero p:last-child {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: var(--text-body);
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  word-break: keep-all;
}

.contact-direct-section {
  max-width: min(940px, calc(100vw - 108px));
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 54px) clamp(48px, 7vw, 76px);
}

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

.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-direct {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 104px;
  gap: 0;
}

.contact-direct a {
  position: relative;
  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: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-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.58);
  font-size: 10px;
  font-weight: 360;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition:
    color 420ms ease,
    font-size 420ms cubic-bezier(0.22, 1, 0.36, 1),
    font-weight 420ms ease,
    letter-spacing 420ms ease,
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.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 {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 22px;
    color: rgba(54, 54, 54, 0.52);
    font-size: 9.5px;
    font-weight: 360;
    letter-spacing: 0.08em;
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
    transition:
      bottom 420ms cubic-bezier(0.22, 1, 0.36, 1),
      color 420ms ease,
      font-size 420ms cubic-bezier(0.22, 1, 0.36, 1),
      font-weight 420ms ease,
      letter-spacing 420ms ease,
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .contact-direct .contact-icon {
    width: 18px;
    height: 18px;
    transform: translate3d(0, -9px, 0);
    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(2.2px);
    opacity: 0.2;
    transform: translate3d(0, 0, 0) scale(0.9);
  }

  .contact-direct a:hover .contact-text,
  .contact-direct a:focus-visible .contact-text {
    bottom: 50%;
    color: var(--strong-ink);
    font-size: 12px;
    font-weight: 450;
    letter-spacing: 0.02em;
    opacity: 1;
    transform: translate3d(0, 50%, 0);
  }
}

.contact-direct span:not(.contact-text) {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-flow {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  padding-top: clamp(30px, 4.2vw, 58px);
  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;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  padding: 0 0 7px;
  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 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-done::after,
.step-indicator li.is-active::after {
  transform: scaleX(1);
}

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

.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 420ms ease both;
}

.form-step.is-exiting {
  animation: formStepOut 260ms cubic-bezier(0.22, 1, 0.36, 1) 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: 650;
  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;
}

.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);
}

.work-page .projects {
  max-width: none;
  margin: 0;
}

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

@media (min-width: 1680px) {
  .work-page .project-grid {
    grid-template-columns: repeat(6, 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 {
  max-width: calc(var(--max) + 108px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 54px) 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 {
  max-width: calc(var(--max) + 108px);
  margin: 0 auto;
  display: block;
  padding-inline: clamp(20px, 4vw, 54px);
  padding-bottom: clamp(80px, 12vw, 150px);
}

.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: translateY(5px);
}

.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 {
  display: grid;
  grid-auto-columns: clamp(78px, 9vw, 124px);
  grid-auto-flow: column;
  gap: 1px;
  overflow-x: auto;
  padding-bottom: 12px;
  background: rgba(224, 224, 224, 0.64);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  animation: galleryRailIn 760ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.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: translateY(12px);
  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 brandLetterBlur {
  0%,
  12% {
    opacity: var(--logo-opacity, 0.86);
    filter: blur(0);
  }
  16% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.03);
    filter: blur(var(--logo-blur-soft, 0.6px));
  }
  21% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.08);
    filter: blur(var(--logo-blur-mid, 1.4px));
  }
  27% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.13);
    filter: blur(var(--logo-blur-peak, 2.8px));
  }
  33% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.08);
    filter: blur(var(--logo-blur-mid, 1.4px));
  }
  40% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.03);
    filter: blur(var(--logo-blur-soft, 0.6px));
  }
  50% {
    opacity: calc(var(--logo-opacity, 0.86) - 0.015);
    filter: blur(calc(var(--logo-blur-soft, 0.6px) * 0.55));
  }
  58%,
  100% {
    opacity: var(--logo-opacity, 0.86);
    filter: blur(0);
  }
}

@keyframes heroLogoDrift {
  0%,
  100% {
    opacity: 0.94;
    filter: none;
    letter-spacing: var(--hero-logo-space);
  }
  42% {
    opacity: 0.86;
    filter: none;
    letter-spacing: var(--hero-logo-space-wide);
  }
  58% {
    opacity: 0.9;
    filter: none;
    letter-spacing: var(--hero-logo-space-return);
  }
}

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

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

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

@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: translateY(16px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes galleryRailIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryThumbIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageEnter {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes pageSlice {
  0% {
    opacity: 0;
    transform: translateY(100%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  36% {
    opacity: 0.9;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  100% {
    opacity: 0;
    transform: translateY(-28%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}

@keyframes pageSliceLine {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  28% {
    opacity: 0.56;
  }
  100% {
    opacity: 0;
    transform: translateY(36vh);
  }
}

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

  .brand-lockup {
    font-size: 22px;
  }

  .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-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 {
    font-size: 18px;
    letter-spacing: 0.17em;
  }

  .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;
  }

  .brand-lockup span {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    padding: 142px 18px 74px;
  }

  .home-page .hero {
    padding-top: 122px;
  }

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

  .hero h1 {
    --hero-logo-space: 0.08em;
    --hero-logo-space-wide: 0.09em;
    --hero-logo-space-return: 0.085em;
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: var(--hero-logo-space);
  }

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

  .hero-copy {
    width: min(100%, 340px);
    max-width: 340px;
    margin-top: 10px;
    font-size: 10px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .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,
  .contact-hero {
    padding-top: 132px;
    padding-bottom: 22px;
  }

  .contact-hero {
    padding-bottom: 34px;
  }

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

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

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

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

  .contact-direct a {
    gap: 9px;
    padding: 15px 10px;
    font-size: 11px;
  }

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

  .contact-direct .contact-icon {
    width: 14px;
    height: 14px;
    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(26px, 8vw, 34px);
  }

  .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: 100%;
    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 {
    max-width: none;
    padding-inline: 18px;
  }

  .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 {
    grid-auto-columns: 74px;
    padding-bottom: 10px;
  }

  .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;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 42px 18px 36px;
  }

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

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

@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;
  }
}
