:root {
  color-scheme: dark;
  --vp-bg: #000000;
  --vp-bg-soft: #050505;
  --vp-surface: #38454e;
  --vp-surface-dim: rgba(56, 69, 78, 0.28);
  --vp-blue: #0E5A8A;
  --vp-blue-bright: #1976A8;
  --vp-text: #ffffff;
  --vp-muted: rgba(255, 255, 255, 0.68);
  --vp-quiet: rgba(255, 255, 255, 0.42);
  --vp-line: rgba(255, 255, 255, 0.14);
  --vp-line-blue: rgba(14, 90, 138, 0.72);
  --vp-gold: #D4AF37;
  --vp-gold-bright: #F6D365;
  --vp-gold-dim: rgba(212, 175, 55, 0.2);
  --vp-glow-warm: rgba(180, 140, 80, 0.28);
  --vp-serif: Baskerville, "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
  --vp-sans: "Apercu", "Satoshi", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --vp-motion-micro: 180ms;
  --vp-motion-normal: 420ms;
  --vp-motion-cinematic: 900ms;
  --vp-motion-camera: 1800ms;
  --vp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vp-ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Studio home, menu and contact surfaces */
.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;
}

.home-split-page {
  min-height: 100svh;
  overflow: hidden;
  background: #030608;
}

.minimal-topbar {
  justify-content: center;
  pointer-events: none;
  mix-blend-mode: normal;
}

.site-logo-mark,
.minimal-topbar .menu-toggle {
  pointer-events: auto;
}

.site-logo-mark {
  position: absolute;
  left: 50%;
  top: 22px;
  display: inline-flex;
  width: clamp(74px, 5.8vw, 112px);
  transform: translateX(-50%);
  opacity: 0.94;
  transition: opacity 500ms ease, transform 500ms ease, filter 500ms ease;
}

.site-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-mark:hover {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.22));
  transform: translateX(-50%) translateY(-1px);
}

.minimal-topbar .menu-toggle {
  position: fixed;
  top: 28px;
  right: clamp(24px, 3vw, 58px);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(4, 8, 11, 0.16);
  color: rgba(255, 255, 255, 0.92);
  transition: background 420ms ease, transform 420ms ease, filter 420ms ease;
}

.menu-bars {
  display: grid;
  gap: 4px;
  width: 18px;
  color: currentColor;
}

.menu-bars::before,
.menu-bars::after {
  display: none;
  content: none;
}

.menu-bars i {
  display: block;
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.16, 0.82, 0.18, 1), opacity 420ms ease;
}

.menu-bars i:nth-child(2) {
  width: 14px;
  justify-self: end;
}

.minimal-topbar .menu-toggle:hover,
.minimal-topbar .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.18));
  transform: translateY(-1px);
}

.menu-open .menu-bars {
  background: transparent;
}

.menu-open .menu-bars i:nth-child(1) {
  transform: rotate(42deg);
}

.menu-open .menu-bars i:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-bars i:nth-child(3) {
  transform: rotate(-42deg);
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100svh;
  isolation: isolate;
}

.home-choice {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(90px, 9vw, 140px) clamp(22px, 5vw, 86px) clamp(70px, 8vw, 118px);
  overflow: hidden;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #070b0e;
  animation: home-choice-in 1100ms cubic-bezier(0.16, 0.82, 0.18, 1) both;
  transition: filter 800ms ease, opacity 800ms ease, transform 900ms cubic-bezier(0.16, 0.82, 0.18, 1);
}

.home-choice-portfolio {
  animation-delay: 120ms;
}

.home-choice::before,
.home-choice::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.home-choice::before {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 142, 56, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(1, 3, 5, 0.08), rgba(1, 3, 5, 0.74) 74%, rgba(1, 3, 5, 0.96));
  opacity: 0.78;
  transition: opacity 800ms ease;
}

.home-choice-portfolio::before {
  background:
    radial-gradient(circle at 72% 18%, rgba(58, 132, 170, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(1, 3, 5, 0.05), rgba(1, 3, 5, 0.68) 70%, rgba(1, 3, 5, 0.95));
}

.home-choice::after {
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06), transparent 1px);
  background-size: 78px 78px;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.home-choice-portfolio::after {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-choice figure {
  position: absolute;
  inset: 0;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(35, 88, 110, 0.26), transparent 36%),
    linear-gradient(135deg, #182229, #040608 74%);
  transform: scale(1.04);
  transition: transform 1400ms cubic-bezier(0.16, 0.82, 0.18, 1), filter 900ms ease, opacity 900ms ease;
}

.home-choice-about figure {
  background:
    radial-gradient(circle at 48% 38%, rgba(18, 28, 32, 0.34), transparent 42%),
    linear-gradient(135deg, #060808, #020303 72%);
}

.home-choice-about::before {
  opacity: 0.38;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 142, 56, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(1, 3, 5, 0.04), rgba(1, 3, 5, 0.58) 74%, rgba(1, 3, 5, 0.96));
}

.home-choice-about::after {
  opacity: 0.08;
}

.home-choice figure img,
.home-choice figure video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-choice figure img {
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.06) brightness(0.82);
  transform: scale(1.02);
  transition: transform 1400ms cubic-bezier(0.16, 0.82, 0.18, 1), filter 900ms ease, opacity 900ms ease;
}

.home-choice-about figure img {
  object-position: 50% 34%;
  opacity: 0.86;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
  transform: scale(1.015);
}

.home-choice figure video {
  opacity: 0;
  filter: saturate(0.94) contrast(1.06) brightness(0.76);
  transform: scale(1.035);
  transition: opacity 740ms ease, transform 1100ms var(--vp-ease), filter 740ms ease;
}

.home-choice figure img.is-secondary,
.about-portrait-cycle img.is-secondary {
  opacity: 0;
  transform: scale(1.06);
}

.about-portrait-cycle.is-video-playing img.is-primary,
.about-portrait-cycle.is-video-playing img.is-secondary {
  opacity: 0;
}

.about-portrait-cycle.is-video-playing .about-live-portrait.is-active-video {
  opacity: 1;
  filter: saturate(1) contrast(1.08) brightness(0.86);
  transform: scale(1.02);
}

.home-choice figure.is-alt img.is-primary,
.home-choice figure.is-alt-scroll img.is-primary,
.about-portrait-cycle.is-alt img.is-primary,
.about-portrait-cycle.is-alt-scroll img.is-primary {
  opacity: 0;
  filter: saturate(0.82) contrast(1.02) brightness(0.78) blur(5px);
  transform: scale(1.025);
}

.home-choice figure.is-alt img.is-secondary,
.home-choice figure.is-alt-scroll img.is-secondary,
.about-portrait-cycle.is-alt img.is-secondary,
.about-portrait-cycle.is-alt-scroll img.is-secondary {
  opacity: 0.9;
  filter: saturate(0.94) contrast(1.08) brightness(0.92);
  transform: scale(1.03);
}

.home-choice-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: min(82vw, 520px);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.52);
  transition: transform 900ms cubic-bezier(0.16, 0.82, 0.18, 1), filter 720ms ease, opacity 720ms ease;
}

.home-choice-copy span,
.studio-kicker,
.studio-menu .menu-eyebrow,
.contact-method span {
  font-family: var(--vp-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.home-choice-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.home-choice-copy p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.7;
}

.home-choice:hover,
.home-choice:focus-visible,
.home-choice.is-active {
  filter: brightness(1.08);
}

.home-choice:hover figure,
.home-choice:focus-visible figure,
.home-choice.is-active figure {
  transform: scale(1.09) translateX(-1.5%);
}

.home-choice-portfolio:hover figure,
.home-choice-portfolio:focus-visible figure,
.home-choice-portfolio.is-active figure {
  transform: scale(1.09) translateX(1.5%);
}

.home-choice:hover figure img,
.home-choice:focus-visible figure img,
.home-choice.is-active figure img {
  opacity: 0.9;
  filter: saturate(0.95) contrast(1.12) brightness(0.96);
  transform: scale(1.05);
}

.home-choice:hover figure:not(.is-alt):not(.is-alt-scroll) img.is-secondary,
.home-choice:focus-visible figure:not(.is-alt):not(.is-alt-scroll) img.is-secondary,
.home-choice.is-active figure:not(.is-alt):not(.is-alt-scroll) img.is-secondary {
  opacity: 0;
}

.home-choice:hover figure.is-alt img.is-primary,
.home-choice:hover figure.is-alt-scroll img.is-primary,
.home-choice:focus-visible figure.is-alt img.is-primary,
.home-choice:focus-visible figure.is-alt-scroll img.is-primary,
.home-choice.is-active figure.is-alt img.is-primary,
.home-choice.is-active figure.is-alt-scroll img.is-primary {
  opacity: 0;
}

.home-choice:hover .home-choice-copy,
.home-choice:focus-visible .home-choice-copy,
.home-choice.is-active .home-choice-copy {
  filter: blur(0);
  transform: translateY(-16px);
}

.home-choice.is-dimmed {
  opacity: 0.72;
  filter: blur(2px) brightness(0.72);
  transform: scale(0.992);
}

.home-choice.is-dimmed .home-choice-copy {
  opacity: 0.58;
  filter: blur(2px);
}

.studio-menu {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(78px, 10vw, 138px) clamp(28px, 12vw, 340px) clamp(56px, 8vw, 100px);
  background:
    radial-gradient(circle at 74% 38%, rgba(75, 106, 118, 0.26), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(118, 68, 52, 0.18), transparent 30%),
    linear-gradient(115deg, rgba(22, 18, 18, 0.96), rgba(20, 34, 42, 0.97));
}

.studio-menu .menu-atmosphere {
  opacity: 0.16;
  filter: saturate(0.7) blur(6px);
}

.studio-menu .menu-brand {
  position: fixed;
  top: 62px;
  left: 50%;
  z-index: 3;
  width: clamp(72px, 5.8vw, 112px);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 700ms ease 140ms, transform 700ms cubic-bezier(0.16, 0.82, 0.18, 1) 140ms;
}

.studio-menu .menu-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-open .studio-menu .menu-brand {
  opacity: 0.95;
  transform: translateX(-50%) translateY(-4px);
}

.studio-menu .menu-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
}

.studio-menu .menu-primary {
  gap: clamp(30px, 5vw, 70px);
}

.studio-menu .menu-primary a {
  display: grid;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(3.9rem, 7.2vw, 8.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.86);
  transform: translateX(-18px);
  transition: opacity 650ms ease, filter 650ms ease, color 650ms ease, transform 760ms cubic-bezier(0.16, 0.82, 0.18, 1);
}

.studio-menu .menu-primary a span {
  font-family: var(--vp-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.44);
}

.menu-open .studio-menu .menu-primary a {
  transform: translateX(0);
}

.studio-menu .menu-primary:hover a {
  opacity: 0.42;
  filter: blur(2px);
  transform: translateX(-10px);
}

.studio-menu .menu-primary a:hover,
.studio-menu .menu-primary a:focus-visible {
  opacity: 1;
  color: #fff;
  filter: blur(0) drop-shadow(0 0 24px rgba(255, 255, 255, 0.2));
  transform: translateX(28px);
}

.studio-menu .menu-secondary {
  display: none;
}

