/* =========================================================================
   maxim-buz.dev — black, mono, editorial
   ========================================================================= */

:root {
  /* canvas */
  --black: #000000;
  --carbon: #050506;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.14);

  /* ink tones */
  --ink: rgba(255, 255, 255, 0.94);
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-dim: rgba(255, 255, 255, 0.55);
  --ink-mute: rgba(255, 255, 255, 0.34);
  --ink-quiet: rgba(255, 255, 255, 0.22);

  /* singular accent — used only on hover */
  --accent: #ff6a18;
  --accent-warm: #ff8a3d;

  /* type */
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", "Cascadia Mono", "Roboto Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;

  /* tracking + scale */
  --track-wide: 0.14em;
  --track-mid: 0.06em;

  /* spacing */
  --pad-x: clamp(20px, 4.4vw, 64px);
  --pad-y: clamp(20px, 3.5vw, 44px);

  /* curve */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-ink: cubic-bezier(0.72, 0, 0.18, 1);
}

/* ---- reset ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100dvh; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ---- base ------------------------------------------------------------- */

html, body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: "ss01", "cv11", "cv02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.page-home {
  height: 100dvh;
  overflow: hidden;
}

/* ---- atmosphere: grain + vignette ------------------------------------ */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 42% 48%,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.012) 35%,
      rgba(0, 0, 0, 0) 70%);
}

/* ---- page shell ------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vh, 36px);
  height: 100dvh;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}

/* ---- top bar ---------------------------------------------------------- */

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  outline: none;
}
.brand:focus-visible {
  outline: 1px dashed var(--ink-dim);
  outline-offset: 6px;
}

.mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink);
}

.caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.caption-name { color: var(--ink); }
.caption-sep { color: var(--ink-mute); margin: 0 6px; }
.caption-role { color: var(--ink-dim); }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

/* ---- stage ------------------------------------------------------------ */

.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  min-height: 0;
  min-width: 0;
  overflow: visible;
}

.stage-inner {
  position: relative;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(360px, 32vw, 480px);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  min-width: 0;
}

/* signature block (left column) */

.anchor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.6vh, 32px);
  min-width: 0;
  max-width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.signature-wrap {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* keep the SVG as the visual hero; size relative to viewport */
  font-size: 0;
  line-height: 0;
  /* invisible accessible name comes from aria-label */
  transition: opacity 520ms var(--ease-ink), filter 520ms var(--ease-ink);
}

.hero[data-active] .signature-wrap {
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}

.explainer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: clamp(360px, 56vw, 880px);
  max-width: 100%;
  padding-left: clamp(2px, 0.4vw, 6px);
  padding-right: clamp(8px, 1vw, 16px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 480ms var(--ease-ink), transform 600ms var(--ease-ink);
}

.explainer p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
  font-weight: 400;
  max-width: 62ch;
}

.explainer p strong {
  color: var(--ink);
  font-weight: inherit;
}

.hero[data-active="agentic"]  .explainer[data-explain="agentic"],
.hero[data-active="logistic"] .explainer[data-explain="logistic"],
.hero[data-active="freelance"] .explainer[data-explain="freelance"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.signature {
  width: clamp(360px, 56vw, 880px);
  max-width: 100%;
  height: auto;
  color: var(--ink);
  /* no-JS / reduced-motion fallback: simple swipe reveal */
  clip-path: inset(0 100% 0 0);
  animation: ink-reveal 1500ms var(--ease-ink) 250ms forwards;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.04));
}

/* JS-driven pen-drawing animation takes over when available */
.signature.is-writing {
  clip-path: none;
  animation: none;
}

.signature.is-writing path {
  fill-opacity: 0;
  stroke: currentColor;
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes ink-reveal {
  to { clip-path: inset(0 0 0 0); }
}

.tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-left: clamp(2px, 0.4vw, 6px);
  display: block;
  max-width: 100%;
  word-spacing: 2px;
  /* fade-in alongside the signature */
  opacity: 0;
  transform: translateY(6px);
  animation: fade-rise 700ms var(--ease-out) 250ms forwards;
}
.tagline .dot {
  color: var(--ink-mute);
  margin: 0 6px;
}