.studio-menu .menu-close {
  position: fixed;
  top: 42px;
  right: clamp(24px, 3vw, 58px);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-open main,
.menu-open .minimal-topbar .site-logo-mark {
  filter: blur(8px) brightness(0.62);
  transform: translateY(10px) scale(0.992);
  transition: filter 700ms ease, transform 700ms cubic-bezier(0.16, 0.82, 0.18, 1);
}

.studio-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 70% 18%, rgba(34, 91, 112, 0.2), transparent 38%),
    radial-gradient(circle at 16% 20%, rgba(115, 67, 45, 0.16), transparent 28%),
    #030608;
}

.studio-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.8px),
    linear-gradient(130deg, transparent 0 42%, rgba(255, 255, 255, 0.11) 42.1%, transparent 42.3% 100%);
  background-size: 190px 190px, 620px 620px;
  opacity: 0.24;
  animation: field-drift 36s linear infinite;
}

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

.studio-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(110px, 12vw, 168px) var(--vp-space-page) clamp(64px, 8vw, 110px);
}

.studio-hero-media {
  position: relative;
  min-height: clamp(360px, 56vw, 720px);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.48);
}

.studio-hero-media img,
.studio-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.16, 0.82, 0.18, 1), filter 900ms ease;
}

.about-portrait-cycle {
  cursor: crosshair;
}

.about-portrait-cycle img.is-primary {
  opacity: 1;
}

.about-portrait-cycle img.is-secondary {
  filter: saturate(0.9) contrast(1.04) brightness(0.85);
}

.studio-hero-copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 760px;
}

.studio-hero-copy h1,
.studio-prose h2 {
  margin: 0;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(4rem, 8.4vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  color: #fff;
}

.contact-page .studio-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.15rem, 6.4vw, 7.4rem);
  line-height: 0.9;
}

.studio-hero-copy p,
.studio-prose p,
.contact-method p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.studio-text-section {
  padding: 0 var(--vp-space-page) clamp(70px, 10vw, 132px);
}

.studio-prose {
  display: grid;
  gap: 22px;
  width: min(100%, 880px);
  margin-left: auto;
}

.studio-prose h2 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
}

.text-link {
  justify-self: start;
  margin-top: 12px;
  color: #fff;
  font-family: var(--vp-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-method,
.email-open,
.whatsapp-open {
  display: inline-grid;
  gap: 8px;
  min-width: min(100%, 260px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 520ms cubic-bezier(0.16, 0.82, 0.18, 1), background 520ms ease, border-color 520ms ease;
}

.whatsapp-open {
  cursor: pointer;
}

.email-open {
  cursor: pointer;
}

.contact-method strong,
.email-open strong,
.whatsapp-open strong {
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.contact-method:hover,
.contact-method:focus-visible,
.email-open:hover,
.email-open:focus-visible,
.whatsapp-open:hover,
.whatsapp-open:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.whatsapp-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: end center;
  padding: 24px;
}

.whatsapp-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 4, 6, 0.62);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 480ms ease, backdrop-filter 480ms ease;
}

.whatsapp-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 430px);
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px 32px 24px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 42%),
    rgba(234, 231, 224, 0.96);
  color: #071014;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition: opacity 560ms ease, transform 680ms cubic-bezier(0.16, 0.82, 0.18, 1);
}

.whatsapp-card h2 {
  margin: 0;
  max-width: 9ch;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.whatsapp-card p {
  margin: 0;
  color: rgba(7, 16, 20, 0.68);
  line-height: 1.6;
}

.whatsapp-message {
  padding: 14px 16px;
  border: 1px solid rgba(7, 16, 20, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(7, 16, 20, 0.78);
}

.whatsapp-button {
  justify-self: start;
  padding: 14px 18px;
  border-radius: 999px;
  background: #071014;
  color: #fff;
  font-family: var(--vp-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.whatsapp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 16, 20, 0.16);
  border-radius: 999px;
  background: transparent;
  color: #071014;
  cursor: pointer;
}

.whatsapp-sheet.is-visible .whatsapp-backdrop {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.whatsapp-sheet.is-visible .whatsapp-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.whatsapp-open main {
  filter: blur(6px) brightness(0.72);
  transform: scale(0.992);
  transition: filter 520ms ease, transform 520ms ease;
}

@keyframes home-choice-in {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .home-split-page {
    min-height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .home-split {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      radial-gradient(circle at 52% 18%, rgba(14, 90, 138, 0.16), transparent 38%),
      linear-gradient(180deg, #020405 0%, #05090b 100%);
  }

  .home-choice {
    min-height: 50svh;
    padding: 84px 24px 40px;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-choice::after {
    border: 0;
    background-size: 56px 56px;
    opacity: 0.18;
  }

  .home-choice::before {
    opacity: 0.86;
  }

  .home-choice-about {
    min-height: 52svh;
  }

  .home-choice-portfolio {
    min-height: 48svh;
  }

  .home-choice-about figure img {
    object-position: 50% 17%;
    transform: scale(1.04);
  }

  .home-choice-portfolio figure img {
    object-position: 50% 42%;
  }

  .home-choice-copy {
    width: min(100%, 360px);
    max-width: 360px;
    gap: 12px;
  }

  .home-choice-copy h2 {
    max-width: 8.4ch;
    font-size: clamp(3rem, 14vw, 4.95rem);
    line-height: 0.9;
  }

  .home-choice-copy span {
    max-width: 30ch;
    font-size: 0.62rem;
    line-height: 1.65;
    letter-spacing: 0.2em;
  }

  .home-choice-copy p,
  .studio-kicker,
  .studio-menu .menu-eyebrow,
  .contact-method span {
    letter-spacing: 0.22em;
  }

  .studio-menu {
    padding: 96px 30px 52px;
  }

  .studio-menu .menu-primary a {
    font-size: clamp(3.1rem, 16vw, 5.6rem);
  }

  .studio-hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .studio-hero-media {
    min-height: 58svh;
  }

  .studio-prose {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-logo-mark {
    top: 17px;
    width: 68px;
  }

  .minimal-topbar .menu-toggle {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .home-choice {
    align-items: flex-end;
    padding: 72px 20px 34px;
  }

  .home-choice-about {
    min-height: 51svh;
  }

  .home-choice-portfolio {
    min-height: 49svh;
  }

  .home-choice-about figure img {
    object-position: 50% 12%;
    transform: scale(1.03);
  }

  .home-choice-portfolio figure img {
    object-position: 50% 46%;
  }

  .home-choice-copy {
    width: min(100%, 330px);
    max-width: 330px;
    gap: 10px;
  }

  .home-choice-copy h2 {
    font-size: clamp(3rem, 13.4vw, 4.35rem);
  }

  .home-choice-copy span {
    font-size: 0.58rem;
    line-height: 1.58;
    letter-spacing: 0.17em;
  }

  .home-choice-copy p {
    font-size: 0.82rem;
  }

  .studio-hero-copy h1,
  .studio-prose h2 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  .contact-actions {
    display: grid;
  }

  .whatsapp-sheet {
    padding: 14px;
  }

  .whatsapp-card {
    border-radius: 28px;
    padding: 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--vp-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--vp-text);
  font-family: var(--vp-sans);
  text-rendering: geometricPrecision;
  opacity: 1;
  transform: none;
  transition:
    opacity var(--vp-motion-cinematic) var(--vp-ease),
    filter var(--vp-motion-cinematic) var(--vp-ease),
    transform var(--vp-motion-cinematic) var(--vp-ease);
}

body.menu-open,
body.sound-gate-open,
body.portal-open {
  overflow: hidden;
}

body.is-page-entering {
  animation: vp-page-enter var(--vp-motion-cinematic) var(--vp-ease) both;
}

body.is-page-leaving {
  opacity: 0;
  filter: blur(7px);
  transform: scale(0.992);
}

body.is-portfolio-leaving {
  filter: blur(14px) brightness(0.64);
  transform: scale(1.018) translate3d(0, -10px, 0);
  transition-duration: 680ms;
}

body.about-molecule-active {
  overflow: hidden;
}

body.about-molecule-active .home-split,
body.about-molecule-active .minimal-topbar {
  opacity: 0.08;
  filter: blur(24px) brightness(0.16) saturate(0.45);
  transform: scale(1.1);
  transition: opacity 900ms ease, filter 1250ms var(--vp-ease), transform 1250ms var(--vp-ease);
}

body.about-molecule-active .home-choice-about {
  z-index: 4;
}

body.about-molecule-active .home-choice-about figure {
  transform: scale(1.22);
}

body.about-molecule-active .home-choice-portfolio {
  opacity: 0.06;
}

.about-molecule-transition {
  position: fixed;
  inset: 0;
  z-index: 260;
  width: 100vw;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(16, 73, 105, 0.58), transparent 42%),
    radial-gradient(ellipse at 72% 36%, rgba(20, 103, 138, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 64%, rgba(9, 42, 61, 0.46), transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(1, 12, 20, 0.86) 26%, rgba(3, 27, 43, 0.74) 50%, rgba(1, 12, 20, 0.88) 74%, rgba(0, 0, 0, 0.96) 100%),
    #000;
  opacity: 1;
  animation: about-transition-open 800ms var(--vp-ease) both;
}

.about-molecule-transition::before,
.about-molecule-transition::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.about-molecule-transition::before {
  background:
    radial-gradient(circle, rgba(225, 243, 248, 0.72) 0 1px, transparent 1.65px),
    radial-gradient(circle, rgba(118, 174, 194, 0.44) 0 0.8px, transparent 1.5px),
    linear-gradient(115deg, transparent 0 44%, rgba(148, 219, 242, 0.07) 44.08%, transparent 44.22%),
    linear-gradient(115deg, transparent 0 62%, rgba(148, 219, 242, 0.045) 62.08%, transparent 62.2%);
  background-position: 0 0, 36px 24px, 0 0, 180px 80px;
  background-size: 92px 92px, 146px 146px, 520px 520px, 720px 720px;
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: about-transition-stars 7600ms linear both;
}

.about-molecule-transition::after {
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 34%, rgba(0, 0, 0, 0.58) 80%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 26%, transparent 72%, rgba(0, 0, 0, 0.72));
}

.about-molecule-transition canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.about-molecule-loading {
  position: absolute;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100% - 48px, 320px);
  height: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--vp-sans);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.about-molecule-loading::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  content: "";
}

.about-molecule-loading span {
  position: relative;
  padding: 0 14px;
  background: #010911;
}

@media (max-width: 720px) {
  .about-molecule-transition::before {
    background-size: 86px 86px, 132px 132px, 380px 380px, 520px 520px;
    opacity: 0.22;
  }

  .about-molecule-transition::after {
    background:
      radial-gradient(ellipse at 50% 48%, transparent 0 38%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0.9) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.7)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.7));
  }

  .about-molecule-loading {
    bottom: max(86px, calc(env(safe-area-inset-bottom) + 76px));
    width: min(calc(100vw - 72px), 260px);
    height: 24px;
    font-size: 0.54rem;
    letter-spacing: 0.24em;
  }

  .about-molecule-loading span {
    padding: 0 12px;
  }
}

@keyframes about-transition-open {
  from {
    opacity: 0;
    filter: blur(18px) brightness(0.6);
  }
  to {
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}

@keyframes about-transition-stars {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-2.5%, -2%, 0);
  }
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  transform: translateY(-150%);
  background: var(--vp-text);
  color: var(--vp-bg);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.cinematic-site {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.cinematic-site::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.08;
  content: "";
}

.site-portal-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(56, 69, 78, 0.24), transparent 34rem),
    radial-gradient(circle at 72% 28%, rgba(14, 90, 138, 0.16), transparent 30rem),
    #010607;
  color: #fff;
  isolation: isolate;
}