.tag-link {
  /* reset button defaults */
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: inherit;
  transition: color 220ms var(--ease-out);
}
.tag-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 380ms var(--ease-out);
}
.tag-link:hover,
.tag-link:focus-visible,
.tag-link.is-active {
  color: var(--ink);
}
.tag-link:hover::after,
.tag-link:focus-visible::after,
.tag-link.is-active::after {
  transform: scaleX(1);
}
.tag-link:focus-visible {
  outline: none;
}

/* aside: portrait + sculpture (right column) */

.aside {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  gap: 0;
  min-width: 0;
}

/* portrait-stage: hosts halo + parallax + float; portrait inside is the photo itself */

.portrait-stage {
  position: relative;
  z-index: 1;
  width: clamp(240px, 24vw, 320px);
  aspect-ratio: 1 / 1;
  /* shift left of the sculptures column */
  justify-self: start;
  margin-left: clamp(-48px, -4.5vw, -16px);
  /* parallax (translate) composes with float (transform) */
  translate: var(--mx, 0) var(--my, 0);
  transition: translate 320ms var(--ease-out);
  /* visible from frame 0; only floats — no entry animation */
  animation: float-portrait 10s ease-in-out -3s infinite;
}

/* breathing halo behind the photo — visible from start */
.portrait-halo {
  position: absolute;
  inset: -22%;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.04) 38%,
      rgba(255, 255, 255, 0)    72%);
  filter: blur(24px);
  pointer-events: none;
  animation:
    halo-breathe 9s ease-in-out infinite,
    halo-drift 17s ease-in-out -4s infinite;
  will-change: transform, opacity;
}

/* square photo with rounded corners + soft vignette edges */
.portrait {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(10px, 1.4vw, 18px);
  background: var(--carbon);
  --portrait-glow: 0.05;
  box-shadow:
    inset 0 0 70px 18px var(--black),
    0 0 70px 4px rgba(255, 255, 255, var(--portrait-glow));
  transition: --portrait-glow 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.78);
  transition: filter 1200ms var(--ease-out);
}
.portrait-stage:hover .portrait { --portrait-glow: 0.12; }
.portrait-stage:hover .portrait img {
  filter: grayscale(0.4) contrast(1.05) brightness(0.92) saturate(0.85);
}

@property --portrait-glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0.05;
}
@property --blur {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@keyframes float-portrait {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -5px, 0) rotate(0.18deg); }
}
@keyframes halo-breathe {
  0%, 100% { opacity: 0.78; }
  50%      { opacity: 1; }
}
@keyframes halo-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-6px, 4px, 0) scale(1.04); }
}

/* sculptures cluster */