.site-portal-transition::before,
.site-portal-transition::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.site-portal-transition::before {
  background:
    repeating-radial-gradient(ellipse at 50% 86%, transparent 0 38px, rgba(255,255,255,0.035) 39px 40px, transparent 41px 78px),
    linear-gradient(118deg, transparent 0 44%, rgba(255,255,255,0.05) 44.1% 44.24%, transparent 44.5%),
    linear-gradient(22deg, transparent 0 58%, rgba(14, 90, 138,0.11) 58.1% 58.28%, transparent 58.5%);
  opacity: 0.42;
  animation: portal-map-drift 8s ease-in-out infinite alternate;
}

.site-portal-transition::after {
  background: radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0,0,0,0.78) 100%);
}

.site-portal-transition canvas,
.hero-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-portal-transition div {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.site-portal-transition span {
  font-family: var(--vp-serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.9;
}

.site-portal-transition p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(14px, 2.3vw, 28px) clamp(18px, 4.4vw, 64px);
  color: var(--vp-text);
  mix-blend-mode: difference;
  opacity: 0.62;
  transition: opacity var(--vp-motion-normal) var(--vp-ease);
}

.site-topbar:hover,
.site-topbar:focus-within {
  opacity: 0.96;
}

.site-brand {
  display: grid;
  gap: 4px;
  text-decoration: none;
}

.site-brand strong {
  max-width: 160px;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-brand span,
.topbar-actions a,
.menu-toggle,
.cinematic-label,
.site-footer,
.sound-actions button,
.field-label {
  color: var(--vp-muted);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.topbar-actions a {
  text-decoration: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 7px 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.24fr);
  align-content: center;
  gap: clamp(24px, 6vw, 86px);
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: clamp(28px, 6vw, 86px);
  background: #000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(1.015);
  overflow: hidden auto;
  transition: opacity 560ms ease, visibility 560ms ease, transform 820ms var(--vp-ease);
}

.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1);
}

.menu-atmosphere,
.menu-atmosphere span,
.menu-overlay::before,
.menu-overlay::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu-atmosphere {
  z-index: -3;
  overflow: hidden;
  background: #000;
}

.menu-atmosphere span {
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(0.68) contrast(1.08) brightness(0.74);
  opacity: 0;
  transform: scale(1.13);
  will-change: opacity, transform;
  animation: menu-atmosphere 24s ease-in-out infinite;
}

.menu-atmosphere span:nth-child(2) {
  animation-delay: 8s;
}

.menu-atmosphere span:nth-child(3) {
  animation-delay: 16s;
}

.menu-overlay::before {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 28%, rgba(14, 90, 138, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.54) 54%, rgba(0, 0, 0, 0.86));
  content: "";
}

.menu-overlay::after {
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.14;
  mask-image: radial-gradient(circle at 36% 50%, #000, transparent 72%);
  content: "";
}

.menu-brand {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 4.4vw, 64px);
  z-index: 1;
  display: grid;
  gap: 5px;
  color: var(--vp-text);
  text-decoration: none;
}

.menu-brand strong {
  max-width: 170px;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-brand span,
.menu-secondary a {
  color: var(--vp-muted);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-close {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 4.4vw, 64px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  padding: 8px 0;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-close span {
  position: relative;
  width: 26px;
  height: 26px;
}

.menu-close span::before,
.menu-close span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-close span::before {
  transform: rotate(45deg);
}

.menu-close span::after {
  transform: rotate(-45deg);
}

.menu-primary {
  z-index: 1;
  display: grid;
  gap: clamp(6px, 0.9vw, 14px);
  align-self: center;
  max-width: 960px;
  padding-top: clamp(46px, 6vw, 86px);
}

.menu-primary a {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--vp-serif);
  font-size: clamp(3.5rem, 8.1vw, 8.7rem);
  line-height: 0.86;
  text-decoration: none;
  filter: blur(8px);
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 680ms ease, filter 760ms ease, transform 920ms var(--vp-ease), color 360ms ease;
}

.menu-primary a::before {
  position: absolute;
  left: clamp(-34px, -2.8vw, -18px);
  top: 50%;
  width: clamp(18px, 2.2vw, 34px);
  height: 1px;
  background: var(--vp-blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 320ms ease, transform 420ms var(--vp-ease);
  content: "";
}

.menu-primary a span {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--vp-sans);
  font-size: clamp(0.62rem, 0.8vw, 0.74rem);
  font-weight: 760;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-primary:hover a {
  color: rgba(255, 255, 255, 0.22);
  filter: blur(2.5px);
}

.menu-primary a:hover,
.menu-primary a:focus-visible {
  color: #fff;
  filter: blur(0);
  transform: translateX(14px);
}

.menu-primary a:hover::before,
.menu-primary a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.menu-primary a:hover span,
.menu-primary a:focus-visible span {
  color: rgba(255, 255, 255, 0.62);
}

.menu-primary a:focus-visible,
.menu-close:focus-visible,
.menu-secondary a:focus-visible,
.menu-toggle:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.58);
  outline-offset: 8px;
}

.topbar-actions a:hover {
  color: #fff;
}

.menu-open .menu-primary a {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0);
}

.menu-open .menu-primary a:nth-child(2) {
  transition-delay: 55ms;
}

.menu-open .menu-primary a:nth-child(3) {
  transition-delay: 110ms;
}

.menu-open .menu-primary a:nth-child(4) {
  transition-delay: 165ms;
}

.menu-open .menu-primary a:nth-child(5) {
  transition-delay: 220ms;
}

.menu-open .menu-primary a:nth-child(6) {
  transition-delay: 275ms;
}

.menu-open .menu-primary a:nth-child(7) {
  transition-delay: 330ms;
}

.menu-secondary {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-self: end;
  justify-self: end;
  color: var(--vp-quiet);
}

.menu-secondary a {
  text-decoration: none;
}

.menu-secondary a:hover {
  color: #fff;
}

.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(14, 90, 138, 0.34), transparent 28rem),
    rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vp-motion-cinematic) var(--vp-ease), visibility var(--vp-motion-cinematic) var(--vp-ease);
}

body.sound-gate-open .sound-gate {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sound-gate.is-dismissed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.sound-panel {
  display: grid;
  gap: 24px;
  width: min(680px, 100%);
  text-align: center;
}

.sound-panel h1 {
  max-width: 12ch;
  margin: 0;
  justify-self: center;
  font-family: var(--vp-serif);
  font-size: clamp(3rem, 8.6vw, 7.2rem);
  font-weight: 400;
  line-height: 0.86;
}

.sound-panel p {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--vp-muted);
  line-height: 1.7;
}

.journey-hud {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 38px);
  z-index: 45;
  display: grid;
  grid-template-columns: 32px auto;
  gap: 10px 12px;
  align-items: center;
  width: auto;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0.34;
  pointer-events: none;
  transform: scale(0.86);
  transform-origin: right bottom;
}

.journey-compass {
  position: relative;
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.journey-compass::before,
.journey-compass::after,
.journey-compass span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.24);
  transform-origin: top center;
  content: "";
}

.journey-compass::before {
  transform: rotate(0deg) translateY(-50%);
}

.journey-compass::after {
  transform: rotate(90deg) translateY(-50%);
}

.journey-compass span {
  height: 18px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(var(--compass-rotation, 0deg)) translateY(-50%);
}

.journey-hud p,
.journey-hud small,
.journey-hud strong {
  margin: 0;
}

.journey-hud p,
.journey-hud small {
  color: var(--vp-quiet);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-hud strong {
  color: #fff;
  font-family: var(--vp-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 0.9;
}

.sound-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sound-actions button,
.cinematic-button,
.ghost-button {
  position: relative;
  z-index: 1;
  min-height: 48px;
  border: 1px solid var(--vp-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vp-text);
  padding: 0 18px;
  text-decoration: none;
}

.sound-actions button:first-child,
.cinematic-button {
  border-color: var(--vp-blue);
  background: var(--vp-blue);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 18vh, 190px) clamp(18px, 6vw, 92px) clamp(82px, 14vh, 154px);
  perspective: 1200px;
}

.hero-webgl {
  z-index: -1;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #050505;
}

.hero-media img,
.hero-media video,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.88) contrast(1.1) brightness(0.74);
}

.hero-media img {
  transform: scale(1.055);
  transform-origin: 58% 44%;
  animation: cinematic-drift 18s ease-in-out infinite alternate;
}

.hero-media::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, transparent 0, rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12) 48%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.54));
  content: "";
}

.hero-copy {
  display: grid;
  gap: clamp(14px, 2.2vw, 24px);
  width: min(720px, 100%);
  margin-left: clamp(0px, 3vw, 48px);
}

.hero h1,
.page-title,
.section-title,
.story-title {
  margin: 0;
  font-family: var(--vp-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 6.8ch;
  font-size: clamp(4rem, 9.6vw, 10rem);
  line-height: 0.84;
}

.hero p,
.page-lede,
.section-lede {
  max-width: 36ch;
  margin: 0;
  color: var(--vp-muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}

.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
}

.hero .cinematic-button,
.hero .ghost-button {
  min-height: auto;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 0 7px;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}

.hero .cinematic-button:hover,
.hero .ghost-button:hover,
.hero .cinematic-button:focus-visible,
.hero .ghost-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(82px, 13vw, 180px) clamp(18px, 6vw, 92px);
}

.exhibition-section {
  position: relative;
  padding-top: clamp(120px, 18vw, 240px);
  background:
    linear-gradient(180deg, #000 0%, #020202 38%, #000 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(34px, 7vw, 88px);
}

.section-title {
  font-size: clamp(3.2rem, 7.4vw, 8.8rem);
  line-height: 0.88;
}

@keyframes cinematic-drift {
  from {
    transform: scale(1.055) translate3d(-0.8%, -0.5%, 0);
  }

  to {
    transform: scale(1.09) translate3d(0.8%, 0.7%, 0);
  }
}

@keyframes menu-atmosphere {
  0%,
  28% {
    opacity: 0.52;
    transform: scale(1.13) translate3d(-1%, -0.8%, 0);
  }

  44%,
  100% {
    opacity: 0;
    transform: scale(1.18) translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes portal-map-drift {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3.6vw, 58px);
  align-items: start;
}

.exhibition-card {
  position: relative;
  display: grid;
  grid-column: span 5;
  gap: 14px;
  min-height: 240px;
  color: var(--vp-text);
  text-decoration: none;
}

.exhibition-card:nth-child(4n + 1) {
  grid-column: span 7;
}

.exhibition-card:nth-child(4n + 2) {
  margin-top: clamp(58px, 10vw, 150px);
}

.exhibition-card:nth-child(4n + 3) {
  grid-column: 2 / span 5;
}

.exhibition-card:nth-child(4n) {
  grid-column: 8 / span 4;
}

.exhibition-card figure,
.experience-panel figure,
.journal-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--vp-surface-dim);
}

.exhibition-card figure {
  aspect-ratio: 4 / 5;
}

.exhibition-card:nth-child(even) figure {
  aspect-ratio: 16 / 10;
}

.exhibition-card img,
.experience-panel img,
.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.035);
  transition: opacity 560ms ease, filter 700ms ease, transform 900ms var(--vp-ease);
}

.exhibition-card img.is-loaded,
.experience-panel img.is-loaded,
.journal-card img.is-loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.exhibition-card:hover img,
.experience-panel:hover img {
  transform: scale(1.045);
}

.card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.card-copy h3,
.journal-card h2 {
  margin: 0;
  font-family: var(--vp-serif);
  font-size: clamp(2rem, 4.8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.9;
}

.card-copy p,
.card-copy span,
.journal-card p,
.meta-line {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.experience-strip {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.journey-intro {
  padding-top: clamp(70px, 10vw, 140px);
}

.journey-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.journey-console {
  display: grid;
  gap: 22px;
  border-left: 1px solid rgba(14, 90, 138, 0.86);
  padding-left: clamp(18px, 3vw, 34px);
}

.journey-console p {
  margin: 0;
  color: var(--vp-muted);
  line-height: 1.75;
}

.journey-console dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
}

.journey-console div {
  display: grid;
  gap: 8px;
  background: #000;
  padding: 14px;
}

.journey-console dt,
.journey-console dd {
  margin: 0;
}

.journey-console dt {
  color: var(--vp-quiet);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-console dd {
  font-family: var(--vp-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.journey-gallery {
  overflow: hidden;
}

.journey-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 72vw);
  gap: 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.journey-rail::-webkit-scrollbar {
  display: none;
}

.journey-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.journey-scene {
  position: relative;
  display: grid;
  min-height: clamp(520px, 72vw, 780px);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  scroll-snap-align: center;
}

.journey-scene figure {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--vp-surface-dim);
}

.journey-scene figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 0% 0%, rgba(14, 90, 138, 0.28), transparent 28rem);
  content: "";
}

.journey-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.035);
  transition: opacity 560ms ease, filter 700ms ease, transform 900ms var(--vp-ease);
}

.journey-scene img.is-loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.journey-scene:hover img {
  transform: scale(1.045);
}

.journey-scene .experience-copy {
  position: relative;
  align-self: end;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.scene-number {
  width: fit-content;
  border-bottom: 1px solid #0E5A8A;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--vp-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
}

.drag-note {
  margin: 18px 0 0;
  color: var(--vp-quiet);
  text-align: center;
}

.experience-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  min-height: clamp(360px, 58vw, 720px);
  background: #000;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.experience-panel:nth-child(even) {
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
}

.experience-panel:nth-child(even) figure {
  order: 2;
}

.experience-panel figure {
  height: 100%;
}

.experience-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(28px, 6vw, 82px);
  background:
    radial-gradient(circle at 0% 100%, rgba(14, 90, 138, 0.26), transparent 22rem),
    rgba(0, 0, 0, 0.96);
}

.experience-copy h3 {
  margin: 0;
  font-family: var(--vp-serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
}

.experience-copy p {
  max-width: 38ch;
  margin: 0;
  color: var(--vp-muted);
  line-height: 1.7;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(92svh, 860px);
  align-items: end;
  padding: clamp(120px, 18vh, 180px) clamp(18px, 6vw, 92px) clamp(60px, 11vh, 112px);
  overflow: hidden;
}

.page-title {
  max-width: 1050px;
  font-size: clamp(4rem, 11vw, 12rem);
  line-height: 0.8;
}

.editorial-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.35fr);
  gap: clamp(28px, 7vw, 110px);
}

.story-title {
  font-size: clamp(2.6rem, 6.5vw, 7.4rem);
  line-height: 0.92;
}

.prose {
  color: var(--vp-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.85;
}

.prose p {
  margin: 0 0 1.2em;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--vp-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--vp-text);
  padding: 14px 16px;
  outline: none;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--vp-blue);
  box-shadow: 0 0 0 3px rgba(14, 90, 138, 0.28);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

.journal-card {
  display: grid;
  grid-column: span 4;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}

.journal-card:first-child {
  grid-column: span 8;
}

.journal-card figure {
  aspect-ratio: 4 / 5;
}

.journal-card:first-child figure {
  aspect-ratio: 16 / 9;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px clamp(18px, 6vw, 92px);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff7e6;
  text-decoration: underline;
  text-underline-offset: 5px;
}