.sculptures {
  position: relative;
  z-index: 2;
  width: clamp(360px, 36vw, 460px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  margin-right: clamp(0px, 1vw, 18px);
  /* pull up so they slightly overlap the portrait above */
  margin-top: clamp(-140px, -11vh, -80px);
}

.sculpture {
  position: absolute;
  /* parallax layer (set by JS via --mx/--my); composes with float transform */
  translate: var(--mx, 0) var(--my, 0);
  transition: translate 280ms var(--ease-out);
  /* enter — main sculpture first; mini overrides delay below */
  opacity: 0;
  animation: fade-sculpture 1100ms var(--ease-out) 950ms forwards;
  will-change: transform, translate;
}

.sculpture .float {
  width: 100%;
  height: 100%;
  animation: float-a 9s ease-in-out -2.4s infinite;
}
.sculpture--mini .float {
  animation: float-b 6.6s ease-in-out -1.1s infinite;
}

.sculpture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sculpture--main {
  width: 70%;
  aspect-ratio: 1 / 1;
  right: 0;
  top: 0;
}
/* main asterisk: medium-speed unblur + slow spin (alive, almost imperceptible) */
.sculpture--main img {
  --blur: 26px;
  filter: blur(var(--blur)) brightness(0.62) contrast(1.18);
  transform-origin: 50% 50%;
  animation:
    spin-slow 60s linear infinite,
    unblur-main 1900ms var(--ease-out) 1050ms forwards;
}

.sculpture--mini {
  width: 32%;
  aspect-ratio: 1 / 1;
  left: 4%;
  bottom: 6%;
  /* mini enters AFTER the main sculpture — staggered scene assembly */
  animation-delay: 1450ms;
}
/* mini reads as the background plane: slowest unblur, retains tiny residual blur */
.sculpture--mini img {
  --blur: 18px;
  filter: blur(var(--blur)) brightness(0.5) contrast(1.22);
  transform-origin: 50% 50%;
  animation:
    spin-slow 80s linear infinite reverse,
    unblur-mini 2400ms var(--ease-out) 1500ms forwards;
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -6px, 0); }
}
@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(2px, -5px, 0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes unblur-main {
  to { --blur: 0px; }
}
@keyframes unblur-mini {
  to { --blur: 0.7px; }
}

/* ---- bottom bar ------------------------------------------------------- */

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contacts li {
  opacity: 0;
  transform: translateY(6px);
  animation: fade-rise 600ms var(--ease-out) forwards;
}
.contacts li:nth-child(1) { animation-delay: 1300ms; }
.contacts li:nth-child(2) { animation-delay: 1380ms; }
.contacts li:nth-child(3) { animation-delay: 1460ms; }
.contacts li:nth-child(4) { animation-delay: 1540ms; }

.contacts a,
.contacts .meta {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
  width: max-content;
  padding-bottom: 2px;
  transition: color 220ms var(--ease-out);
}

.contacts a {
  color: var(--ink);
}
.contacts a.muted { color: var(--ink-mute); }
.contacts a.muted .arrow { color: var(--ink-quiet); }
.contacts a.muted:hover,
.contacts a.muted:focus-visible { color: var(--ink-dim); }

.contacts a > span:first-child {
  position: relative;
}
/* underline animates from left, accent color */
.contacts a > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 380ms var(--ease-out);
}
.contacts a:hover > span:first-child::after,
.contacts a:focus-visible > span:first-child::after {
  transform: scaleX(1);
}
.contacts a:focus-visible {
  outline: none;
}

.contacts .arrow {
  font-size: 11px;
  color: var(--ink-mute);
  transition: transform 280ms var(--ease-out), color 280ms var(--ease-out);
  display: inline-block;
}
.contacts a:hover .arrow,
.contacts a:focus-visible .arrow {
  transform: translate(2px, -2px);
  color: var(--accent-warm);
}

.contacts .meta {
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  margin-top: 4px;
}

/* legal nav */

.legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: lowercase;
  color: var(--ink-mute);
  letter-spacing: var(--track-mid);
  opacity: 0;
  transform: translateY(6px);
  animation: fade-rise 600ms var(--ease-out) 1620ms forwards;
}
.legal .dot { color: var(--ink-quiet); }
.legal a {
  color: var(--ink-dim);
  position: relative;
  transition: color 220ms var(--ease-out);
}
.legal a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease-out);
}
.legal a:hover,
.legal a:focus-visible { color: var(--ink); outline: none; }
.legal a:hover::after,
.legal a:focus-visible::after { transform: scaleX(1); }

.legal .meta { color: var(--ink-mute); }

/* ---- top-bar entry animations ---------------------------------------- */

.brand, .kicker {
  opacity: 0;
  transform: translateY(-4px);
  animation: fade-down 600ms var(--ease-out) forwards;
}
.brand { animation-delay: 80ms; }
.kicker { animation-delay: 180ms; }