[data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--vp-motion-cinematic) var(--vp-ease),
    filter var(--vp-motion-cinematic) var(--vp-ease),
    transform 1100ms var(--vp-ease);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes vp-page-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 10px, 0) scale(0.996);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 820px) {
  .site-topbar {
    padding: 14px 16px;
    mix-blend-mode: normal;
    opacity: 0.74;
  }

  .topbar-actions a {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 18px 72px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(3.45rem, 15.6vw, 5.8rem);
    line-height: 0.86;
  }

  .hero p,
  .page-lede,
  .section-lede {
    max-width: min(29ch, 100%);
  }

  .hero-copy {
    gap: 15px;
    width: min(100%, 360px);
    margin-left: 0;
  }

  .hero-rail {
    display: flex;
    width: auto;
    gap: 18px;
  }

  .hero-rail a {
    width: auto;
    min-width: 0;
    text-align: left;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .page-hero {
    padding-inline: 18px;
  }

  .section-head,
  .editorial-columns,
  .experience-panel,
  .experience-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .experience-panel:nth-child(even) figure {
    order: 0;
  }

  .experience-panel {
    min-height: 0;
  }

  .experience-panel figure {
    aspect-ratio: 4 / 5;
  }

  .exhibition-grid,
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .exhibition-card,
  .exhibition-card:nth-child(n),
  .journal-card,
  .journal-card:first-child {
    grid-column: 1;
    margin-top: 0;
  }

  .card-copy {
    grid-template-columns: 1fr;
  }

  .menu-overlay {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 100svh;
    padding: 96px 18px 30px;
    overflow-y: auto;
  }

  .menu-brand {
    top: 16px;
    left: 16px;
  }

  .menu-close {
    top: 18px;
    right: 16px;
  }

  .menu-primary {
    gap: 5px;
    padding-top: 48px;
  }

  .menu-primary a {
    gap: 10px;
    max-width: calc(100vw - 44px);
    font-size: clamp(2.3rem, 9.8vw, 3.65rem);
    line-height: 0.94;
  }

  .menu-primary a::before {
    display: none;
  }

  .menu-primary a:hover,
  .menu-primary a:focus-visible {
    transform: translateX(0);
  }

  .menu-secondary {
    justify-self: start;
    margin-top: 18px;
    margin-left: 34px;
  }

  .sound-gate {
    align-items: center;
    padding: 18px;
  }

  .sound-panel {
    gap: 18px;
    overflow: hidden;
  }

  .sound-panel h1 {
    max-width: 9.8ch;
    font-size: clamp(2.55rem, 13vw, 3.35rem);
    line-height: 0.92;
  }

  .sound-panel p {
    max-width: 29ch;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .sound-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .sound-actions button {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.62rem;
    white-space: normal;
  }

  .journey-hud {
    display: none;
  }

  .journey-compass {
    width: 34px;
    height: 34px;
  }

  .journey-hud strong {
    font-size: 1.35rem;
  }

  .journey-intro-grid {
    grid-template-columns: 1fr;
  }

  .journey-console dl {
    grid-template-columns: 1fr;
  }

  .journey-rail {
    grid-auto-columns: minmax(82vw, 1fr);
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .journey-scene {
    min-height: 72svh;
  }
}

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

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

  .hero-media img {
    animation: none !important;
  }

  .menu-atmosphere span {
    animation: none !important;
  }

  .menu-open .menu-atmosphere span:first-child {
    opacity: 0.54;
  }
}

/* Global UI/UX audit: quieter editorial density across public studio pages */
:root {
  --vp-space-page: clamp(18px, 5.2vw, 76px);
  --vp-section-y: clamp(76px, 10vw, 136px);
  --vp-title-hero: clamp(3.4rem, 8.4vw, 8.6rem);
  --vp-title-page: clamp(3.2rem, 8vw, 8.4rem);
  --vp-title-section: clamp(2.7rem, 6vw, 6.6rem);
  --vp-title-card: clamp(1.75rem, 3.5vw, 3.8rem);
  --vp-body: clamp(0.88rem, 1.05vw, 1rem);
  --vp-label: 0.58rem;
  --vp-control-h: 38px;
}

.site-topbar,
.portfolio-header {
  padding: clamp(12px, 1.8vw, 22px) var(--vp-space-page);
  opacity: 0.54;
}

.site-brand strong,
.menu-brand strong {
  max-width: 148px;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.site-brand span,
.topbar-actions a,
.menu-toggle,
.cinematic-label,
.field-label,
.site-footer,
.sound-actions button,
.menu-brand span,
.menu-secondary a {
  font-size: var(--vp-label);
  letter-spacing: 0.18em;
}

.topbar-actions {
  gap: clamp(12px, 1.8vw, 20px);
}

.menu-primary {
  gap: clamp(2px, 0.55vw, 8px);
  max-width: 780px;
}

.menu-primary a {
  font-size: clamp(2.9rem, 6.7vw, 7rem);
  line-height: 0.9;
}

.menu-overlay {
  grid-template-columns: minmax(0, 0.82fr) minmax(150px, 0.18fr);
  padding: clamp(24px, 5vw, 72px) var(--vp-space-page);
}

.sound-panel {
  width: min(560px, 100%);
  gap: 16px;
}

.sound-panel h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
  line-height: 0.9;
}

.sound-panel p {
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.55;
}

.sound-actions {
  gap: 10px 18px;
}

.sound-actions button,
.cinematic-button,
.ghost-button,
.form-grid button {
  min-height: var(--vp-control-h);
  padding: 0 14px;
  font-size: var(--vp-label);
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sound-actions button:first-child,
.cinematic-button {
  background: rgba(14, 90, 138, 0.72);
}

.hero {
  padding: clamp(112px, 15vh, 168px) var(--vp-space-page) clamp(72px, 11vh, 120px);
}

.hero-copy {
  gap: clamp(12px, 1.8vw, 19px);
  width: min(620px, 100%);
}

.hero h1 {
  max-width: 7.4ch;
  font-size: var(--vp-title-hero);
  line-height: 0.88;
}

.hero p,
.page-lede,
.section-lede,
.experience-copy p,
.prose {
  font-size: var(--vp-body);
  line-height: 1.58;
}

.hero-rail {
  gap: 14px 24px;
}

.hero .cinematic-button,
.hero .ghost-button {
  padding-bottom: 5px;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
}

.section {
  padding: var(--vp-section-y) var(--vp-space-page);
}

.section-head {
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.34fr);
  gap: clamp(24px, 4.8vw, 66px);
  margin-bottom: clamp(28px, 5vw, 62px);
}

.section-title,
.story-title {
  font-size: var(--vp-title-section);
  line-height: 0.94;
}

.page-hero {
  min-height: min(84svh, 760px);
  padding: clamp(112px, 16vh, 168px) var(--vp-space-page) clamp(54px, 9vh, 90px);
}

.page-title {
  max-width: 850px;
  font-size: var(--vp-title-page);
  line-height: 0.86;
}

.editorial-columns {
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.36fr);
  gap: clamp(24px, 5.2vw, 78px);
}

.prose p {
  margin-bottom: 0.95em;
}

.form-grid {
  gap: 11px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  min-height: 42px;
  padding: 11px 13px;
  font-size: 0.88rem;
}

.form-grid textarea {
  min-height: 112px;
}

.exhibition-grid,
.journal-grid {
  gap: clamp(18px, 3vw, 44px);
}

.exhibition-card {
  gap: 10px;
  min-height: 0;
}

.card-copy h3,
.journal-card h2 {
  font-size: var(--vp-title-card);
  line-height: 0.94;
}

.card-copy p,
.card-copy span,
.journal-card p,
.meta-line {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.journey-rail {
  grid-auto-columns: minmax(300px, 58vw);
  gap: 12px;
}

.journey-scene {
  min-height: clamp(430px, 56vw, 640px);
}

.experience-copy {
  gap: 12px;
  padding: clamp(22px, 4.4vw, 56px);
}

.experience-copy h3 {
  font-size: clamp(2.25rem, 5.2vw, 5.8rem);
  line-height: 0.9;
}

.site-footer {
  padding: 20px var(--vp-space-page);
}

@media (max-width: 820px) {
  :root {
    --vp-title-hero: clamp(2.7rem, 12.8vw, 4.55rem);
    --vp-title-page: clamp(2.9rem, 13vw, 4.8rem);
    --vp-title-section: clamp(2.35rem, 10vw, 3.8rem);
    --vp-title-card: clamp(1.85rem, 8.8vw, 3.2rem);
  }

  .site-topbar {
    padding: 12px 16px;
  }

  .hero {
    padding: 104px 18px 66px;
  }

  .hero-copy {
    width: min(100%, 330px);
  }

  .hero p,
  .page-lede,
  .section-lede {
    max-width: 27ch;
    font-size: 0.86rem;
  }

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

  .exhibition-grid,
  .journal-grid {
    gap: 42px;
  }

  .journey-rail {
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 10px;
  }

  .journey-scene {
    min-height: 64svh;
  }

  .menu-primary a {
    font-size: clamp(2.2rem, 9.6vw, 3.45rem);
    line-height: 0.94;
  }

  .sound-actions {
    width: min(100%, 230px);
  }
}

/* Final landing overrides: keep new home/menu rules above older cinematic defaults. */
.minimal-topbar {
  justify-content: center;
  pointer-events: none;
  mix-blend-mode: normal;
}

.site-logo-mark,
.minimal-topbar .menu-toggle {
  pointer-events: auto;
}

.site-logo-mark {
  position: absolute;
  left: 50%;
  top: 22px;
  width: clamp(74px, 5.8vw, 112px);
  transform: translateX(-50%);
}

.studio-menu .menu-brand strong,
.studio-menu .menu-brand span {
  display: block;
  text-align: center;
}

.studio-menu .menu-brand strong {
  color: #fff;
  font-family: var(--vp-sans);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.studio-menu .menu-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--vp-sans);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.whatsapp-sheet {
  place-items: center;
}

.whatsapp-card {
  max-height: calc(100svh - 48px);
}

.minimal-topbar .menu-toggle {
  position: fixed;
  top: 22px;
  right: clamp(24px, 3vw, 58px);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.115);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.minimal-topbar .menu-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.studio-menu.menu-overlay {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(78px, 10vw, 138px) clamp(28px, 12vw, 340px) clamp(56px, 8vw, 100px);
  background:
    radial-gradient(circle at 74% 38%, rgba(75, 106, 118, 0.26), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(118, 68, 52, 0.18), transparent 30%),
    linear-gradient(115deg, rgba(22, 18, 18, 0.96), rgba(20, 34, 42, 0.97));
}

.studio-menu .menu-brand {
  position: fixed;
  top: 62px;
  left: 50%;
  z-index: 3;
  display: block;
  width: clamp(72px, 5.8vw, 112px);
  transform: translateX(-50%);
}

.studio-menu .menu-panel {
  width: min(100%, 980px);
}

.studio-menu .menu-primary {
  gap: clamp(30px, 5vw, 70px);
}

.studio-menu .menu-primary a {
  display: grid;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(3.9rem, 7.2vw, 8.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.86);
}

.studio-menu .menu-primary a b {
  font: inherit;
  letter-spacing: inherit;
}

.studio-menu .menu-link-logo {
  display: none;
}

.studio-menu .menu-primary a span {
  font-family: var(--vp-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.44);
}

.studio-menu .menu-primary:hover a {
  opacity: 0.42;
  filter: blur(2px);
  transform: translateX(-10px);
}

.studio-menu .menu-primary a:hover,
.studio-menu .menu-primary a:focus-visible {
  opacity: 1;
  color: #fff;
  filter: blur(0) drop-shadow(0 0 24px rgba(255, 255, 255, 0.2));
  transform: translateX(28px);
}

.studio-menu .menu-secondary {
  display: none;
}

.studio-menu .menu-close {
  position: fixed;
  top: 42px;
  right: clamp(24px, 3vw, 58px);
}

.menu-open main,
.menu-open .minimal-topbar .site-logo-mark {
  filter: blur(8px) brightness(0.62);
  transform: translateY(10px) scale(0.992);
}

@media (max-width: 900px) {
  .studio-menu.menu-overlay {
    padding: 96px 30px 52px;
  }

  .studio-menu .menu-primary a {
    font-size: clamp(2.55rem, 13.2vw, 4.85rem);
  }
}

@media (max-width: 560px) {
  .site-logo-mark {
    top: 14px;
    width: 68px;
  }

  .minimal-topbar .menu-toggle {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .studio-menu.menu-overlay {
    padding: 92px 26px 42px;
  }

  .studio-menu .menu-brand {
    top: 52px;
    width: 96px;
  }

  .studio-menu .menu-panel,
  .studio-menu .menu-primary {
    width: 100%;
  }

  .studio-menu .menu-primary {
    gap: 34px;
    padding-top: 72px;
  }

  .studio-menu .menu-primary a {
    width: 100%;
    max-width: calc(100vw - 52px);
    font-size: clamp(3.15rem, 14.4vw, 4.7rem);
    line-height: 0.92;
  }

  .studio-menu .menu-primary a span {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .studio-menu .menu-link-about {
    gap: 8px;
  }

  .studio-menu .menu-link-about .menu-link-logo {
    display: none;
  }
}

.minimal-topbar .menu-bars,
.minimal-topbar .menu-bars::before,
.minimal-topbar .menu-bars::after {
  width: 16px;
}

.minimal-topbar .menu-bars::before {
  display: none;
}

.minimal-topbar .menu-bars::after {
  display: none;
}

.minimal-topbar .menu-bars i {
  width: 16px;
  height: 1px;
}

.minimal-topbar .menu-bars i:nth-child(2) {
  width: 12px;
}

.minimal-topbar .menu-toggle:hover,
.minimal-topbar .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

/* Shared public header alignment */
:root {
  --studio-nav-x: clamp(28px, 5vw, 96px);
  --studio-logo-width: clamp(112px, 7.2vw, 148px);
  --studio-logo-ratio: 0.48036;
  --studio-menu-size: clamp(50px, 3.15vw, 64px);
  --studio-nav-center-y: clamp(54px, 4.2vw, 82px);
}

.minimal-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: block;
  height: calc(var(--studio-nav-center-y) * 2);
  pointer-events: none;
  mix-blend-mode: normal;
}

.site-logo-mark {
  position: fixed;
  left: var(--studio-nav-x);
  top: calc(var(--studio-nav-center-y) - (var(--studio-logo-width) * var(--studio-logo-ratio) / 2));
  z-index: 42;
  display: inline-flex;
  width: var(--studio-logo-width);
  transform: none;
  opacity: 0.96;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.34));
  transition:
    opacity 520ms var(--vp-ease),
    filter 520ms var(--vp-ease),
    transform 520ms var(--vp-ease);
}

.site-logo-mark:hover,
.site-logo-mark:focus-visible {
  opacity: 1;
  filter:
    drop-shadow(0 16px 36px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.18));
  transform: translateY(-1px);
}

.site-logo-mark img {
  width: 100%;
  height: auto;
}

.minimal-topbar .menu-toggle {
  position: fixed;
  top: calc(var(--studio-nav-center-y) - (var(--studio-menu-size) / 2));
  right: var(--studio-nav-x);
  z-index: 42;
  display: inline-grid;
  place-items: center;
  width: var(--studio-menu-size);
  height: var(--studio-menu-size);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045));
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.075),
    inset 0 -18px 28px rgba(0, 0, 0, 0.32),
    0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(130%);
  transition:
    background 520ms var(--vp-ease),
    border-color 520ms var(--vp-ease),
    box-shadow 520ms var(--vp-ease),
    filter 520ms var(--vp-ease),
    transform 520ms var(--vp-ease);
}

.minimal-topbar .menu-toggle:hover,
.minimal-topbar .menu-toggle:focus-visible {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.065));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -18px 30px rgba(0, 0, 0, 0.34),
    0 20px 54px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(255, 255, 255, 0.12);
  filter: none;
  transform: translateY(-1px);
}

.minimal-topbar .menu-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.minimal-topbar .menu-bars {
  display: grid;
  gap: clamp(5px, 0.34vw, 6px);
  width: clamp(20px, 1.45vw, 28px);
}

.minimal-topbar .menu-bars::before,
.minimal-topbar .menu-bars::after {
  display: none;
  content: none;
}

.minimal-topbar .menu-bars i,
.minimal-topbar .menu-bars i:nth-child(2) {
  display: block;
  justify-self: stretch;
  width: 100%;
  height: clamp(1px, 0.12vw, 2px);
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.menu-open main,
.menu-open .minimal-topbar .site-logo-mark {
  filter: blur(8px) brightness(0.62);
  transform: translateY(10px) scale(0.992);
}

@media (max-width: 680px) {
  :root {
    --studio-nav-x: 18px;
    --studio-logo-width: 88px;
    --studio-menu-size: 46px;
    --studio-nav-center-y: 40px;
  }
}

/* Immersive about page */
.about-immersive-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(ellipse at 18% 10%, rgba(122, 84, 42, 0.2), transparent 42%),
    radial-gradient(ellipse at 82% 28%, rgba(31, 78, 88, 0.18), transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.96), transparent 52%),
    linear-gradient(180deg, #050505 0%, #091012 46%, #020303 100%);
}

.about-immersive-page::before {
  opacity: 0.035;
}

.about-immersive {
  --about-pointer-x: 50%;
  --about-pointer-y: 45%;
  --about-tilt-x: 0deg;
  --about-tilt-y: 0deg;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(ellipse at var(--about-pointer-x) var(--about-pointer-y), rgba(43, 108, 122, 0.18), transparent 38%),
    radial-gradient(ellipse at 18% 34%, rgba(174, 124, 68, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018));
}

.about-immersive::before,
.about-immersive::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.about-immersive::before {
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0 38%, rgba(0, 0, 0, 0.44) 76%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.72));
}

.about-immersive::after {
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.about-webgl {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-section,
.about-scroll-meter,
.about-immersive .minimal-topbar {
  z-index: 1;
}

.about-scroll-meter {
  position: fixed;
  left: clamp(18px, 3vw, 48px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 4;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--vp-sans);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  pointer-events: none;
}

.about-scroll-meter i {
  display: block;
  width: 1px;
  height: 88px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0.08));
  transform: scaleY(0.04);
  transform-origin: bottom;
  transition: transform 240ms ease;
}

.about-audio-toggle {
  position: fixed;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 48;
  padding: 0;
  border: 0;
  background: transparent;
}

.about-immersive .audio-orb {
  display: inline-flex;
  width: 44px;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 10, 16, 0.34);
  font-size: 0;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
}

.about-immersive .audio-orb span {
  display: block;
  width: 2px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  animation: audio-orb-wave 1.18s ease-in-out infinite;
  transform-origin: center center;
}

.about-immersive .audio-orb span:nth-child(2) {
  animation-delay: 0.14s;
}

.about-immersive .audio-orb span:nth-child(3) {
  animation-delay: 0.28s;
}

.about-immersive .audio-orb.is-muted span {
  height: 3px;
  opacity: 0.45;
  animation: none;
}

@keyframes audio-orb-wave {
  0%, 100% { transform: scaleY(0.42); opacity: 0.5; }
  50% { transform: scaleY(1.35); opacity: 0.96; }
}

.about-section {
  position: relative;
  padding-inline: clamp(22px, 5.6vw, 108px);
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 0.86fr);
  gap: clamp(42px, 7vw, 128px);
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(112px, 13vw, 174px);
  padding-bottom: clamp(72px, 8vw, 132px);
  perspective: 1200px;
}

.about-stage-media {
  position: relative;
  min-width: 0;
  min-height: clamp(620px, 68vw, 850px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(18px, 2.3vw, 34px);
  background: #050505;
  box-shadow:
    0 48px 150px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 90px rgba(130, 88, 48, 0.1),
    inset 0 0 90px rgba(255, 255, 255, 0.035);
  transform: translate3d(0, var(--about-parallax-y, 0), 0) rotateX(var(--about-tilt-x)) rotateY(var(--about-tilt-y));
  transition: transform 720ms var(--vp-ease), box-shadow 720ms ease, border-color 720ms ease;
}

.about-stage-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 44%, rgba(0, 0, 0, 0.48)),
    radial-gradient(ellipse 70% 48% at 50% 18%, rgba(255, 255, 255, 0.08), transparent 66%);
  pointer-events: none;
}

.about-stage-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.09) 49.6%, transparent 50.6% 100%),
    linear-gradient(180deg, transparent 0 76%, rgba(4, 12, 14, 0.7));
  opacity: 0.24;
  pointer-events: none;
}

.about-stage-media img,
.about-stage-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stage-media img {
  filter: saturate(0.9) contrast(1.09) brightness(0.92);
  transition: opacity 900ms ease, transform 1200ms var(--vp-ease), filter 900ms ease;
}

.about-stage-media video {
  opacity: 0;
  filter: saturate(0.96) contrast(1.05) brightness(0.86);
  transform: scale(1.025);
  transition: opacity 740ms ease, transform 1100ms var(--vp-ease), filter 740ms ease;
}

.about-stage-media img.is-primary {
  opacity: 1;
}

.about-stage-media img.is-secondary {
  opacity: 0;
}

.about-stage-media.is-alt img.is-primary,
.about-stage-media.is-alt-scroll img.is-primary {
  opacity: 0;
  transform: scale(1.04);
}

.about-stage-media.is-alt img.is-secondary,
.about-stage-media.is-alt-scroll img.is-secondary {
  opacity: 1;
  transform: scale(1);
}

.about-stage-media:hover,
.about-stage-media:focus-within {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 48px 170px rgba(0, 0, 0, 0.68),
    0 0 70px rgba(56, 116, 138, 0.18);
}

body.about-arriving .about-stage-media {
  animation: about-portrait-arrival 1600ms var(--vp-ease) both;
}

body.about-arriving .about-stage-copy {
  animation: about-copy-arrival 1380ms var(--vp-ease) 280ms both;
}

body.about-arriving .about-webgl {
  animation: about-webgl-arrival 1800ms ease both;
}

.about-photo-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  opacity: 0;
  transform: translateY(-110%);
  animation: about-scan 6.2s var(--vp-ease) infinite;
  pointer-events: none;
}

.about-photo-index {
  display: none;
}

.about-photo-index span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.about-stage-copy {
  display: grid;
  gap: clamp(18px, 2.1vw, 30px);
  width: 100%;
  min-width: 0;
  max-width: min(780px, 100%);
}

.about-chapter-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--vp-sans);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-chapter-kicker i {
  display: block;
  width: clamp(32px, 4.5vw, 78px);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.75), transparent);
}

.about-stage-copy h1,
.about-manifesto h2,
.about-section-head h2,
.about-lab-copy h2,
.about-closing h2 {
  margin: 0;
  font-family: var(--vp-serif);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.01em;
  color: #fff;
}

.about-stage-copy h1 {
  display: grid;
  gap: 0.02em;
  font-size: clamp(3.1rem, 6.2vw, 6.4rem);
  text-wrap: balance;
}

.about-stage-copy h1 span {
  line-height: 0.88;
}

.about-stage-copy h1 span {
  display: block;
  animation: about-title-in 1050ms var(--vp-ease) both;
}

.about-stage-copy h1 span:nth-child(2) {
  animation-delay: 150ms;
}

.about-lede,
.about-manifesto p,
.about-method-card p,
.about-lab-panel span,
.about-timeline article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.92rem, 1.03vw, 1rem);
  line-height: 1.72;
}

.about-manifesto-grid p {
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.about-lede {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.96rem, 1.04vw, 1.04rem);
}

.about-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-fact-grid article,
.about-method-card,
.about-timeline article,
.about-lab-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    rgba(3, 6, 7, 0.44);
  backdrop-filter: blur(20px);
}

.about-fact-grid article {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 20px 18px;
  border-radius: 8px;
  transition: transform 700ms var(--vp-ease), border-color 520ms ease, background 520ms ease;
}

.about-fact-grid article:hover {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.about-fact-grid article:nth-child(1):hover {
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06), transparent 70%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
              rgba(0, 0, 0, 0.24);
}

.about-fact-grid article:nth-child(2):hover {
  background: radial-gradient(ellipse at 50% 100%, rgba(96, 176, 192, 0.06), transparent 70%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
              rgba(0, 0, 0, 0.24);
}

.about-fact-grid article:nth-child(3):hover {
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06), transparent 70%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
              rgba(0, 0, 0, 0.24);
}

.about-fact-grid span,
.about-method-card span,
.about-timeline article span,
.about-lab-panel span,
.about-work-card span {
  font-family: var(--vp-sans);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-fact-grid article span {
  color: rgba(255, 255, 255, 0.44);
}

.about-fact-grid strong {
  align-self: end;
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-family: var(--vp-sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 520ms var(--vp-ease), border-color 520ms ease, background 520ms ease, filter 520ms ease;
}

.about-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  transform: translateX(-82%);
  transition: opacity 420ms ease, transform 720ms var(--vp-ease);
}

.about-button span {
  position: relative;
  z-index: 1;
}

.about-button-primary {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(180, 140, 60, 0.28), rgba(180, 140, 60, 0.08));
  box-shadow: 0 18px 70px rgba(180, 140, 60, 0.12);
}

.about-button-primary:hover,
.about-button-primary:focus-visible {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(180, 140, 60, 0.28);
  box-shadow: 0 24px 90px rgba(212, 175, 55, 0.18);
}

.about-button:hover,
.about-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  filter: brightness(1.12);
  transform: translateY(-3px);
}

.about-button:hover::before,
.about-button:focus-visible::before {
  opacity: 1;
  transform: translateX(82%);
}

.about-orbit {
  position: absolute;
  right: clamp(18px, 4vw, 68px);
  bottom: clamp(38px, 6vw, 94px);
  width: clamp(120px, 14vw, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  opacity: 0.34;
  animation: about-orbit 18s linear infinite;
  pointer-events: none;
}

.about-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.about-orbit span:nth-child(1) { top: 8%; left: 48%; }
.about-orbit span:nth-child(2) { top: 42%; right: -3px; }
.about-orbit span:nth-child(3) { bottom: 9%; left: 34%; }
.about-orbit span:nth-child(4) { top: 35%; left: 2%; }

.about-manifesto {
  padding-top: clamp(84px, 10vw, 140px);
  padding-bottom: clamp(84px, 10vw, 160px);
  text-align: left;
}

.about-manifesto::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(40px, 4vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  content: "";
  transform: translateX(-50%);
}

.about-manifesto h2 {
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.3;
}

.about-memory-quote {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
  width: min(100%, 980px);
  margin: clamp(22px, 4vw, 58px) auto clamp(32px, 5vw, 72px);
  color: #fff;
}

.about-memory-quote span {
  margin-top: -0.15em;
  color: rgba(212, 175, 55, 0.62);
  font-family: var(--vp-serif);
  font-size: clamp(4.8rem, 10vw, 11rem);
  line-height: 0.72;
}

.about-memory-quote p {
  max-width: 15ch;
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 34px);
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.about-method::before,
.about-lab::before,
.about-timeline::before,
.about-work::before,
.about-closing::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(30px, 3vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  transform: translateX(-50%);
}

.about-method,
.about-lab,
.about-timeline,
.about-work,
.about-closing {
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
}

.about-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 70px);
}

.about-section-head h2,
.about-lab-copy h2,
.about-closing h2 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1;
}

.about-method-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.12fr 0.96fr;
  gap: clamp(14px, 2vw, 26px);
  align-items: end;
}

.about-method-card {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: clamp(320px, 30vw, 440px);
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: 10px;
  filter: brightness(calc(0.82 + var(--about-scroll-focus, 0.42) * 0.18));
  transition: transform 720ms var(--vp-ease), background 720ms ease, border-color 720ms ease, filter 720ms ease, box-shadow 720ms ease;
}

.about-method-card::after {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  content: "";
  opacity: 0;
  transition: opacity 720ms ease;
  pointer-events: none;
}

.about-method-card:nth-child(1)::after {
  box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.06);
}

.about-method-card:nth-child(2)::after {
  box-shadow: inset 0 0 60px rgba(80, 160, 170, 0.06);
}

.about-method-card:nth-child(3)::after {
  box-shadow: inset 0 0 60px rgba(120, 100, 180, 0.06);
}

.about-method-card span,
.about-timeline article span {
  color: rgba(216, 190, 148, 0.72);
}