@keyframes fade-down {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-sculpture {
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* ---- legal page (impressum, datenschutz) ----------------------------- */

body.page-legal {
  height: auto;
  min-height: 100dvh;
  overflow: auto;
}
body.page-legal .page {
  height: auto;
  min-height: 100dvh;
}
body.page-legal .stage {
  display: block;
  padding: clamp(32px, 6vh, 64px) 0;
}
body.page-legal .stage-inner {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.doc {
  /* readable column for legal text */
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-rise 700ms var(--ease-out) 200ms forwards;
}

.doc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-mute);
}

.doc h1 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

.doc h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink);
  margin: 16px 0 -10px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.doc p,
.doc address,
.doc ul {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}

.doc address {
  font-style: normal;
  white-space: pre-line;
}

.doc ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  list-style: disc;
  list-style-position: outside;
}
.doc ul li::marker { color: var(--ink-mute); }

.doc a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-quiet);
  transition: text-decoration-color 220ms var(--ease-out), color 220ms var(--ease-out);
}
.doc a:hover { text-decoration-color: var(--accent); color: var(--ink); }

/* legal page bottom bar: emphasize current page link */
body.page-legal .legal a[aria-current="page"] {
  color: var(--ink);
}
body.page-legal .legal a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--ink-quiet);
}

/* ---- responsive ------------------------------------------------------- */

@media (max-width: 1023px) {
  body.page-home {
    height: auto;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .page {
    height: auto;
    min-height: 100dvh;
    grid-template-rows: auto auto auto;
    gap: 36px;
    padding: 24px 22px 28px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
  }
  .top .kicker { display: none; }

  /* on mobile, pack page rows at the top — don't centre the stage */
  .page { align-content: start; }
  .stage {
    align-self: start;
    place-items: start;
    height: auto;
  }
  .stage-inner { height: auto; }

  .caption {
    white-space: normal;
  }

  .stage-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .anchor {
    align-items: stretch;
    gap: 22px;
  }
  .signature-wrap { width: 100%; }
  .signature {
    width: 100%;
    max-width: 100%;
  }
  .explainer {
    width: 100%;
    align-items: flex-start;
    padding-top: 4px;
  }
  .explainer p {
    font-size: 12.5px;
    line-height: 1.6;
  }
  .tagline {
    font-size: 12px;
    word-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 6px;
  }

  .aside {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 18px;
  }
  .portrait-stage {
    width: clamp(140px, 32vw, 180px);
    margin-left: 0;
    justify-self: start;
  }
  .sculptures {
    width: clamp(200px, 50vw, 280px);
    margin: 0 -12px 0 -40px;
    justify-self: end;
    align-self: center;
  }

  .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .caption {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.3;
  }
  .caption-sep { display: none; }
  .caption-name {
    color: var(--ink);
    letter-spacing: var(--track-wide);
  }
  .caption-role {
    color: var(--ink-dim);
    font-size: 10.5px;
  }
  .kicker {
    font-size: 10.5px;
  }
}

/* ---- prefers-reduced-motion ------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .signature {
    clip-path: inset(0 0 0 0);
    animation: none;
  }
  .brand, .kicker, .tagline,
  .portrait-stage, .portrait, .portrait-halo,
  .sculpture, .sculpture .float, .sculpture img,
  .contacts li, .legal, .doc {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .portrait-halo { opacity: 0.6 !important; }
  /* lock --blur to final values so unblur animations can't strand anything */
  .sculpture--main img { --blur: 0px !important; }
  .sculpture--mini img { --blur: 0.7px !important; }
  .portrait-stage, .sculpture { translate: none !important; }
  .sculpture { transition: none !important; }
  .portrait img { transition: none; }
  .contacts a > span:first-child::after,
  .contacts .arrow,
  .legal a::after {
    transition: none;
  }
  .signature-wrap, .explainer {
    transition: opacity 200ms linear !important;
  }
  .hero[data-active] .signature-wrap {
    filter: none;
  }
}