.about-method-card h3,
.about-timeline article h3 {
  margin: 0;
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-method-card:nth-child(1) {
  background:
    radial-gradient(ellipse 140% 80% at 20% 90%, rgba(160, 120, 60, 0.18), transparent 70%),
    radial-gradient(ellipse 100% 60% at 80% 20%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-method-card:nth-child(2) {
  min-height: clamp(380px, 34vw, 520px);
  background:
    radial-gradient(ellipse 140% 80% at 80% 90%, rgba(40, 110, 120, 0.18), transparent 70%),
    radial-gradient(ellipse 100% 60% at 20% 20%, rgba(80, 160, 170, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-method-card:nth-child(3) {
  background:
    radial-gradient(ellipse 140% 80% at 50% 90%, rgba(60, 50, 110, 0.18), transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 20%, rgba(120, 100, 180, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-method-card:hover,
.about-method-card:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  filter: brightness(1.06);
  transform: translateY(-10px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.44), 0 0 40px rgba(180, 140, 80, 0.06);
}

.about-method-card:hover::after,
.about-method-card:focus-within::after {
  opacity: 1;
}

.about-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 108px);
  align-items: center;
}

.about-lab-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 36px);
  border-radius: 10px;
}

.about-lab-panel span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 520ms ease, background 520ms ease, transform 520ms var(--vp-ease);
}

.about-lab-panel span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
  transition: background 520ms ease, box-shadow 520ms ease, transform 520ms ease;
}

.about-lab-panel span:nth-child(1)::before { background: var(--vp-gold); box-shadow: 0 0 12px var(--vp-gold-dim); }
.about-lab-panel span:nth-child(2)::before { background: #60B0C0; box-shadow: 0 0 12px rgba(96, 176, 192, 0.25); }
.about-lab-panel span:nth-child(3)::before { background: var(--vp-gold); box-shadow: 0 0 12px var(--vp-gold-dim); }
.about-lab-panel span:nth-child(4)::before { background: #60B0C0; box-shadow: 0 0 12px rgba(96, 176, 192, 0.25); }

.about-lab-panel span:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(6px);
}

.about-lab-panel span:hover::before {
  transform: scale(1.35);
}

.about-timeline-rail,
.about-work-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 36vw);
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.about-timeline-rail::-webkit-scrollbar,
.about-work-strip::-webkit-scrollbar {
  display: none;
}

.about-timeline article {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 10px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  filter: brightness(calc(0.82 + var(--about-scroll-focus, 0.42) * 0.18));
  transition: transform 720ms var(--vp-ease), border-color 520ms ease, background 720ms ease, filter 720ms ease;
}

.about-timeline article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 0 3px 3px 0;
  transition: height 800ms var(--vp-ease);
}

.about-timeline article:nth-child(1)::before {
  background: linear-gradient(180deg, var(--vp-gold), rgba(212, 175, 55, 0.2));
}

.about-timeline article:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(96, 176, 192, 0.8), rgba(96, 176, 192, 0.15));
}

.about-timeline article:nth-child(3)::before {
  background: linear-gradient(180deg, var(--vp-gold), rgba(212, 175, 55, 0.2));
}

.about-timeline article:nth-child(1) {
  background:
    radial-gradient(ellipse 120% 70% at 30% 100%, rgba(160, 120, 60, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-timeline article:nth-child(2) {
  background:
    radial-gradient(ellipse 120% 70% at 70% 100%, rgba(40, 110, 120, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-timeline article:nth-child(3) {
  background:
    radial-gradient(ellipse 120% 70% at 50% 100%, rgba(160, 120, 60, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
}

.about-timeline article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  filter: brightness(1.04);
}

.about-timeline article:hover::before {
  height: 100%;
}

.about-work-card {
  position: relative;
  min-height: clamp(380px, 47vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
  transition: transform 720ms var(--vp-ease), border-color 520ms ease, filter 520ms ease;
}

.about-work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.86) contrast(1.04) brightness(0.72);
  transform: scale(1.05);
  transition: transform 1100ms var(--vp-ease), filter 780ms ease;
}

.about-work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

.about-work-card span,
.about-work-card strong {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.about-work-card span {
  top: 22px;
  color: rgba(255, 255, 255, 0.58);
}

.about-work-card strong {
  bottom: 22px;
  font-family: var(--vp-serif);
  font-size: clamp(1.9rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.about-work-card:hover,
.about-work-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  filter: brightness(1.08);
  transform: translateY(-8px);
}

.about-work-card:hover img,
.about-work-card:focus-visible img {
  filter: grayscale(0) saturate(0.98) contrast(1.06) brightness(0.92);
  transform: scale(1);
}

.about-closing {
  display: grid;
  place-items: center;
  min-height: 78svh;
  text-align: center;
  position: relative;
}

.about-closing::before {
  content: "";
  position: absolute;
  width: min(80vw, 700px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background:
    radial-gradient(ellipse, rgba(212, 175, 55, 0.18), transparent 58%),
    radial-gradient(ellipse, rgba(34, 91, 109, 0.16), transparent 68%);
  opacity: 0.72;
  pointer-events: none;
}

.about-closing > div {
  display: grid;
  justify-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-closing h2 {
  max-width: 18ch;
}

.about-footer {
  position: relative;
  overflow: hidden;
}

.about-footer-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.44fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  padding: clamp(82px, 10vw, 150px) clamp(22px, 5.6vw, 108px) clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(ellipse 70% 130% at 18% 14%, rgba(212, 175, 55, 0.12), transparent 62%),
    radial-gradient(ellipse 70% 120% at 96% 0%, rgba(58, 122, 138, 0.13), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.5) 42%, #010101 100%);
  isolation: isolate;
}

.about-footer-premium::before,
.about-footer-premium::after,
.about-footer-cinema {
  position: absolute;
  pointer-events: none;
  content: "";
}

.about-footer-premium::before {
  top: 0;
  left: clamp(22px, 5.6vw, 108px);
  right: clamp(22px, 5.6vw, 108px);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.82), rgba(255, 255, 255, 0.12), transparent);
}

.about-footer-premium::after {
  inset: 0;
  z-index: -2;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size: 96px 100%, 180px 180px;
  mix-blend-mode: screen;
}

.about-footer-cinema {
  right: -8%;
  bottom: -28%;
  z-index: -1;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 0 2px, transparent 3px 100%),
    radial-gradient(ellipse, rgba(212, 175, 55, 0.11), transparent 62%);
  background-size: 42px 42px, auto;
  opacity: 0.52;
}

.about-footer-cta,
.about-footer-brand,
.about-footer-map,
.about-footer-bottom {
  position: relative;
  z-index: 1;
}

.about-footer-cta {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 880px;
}

.about-footer-cta > span,
.about-footer-map span,
.about-footer-bottom,
.about-footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--vp-sans);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.about-footer-cta h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.about-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-footer-brand {
  display: grid;
  justify-items: end;
  gap: 22px;
  text-align: right;
}

.about-footer-brand img {
  display: block;
  width: clamp(118px, 12vw, 190px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.55));
}

.about-footer-brand p {
  max-width: 24ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.14em;
}

.about-footer-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.about-footer-map div {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 188px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(2, 3, 3, 0.86);
}

.about-footer-map a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--vp-serif);
  font-size: clamp(1.35rem, 2.2vw, 2.45rem);
  line-height: 1.05;
  text-decoration: none;
  transition: color 360ms ease, transform 360ms var(--vp-ease);
}

.about-footer-map a:hover,
.about-footer-map a:focus-visible,
.about-footer-map a[aria-current="page"] {
  color: #fff;
  transform: translateX(4px);
}

.about-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  padding-top: clamp(18px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.13em;
}

.about-footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 260ms ease;
}

.about-footer-bottom a:hover,
.about-footer-bottom a:focus-visible {
  color: #fff;
}

@keyframes about-title-in {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(-26px, 18px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-scan {
  0%, 58% {
    opacity: 0;
    transform: translateY(-110%);
  }
  66% {
    opacity: 0.42;
  }
  88%, 100% {
    opacity: 0;
    transform: translateY(110%);
  }
}

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

@keyframes about-portrait-arrival {
  0% {
    opacity: 0;
    filter: blur(24px) brightness(0.54);
    transform: scale(1.16) translate3d(-3vw, var(--about-parallax-y, 0), 0) rotateX(var(--about-tilt-x)) rotateY(var(--about-tilt-y));
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1) translate3d(0, var(--about-parallax-y, 0), 0) rotateX(var(--about-tilt-x)) rotateY(var(--about-tilt-y));
  }
}

@keyframes about-copy-arrival {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translate3d(34px, 18px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-webgl-arrival {
  from {
    opacity: 0;
    filter: blur(14px);
  }
  to {
    opacity: 0.72;
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .about-stage,
  .about-lab,
  .about-footer {
    grid-template-columns: 1fr;
  }

  .about-stage-media {
    order: 1;
    min-height: min(72svh, 760px);
  }

  .about-stage-copy {
    order: 2;
  }

  .about-fact-grid,
  .about-method-grid,
  .about-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto-grid p:nth-child(n) {
    grid-column: auto;
    max-width: 68ch;
    margin-inline: auto;
    text-align: left;
  }

  .about-timeline-rail,
  .about-work-strip {
    grid-auto-columns: minmax(76vw, 1fr);
  }

  .about-orbit {
    display: none;
  }

  .about-footer {
    align-items: start;
  }

  .about-footer-brand {
    justify-items: start;
    text-align: left;
  }

  .about-footer-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .about-scroll-meter {
    display: none;
  }

  .about-audio-toggle {
    right: 18px;
    bottom: max(22px, calc(env(safe-area-inset-bottom) + 14px));
  }

  .about-section {
    padding-inline: 20px;
  }

  .about-stage {
    min-height: auto;
    gap: 34px;
    padding-top: 104px;
  }

  .about-stage-copy {
    order: 2;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .about-stage-media {
    order: 1;
  }

  .about-stage-copy h1 {
    font-size: clamp(2.65rem, 12.6vw, 3.75rem);
  }

  .about-lede {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .about-chapter-kicker {
    width: 100%;
    gap: 10px;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .about-stage-media {
    min-height: 58svh;
    border-radius: 24px;
  }

  body.about-arriving .about-stage-media {
    animation-name: about-portrait-arrival-mobile;
  }

  .about-fact-grid article {
    min-height: 86px;
  }

  .about-button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .about-hero-actions {
    display: grid;
  }

  .about-manifesto h2,
  .about-section-head h2,
  .about-lab-copy h2,
  .about-closing h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .about-memory-quote {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 28px;
  }

  .about-memory-quote span {
    font-size: 5rem;
  }

  .about-memory-quote p {
    max-width: 13ch;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .about-method-card,
  .about-timeline article {
    min-height: 260px;
    border-radius: 22px;
  }

  .about-work-card {
    min-height: 470px;
  }

  .about-footer {
    gap: 24px;
    padding: 64px 20px 34px;
  }

  .about-footer-cta h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.2vw, 3.35rem);
    line-height: 0.98;
  }

  .about-footer-actions {
    display: grid;
    width: 100%;
  }

  .about-footer-brand {
    gap: 14px;
  }

  .about-footer-brand img {
    width: 116px;
  }

  .about-footer-brand p {
    max-width: 25ch;
  }

  .about-footer-map {
    margin-top: 22px;
  }

  .about-footer-map div {
    min-height: auto;
    padding: 22px;
  }

  .about-footer-map a {
    font-size: clamp(1.4rem, 7vw, 2.05rem);
  }

  .about-footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@keyframes about-portrait-arrival-mobile {
  0% {
    opacity: 0;
    filter: blur(20px) brightness(0.58);
    transform: translate3d(0, 24px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-photo-scan,
  .about-orbit,
  .about-stage-copy h1 span {
    animation: none;
  }

  .about-stage-media {
    transform: none;
  }

  body.about-arriving .about-stage-media,
  body.about-arriving .about-stage-copy,
  body.about-arriving .about-webgl {
    animation: none;
  }
}

/* Premium documentary about page */
.about-documentary-page {
  background:
    radial-gradient(ellipse at 20% 8%, rgba(160, 110, 55, 0.13), transparent 38%),
    radial-gradient(ellipse at 78% 26%, rgba(48, 96, 108, 0.14), transparent 44%),
    linear-gradient(180deg, #010202 0%, #06090a 40%, #010101 100%);
}

.about-documentary {
  --about-max: 1180px;
  --about-wide: 1440px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 1px),
    radial-gradient(ellipse at var(--about-pointer-x) var(--about-pointer-y), rgba(190, 150, 96, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%, rgba(255, 255, 255, 0.012) 78%, transparent);
  background-size: 96px 100%, auto, auto;
}

.about-documentary .about-section {
  padding-inline: clamp(22px, 5.6vw, 108px);
  scroll-margin-top: 96px;
}

.about-doc-index,
.about-doc-section-title span,
.about-doc-stats span,
.about-doc-timeline-rail article span,
.about-doc-department-grid article span,
.about-doc-badge span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--vp-sans);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-doc-hero {
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding-top: clamp(118px, 14vw, 168px);
  padding-bottom: clamp(42px, 6vw, 88px);
  isolation: isolate;
}

.about-doc-hero-media,
.about-doc-hero-media::after,
.about-doc-grain {
  position: absolute;
  inset: 0;
}

.about-doc-hero-media {
  z-index: -3;
  margin: 0;
  overflow: hidden;
  background: #020303;
}

.about-doc-hero-media video,
.about-doc-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-doc-hero-media video {
  opacity: 0.3;
  mix-blend-mode: screen;
}

.about-doc-hero-media img {
  opacity: 0.58;
  filter: grayscale(0.14) saturate(0.82) contrast(1.08) brightness(0.74);
  transform: scale(1.04);
  animation: about-doc-drift 18s var(--vp-ease-inout) infinite alternate;
}

.about-doc-hero-media::after {
  content: "";
  background:
    radial-gradient(ellipse at 42% 30%, transparent 0 28%, rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.16) 48%, #010101 100%);
}

.about-doc-grain {
  z-index: -1;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-doc-hero-copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  width: min(100%, 820px);
  padding-bottom: clamp(22px, 4vw, 54px);
}

.about-doc-hero-copy h1,
.about-doc-section-title h2,
.about-doc-victor-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--vp-serif);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-doc-hero-copy h1 {
  width: min(100%, 13ch);
  max-width: 13ch;
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: 0.92;
}

.about-doc-hero-copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.14vw, 1.12rem);
  line-height: 1.72;
}

.about-doc-hero-copy .about-button {
  justify-self: start;
}

.about-doc-hero-meta {
  position: absolute;
  right: clamp(22px, 5.6vw, 108px);
  bottom: clamp(38px, 5vw, 76px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-doc-hero-meta span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--vp-sans);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.about-doc-manifesto,
.about-doc-timeline,
.about-doc-victor,
.about-doc-team,
.about-doc-departments,
.about-doc-eye {
  padding-top: clamp(96px, 11vw, 168px);
  padding-bottom: clamp(96px, 11vw, 168px);
}

.about-doc-section-title {
  display: grid;
  gap: 18px;
  width: min(100%, var(--about-max));
  margin-inline: auto;
}

.about-doc-section-title h2,
.about-doc-victor-copy h2 {
  max-width: 20ch;
  font-size: clamp(2.1rem, 4.8vw, 5.4rem);
  line-height: 0.98;
}

.about-doc-section-title p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.72;
}

.about-doc-section-title-wide h2 {
  max-width: 24ch;
}

.about-doc-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: center;
  width: min(100%, var(--about-wide));
  margin: clamp(42px, 6vw, 86px) auto 0;
}

.about-doc-manifesto-copy {
  display: grid;
  gap: 22px;
  max-width: 520px;
}

.about-doc-manifesto-copy p,
.about-doc-victor-copy p,
.about-doc-team-copy p,
.about-doc-closing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.96rem, 1.03vw, 1.05rem);
  line-height: 1.78;
}

.about-doc-memory-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.72fr);
  gap: clamp(12px, 1.8vw, 22px);
  align-items: end;
}

.about-doc-memory-board figure,
.about-doc-team-image,
.about-doc-eye-grid figure,
.about-doc-victor-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.45);
}

.about-doc-memory-board figure {
  min-height: clamp(220px, 28vw, 430px);
  border-radius: 8px;
}

.about-doc-memory-board .is-large {
  grid-row: span 3;
  min-height: clamp(680px, 72vw, 920px);
}

.about-doc-memory-board img,
.about-doc-team-image img,
.about-doc-eye-grid img,
.about-doc-victor-portrait img,
.about-doc-victor-portrait video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  transition: transform 1000ms var(--vp-ease), filter 700ms ease, opacity 700ms ease;
}

.about-doc-memory-board figure::after,
.about-doc-team-image::after,
.about-doc-eye-grid figure::after,
.about-doc-victor-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.52));
  pointer-events: none;
}

.about-doc-memory-board figure:hover img,
.about-doc-team-image:hover img,
.about-doc-eye-grid figure:hover img,
.about-doc-victor-portrait:hover img {
  filter: saturate(0.95) contrast(1.06) brightness(0.92);
  transform: scale(1.035);
}

.about-doc-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--about-max));
  margin: clamp(40px, 6vw, 76px) auto clamp(38px, 6vw, 88px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.about-doc-stats article {
  display: grid;
  gap: 12px;
  min-height: 154px;
  align-content: end;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.07), transparent 62%),
    rgba(3, 5, 5, 0.88);
}

.about-doc-stats strong {
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(1.5rem, 2.8vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.about-doc-timeline-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  width: min(100%, var(--about-wide));
  margin-inline: auto;
}

.about-doc-timeline-rail article {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 330px;
  padding: clamp(24px, 3.2vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.28);
  transition: transform 620ms var(--vp-ease), border-color 520ms ease, background 520ms ease;
}

.about-doc-timeline-rail article::before {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.7), transparent);
  content: "";
}

.about-doc-timeline-rail h3 {
  max-width: 14ch;
  margin: auto 0 0;
  color: #fff;
  font-family: var(--vp-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.04;
}

.about-doc-timeline-rail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.68;
}

.about-doc-timeline-rail article:hover {
  border-color: rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.about-doc-victor {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: center;
  width: min(100%, var(--about-wide));
  margin-inline: auto;
}

.about-doc-victor-portrait {
  min-height: clamp(560px, 68vw, 820px);
  border-radius: 8px;
}

.about-doc-victor-copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 680px;
}

.about-doc-badge {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 8px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.11), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.about-doc-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.about-doc-team {
  width: min(100%, var(--about-wide));
  margin-inline: auto;
}

.about-doc-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(40px, 6vw, 82px);
}

.about-doc-team-image {
  min-height: clamp(420px, 54vw, 690px);
  border-radius: 8px;
}

.about-doc-team-copy {
  display: grid;
  gap: 22px;
  padding-bottom: clamp(12px, 4vw, 54px);
}

.about-doc-team-copy ul {
  display: grid;
  gap: 1px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.09);
}

.about-doc-team-copy li {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 5, 5, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-doc-department-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--about-wide));
  margin: clamp(42px, 6vw, 82px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.11);
}

.about-doc-department-grid article {
  position: relative;
  display: grid;
  min-height: clamp(250px, 25vw, 350px);
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 28px);
  background: #050606;
}

.about-doc-department-grid article::before,
.about-doc-department-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  transition: opacity 620ms ease, transform 900ms var(--vp-ease);
}

.about-doc-department-grid article::before {
  background-image: var(--card-img);
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.58);
  transform: scale(1.05);
}

.about-doc-department-grid article::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.13), transparent 66%);
}

.about-doc-department-grid article span,
.about-doc-department-grid article p {
  position: relative;
  z-index: 1;
}

.about-doc-department-grid article span {
  color: #fff;
  font-size: 0.64rem;
}

.about-doc-department-grid article p {
  max-width: 24ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.about-doc-department-grid article:hover::before {
  filter: saturate(0.96) contrast(1.06) brightness(0.78);
  transform: scale(1);
}

.about-doc-department-grid article:hover::after {
  opacity: 0.86;
}

.about-doc-eye {
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
}

.about-doc-eye-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  gap: clamp(12px, 1.6vw, 24px);
  width: min(100%, var(--about-wide));
  margin-inline: auto;
}

.about-doc-eye-grid figure {
  min-height: clamp(360px, 56vw, 720px);
  border-radius: 8px;
}

.about-doc-eye-grid figure:nth-child(2) {
  transform: translateY(clamp(28px, 6vw, 72px));
}

.about-doc-eye-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  width: min(82vw, 660px);
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-doc-eye-copy[data-reveal] {
  transform: translate(-50%, calc(-50% + 22px));
}

.about-doc-eye-copy[data-reveal].is-visible {
  transform: translate(-50%, -50%);
}

.about-doc-eye-copy p,
.about-doc-eye-copy span {
  margin: 0;
  color: #fff;
  font-family: var(--vp-serif);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.9);
  text-wrap: balance;
}

.about-doc-eye-copy p {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.about-doc-eye-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.45rem, 2.7vw, 2.6rem);
}

.about-doc-closing {
  min-height: 82svh;
}

.about-doc-closing > div {
  max-width: 820px;
}

.about-doc-closing h2 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 5.4vw, 6.2rem);
  line-height: 0.96;
}

.about-doc-closing p:not(.cinematic-label) {
  max-width: 50ch;
}

@keyframes about-doc-drift {
  from { transform: scale(1.04) translate3d(-1.2%, 0, 0); }
  to { transform: scale(1.09) translate3d(1.2%, -0.8%, 0); }
}

@media (max-width: 1180px) {
  .about-doc-department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-doc-timeline-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-doc-hero-copy h1 {
    max-width: 12ch;
  }

  .about-doc-hero-meta {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .about-doc-manifesto-grid,
  .about-doc-victor,
  .about-doc-team-grid {
    grid-template-columns: 1fr;
  }

  .about-doc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-doc-victor-portrait,
  .about-doc-team-image {
    min-height: min(74svh, 760px);
  }

  .about-doc-team-copy {
    padding-bottom: 0;
  }

  .about-doc-eye-grid {
    grid-template-columns: 1fr;
  }

  .about-doc-eye-grid figure {
    min-height: 48svh;
  }

  .about-doc-eye-grid figure:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .about-documentary .about-section {
    padding-inline: 20px;
  }

  .about-doc-hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .about-doc-hero-copy {
    gap: 16px;
  }

  .about-doc-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.8rem, 13.2vw, 4.25rem);
    line-height: 0.95;
  }

  .about-doc-hero-copy p,
  .about-doc-manifesto-copy p,
  .about-doc-victor-copy p,
  .about-doc-team-copy p,
  .about-doc-closing p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .about-doc-hero-meta {
    display: none;
  }

  .about-doc-section-title h2,
  .about-doc-victor-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.8rem);
    line-height: 1;
  }

  .about-doc-memory-board,
  .about-doc-stats,
  .about-doc-timeline-rail,
  .about-doc-department-grid {
    grid-template-columns: 1fr;
  }

  .about-doc-memory-board .is-large,
  .about-doc-memory-board figure {
    min-height: 62svh;
  }

  .about-doc-stats article {
    min-height: 118px;
  }

  .about-doc-timeline-rail article {
    min-height: 260px;
  }

  .about-doc-department-grid article {
    min-height: 260px;
  }

  .about-doc-eye-copy {
    width: calc(100vw - 40px);
    padding-inline: 0;
  }

  .about-doc-eye-copy p {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .about-doc-eye-copy span {
    font-size: clamp(1.45rem, 7vw, 2.4rem);
  }

  .about-doc-closing h2 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-doc-hero-media img {
    animation: none;
  }
}
