@font-face {
  font-family: "Climate Crisis";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/climate-crisis-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --ink: #fbfffa;
  --paper: #091405;
  --muted: rgba(251, 255, 250, 0.68);
  --line: rgba(251, 255, 250, 0.22);
  --panel: rgba(9, 20, 5, 0.72);
  --accent: #e0fd2c;
  --blue: #035772;
  --orange: #f9a417;
  --max: 980px;
  --font-main: "Space Grotesk", Helvetica, Arial, sans-serif;
  --font-display: "Climate Crisis", "Space Grotesk", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #050604;
  color: var(--ink);
  font-family: var(--font-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  content: "";
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

html.is-page-exiting::before {
  opacity: 1;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--ink);
  overflow-x: hidden;
}

.home-body {
  scroll-snap-type: y mandatory;
}

.noise-overlay,
.vignette-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise-overlay {
  z-index: 90;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 3px);
  animation: grain 0.38s steps(2) infinite;
}

.vignette-overlay {
  z-index: 89;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.74) 100%);
}

@keyframes grain {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1%, 1%);
  }

  50% {
    transform: translate(1%, -1%);
  }

  75% {
    transform: translate(-1%, -1%);
  }

  100% {
    transform: translate(1%, 1%);
  }
}

.work-body {
  scroll-snap-type: y mandatory;
}

.about-body {
  scroll-snap-type: y mandatory;
}

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

.footer-actions a,
.legal-links a,
.close-player,
.contact-submit,
.player-button,
.sound-toggle,
.project-open,
[data-work-sound] {
  position: relative;
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.footer-actions a {
  display: inline-flex;
}

.footer-actions a::after,
.legal-links a::after,
.close-player::after,
.contact-submit::after,
.player-button:not([data-toggle-mute])::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible,
.close-player:hover,
.close-player:focus-visible,
.contact-submit:hover,
.contact-submit:focus-visible,
.player-button:hover,
.player-button:focus-visible,
.sound-toggle:hover,
.sound-toggle:focus-visible,
.project-open:hover,
.project-open:focus-visible,
[data-work-sound]:hover,
[data-work-sound]:focus-visible {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-actions a:hover::after,
.footer-actions a:focus-visible::after,
.legal-links a:hover::after,
.legal-links a:focus-visible::after,
.close-player:hover::after,
.close-player:focus-visible::after,
.contact-submit:hover::after,
.contact-submit:focus-visible::after,
.player-button:not([data-toggle-mute]):hover::after,
.player-button:not([data-toggle-mute]):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

a[x-apple-data-detectors],
.imprint a[x-apple-data-detectors],
.legal-links a[x-apple-data-detectors] {
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  width: 100%;
  padding: 31px clamp(20px, 5vw, 58px);
  mix-blend-mode: difference;
}

.nav {
  justify-content: center;
  display: flex;
  gap: 37px;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

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

.hero {
  --home-overlay-opacity: 1;
  position: relative;
  min-height: 400svh;
  overflow: clip;
  background: #050604;
}

.hero::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.72), rgba(5, 6, 4, 0.2) 48%, rgba(5, 6, 4, 0.72)),
    linear-gradient(180deg, rgba(5, 6, 4, 0.08), rgba(5, 6, 4, 0.4) 58%, rgba(5, 6, 4, 0.78));
  opacity: var(--home-overlay-opacity);
  pointer-events: none;
  transition: opacity 80ms linear;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.18), transparent 46%, rgba(5, 6, 4, 0.18)),
    linear-gradient(180deg, transparent 0 62%, rgba(5, 6, 4, 0.22));
  pointer-events: none;
}

.hero-video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  background: #000;
  filter: none;
}

.background-video {
  opacity: 0;
  transition: opacity 220ms ease;
}

.background-video.is-playing {
  opacity: 1;
}

.sound-toggle {
  position: fixed;
  left: clamp(20px, 4vw, 42px);
  bottom: max(clamp(20px, 4vw, 38px), env(safe-area-inset-bottom));
  z-index: 94;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.sound-toggle::before,
.project-open::before,
.project-open[data-work-sound]::before,
[data-work-sound]::before,
.player-button[data-toggle-mute]::before {
  width: 12px;
  height: 10px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
  clip-path: polygon(0 34%, 34% 34%, 70% 0, 70% 100%, 34% 66%, 0 66%);
}

.sound-toggle::after,
.project-open::after,
.project-open[data-work-sound]::after,
[data-work-sound]::after,
.player-button[data-toggle-mute]::after {
  position: absolute;
  top: 50%;
  left: -1px;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%) rotate(-42deg);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sound-toggle.is-on::after,
.project-open.is-on::after,
.project-open[data-work-sound].is-on::after,
[data-work-sound].is-on::after,
.player-button[data-toggle-mute].is-on::after {
  opacity: 0;
  transform: translateY(-50%) rotate(-42deg) scaleX(0);
}

.sound-toggle.is-visible {
  opacity: 0.78;
  pointer-events: auto;
  transform: translateY(0);
}

.sound-toggle.is-visible,
[data-work-sound],
.player-button[data-toggle-mute] {
  opacity: 0.78;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    color 220ms ease;
}

.sound-toggle.is-visible:hover,
.sound-toggle.is-visible:focus-visible,
.sound-toggle.is-on,
[data-work-sound]:hover,
[data-work-sound]:focus-visible,
[data-work-sound].is-on,
.player-button[data-toggle-mute]:hover,
.player-button[data-toggle-mute]:focus-visible,
.player-button[data-toggle-mute].is-on {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: 400svh;
  margin: 0 auto;
  padding: 0;
}

.home-section {
  display: flex;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-section-logo,
.home-section-film,
.home-section-video {
  align-items: center;
  justify-content: center;
}

.home-section-video {
  pointer-events: none;
}

.home-section-imprint.home-footer {
  --imprint-bg-opacity: 0;
  position: relative;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 0;
  align-self: stretch;
  overflow: hidden;
  background: transparent;
}

.home-section-imprint.home-footer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #000;
  opacity: var(--imprint-bg-opacity);
  pointer-events: none;
  transition: opacity 80ms linear;
}

.home-section-imprint.home-footer .footer-actions {
  position: absolute;
  top: 176px;
  left: max(20px, calc(50% - 315px));
  z-index: 1;
  width: min(730px, calc(100% - 40px));
  gap: 88px;
  justify-content: flex-start;
  font-size: clamp(42px, 4.3vw, 50px);
}

.home-section-imprint.home-footer .imprint {
  position: absolute;
  top: 274px;
  left: max(20px, calc(50% - 315px));
  z-index: 1;
  width: 280px;
  margin-top: 0;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.32;
}

.home-section-imprint.home-footer .legal-links {
  display: grid;
  gap: 9px;
  margin-top: 72px;
  font-size: 10px;
  line-height: 1;
}

.home-section-imprint.home-footer .legal-links a {
  display: inline-flex;
  min-height: 13px;
  align-items: center;
}

.imprint-screen.global-footer {
  --imprint-bg-opacity: 0;
  position: relative;
  display: block;
  width: 100vw;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: transparent;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.imprint-screen.global-footer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #000;
  opacity: var(--imprint-bg-opacity);
  pointer-events: none;
  transition: opacity 80ms linear;
}

.imprint-screen.global-footer .footer-actions {
  position: absolute;
  top: 176px;
  left: max(20px, calc(50% - 315px));
  z-index: 1;
  width: min(730px, calc(100% - 40px));
  gap: 88px;
  justify-content: flex-start;
  font-size: clamp(42px, 4.3vw, 50px);
}

.imprint-screen.global-footer .imprint {
  position: absolute;
  top: 274px;
  left: max(20px, calc(50% - 315px));
  z-index: 1;
  width: 280px;
  margin-top: 0;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.32;
}

.imprint-screen.global-footer .legal-links {
  display: grid;
  gap: 9px;
  margin-top: 72px;
  font-size: 10px;
  line-height: 1;
}

.imprint-screen.global-footer .legal-links a {
  display: inline-flex;
  min-height: 13px;
  align-items: center;
}

.logo-lockup {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 0;
  animation: revealUp 700ms ease both;
}

.logo-card {
  display: block;
  width: min(66.2vw, 463px);
  height: auto;
  background: transparent;
}

.logo-card .brand-logo {
  width: 100%;
  height: auto;
  filter: none;
}

.mark {
  margin-top: -3px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.film-link {
  position: relative;
  isolation: isolate;
  display: block;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(62px, 7.6vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 240ms ease,
    letter-spacing 240ms ease,
    filter 240ms ease;
  animation: revealUp 760ms ease 120ms both;
}

.film-link:hover {
  color: var(--ink);
  transform: scale(1.025);
  letter-spacing: -0.02em;
  filter: blur(0.1px);
}

.hero-kicker {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: revealUp 760ms ease 80ms both;
}

.home-footer,
.global-footer {
  width: min(430px, 100%);
  margin-top: 0;
  align-self: center;
}

.home-footer {
  padding-top: 0;
}

.global-footer {
  margin: 84px auto 0;
}

.page {
  min-height: 100vh;
  padding: 132px clamp(20px, 5vw, 58px) 72px;
  background:
    linear-gradient(180deg, rgba(5, 6, 4, 0.93), rgba(5, 6, 4, 0.98)),
    url("assets/images/moodlaw-still.jpeg") center top / cover;
}

.work-page {
  min-height: 100vh;
  padding: 0;
  background: #000;
}

.about-page {
  --about-overlay-opacity: 1;
  position: relative;
  min-height: 200svh;
  overflow: clip;
  background: #000;
}

.about-page::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.72), rgba(5, 6, 4, 0.2) 48%, rgba(5, 6, 4, 0.72)),
    linear-gradient(180deg, rgba(5, 6, 4, 0.08), rgba(5, 6, 4, 0.4) 58%, rgba(5, 6, 4, 0.78));
  opacity: var(--about-overlay-opacity);
  pointer-events: none;
  transition: opacity 80ms linear;
}

.about-bg-video {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 760px;
  object-fit: cover;
  object-position: center center;
  transform: translateX(-50%);
  background: #000;
  filter: none;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(430px, calc(100% - 40px));
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 0 0 110px;
  align-items: center;
  transform: translateX(-24px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-video-section {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  color: #fff;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.42;
  text-align: left;
  text-transform: uppercase;
  grid-template-rows: 1fr auto;
  align-items: center;
}

.about-statement {
  align-self: center;
  mix-blend-mode: difference;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.about-copy p {
  margin: 0 0 14px;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10px);
  animation: aboutTextBuild 1650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-copy p:nth-child(1) {
  animation-delay: 340ms;
}

.about-copy p:nth-child(2) {
  animation-delay: 920ms;
}

.about-copy p:nth-child(3) {
  animation-delay: 1460ms;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-imprint {
  align-self: end;
  margin-top: auto;
}

.work-inner {
  width: 100%;
  margin: 0 auto;
}

.page-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-title {
  margin: 0 0 46px;
  font-size: clamp(58px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  scroll-snap-type: y mandatory;
}

.project {
  --video-progress: 0;
  --video-progress-width: 0%;
  --work-progress-left: 0px;
  --work-progress-top: calc(100% - 14px);
  --work-progress-width: 100%;
  --work-sound-left: clamp(20px, 4vw, 42px);
  --work-sound-top: auto;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 0;
  background: #000;
}

.project::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 50%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, transparent 0 76%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.work-bg-video {
  width: 100vw;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.project-open {
  position: absolute;
  left: var(--work-sound-left);
  top: var(--work-sound-top);
  bottom: auto;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.78;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    color 220ms ease;
  animation: none;
}

.project-meta {
  display: none;
}

.project-meta span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0;
}

.project-meta strong {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: text-shadow 220ms ease;
}

.project:hover .project-meta strong {
  text-shadow: none;
}

.project-open:hover,
.project-open:focus-visible,
.project-open.is-on {
  opacity: 1;
  transform: translateY(-1px);
}

.work-progress {
  position: absolute;
  left: var(--work-progress-left);
  top: var(--work-progress-top);
  z-index: 4;
  width: var(--work-progress-width);
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.work-progress::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(251, 255, 250, 0.72) var(--video-progress-width), rgba(251, 255, 250, 0.16) 0);
}

.work-progress::-webkit-slider-thumb {
  width: 20px;
  height: 22px;
  appearance: none;
  border: 0;
  background: transparent;
}

.work-progress::-moz-range-track {
  width: 100%;
  height: 1px;
  background: rgba(251, 255, 250, 0.16);
}

.work-progress::-moz-range-progress {
  height: 1px;
  background: rgba(251, 255, 250, 0.72);
}

.work-progress::-moz-range-thumb {
  width: 20px;
  height: 22px;
  border: 0;
  background: transparent;
}

.project-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.project img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
  filter: none;
  transition: opacity 300ms ease, filter 300ms ease;
}

.project-play {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project:hover img,
.project-trigger:focus-visible img {
  opacity: 0.72;
  filter: contrast(1.08) brightness(0.82);
}

.project:hover .project-play,
.project-trigger:focus-visible .project-play {
  opacity: 1;
  transform: translateY(0);
}

.legal {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.legal h1 {
  max-width: 720px;
  margin: 0 auto 32px;
  font-family: var(--font-main);
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.legal h2 {
  margin: 42px auto 12px;
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
}

.legal p,
.legal li {
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(251, 255, 250, 0.78);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.62;
}

.legal p:first-of-type {
  color: rgba(251, 255, 250, 0.9);
  font-size: 14px;
}

.contact {
  width: min(820px, 100%);
  margin: 0 auto;
  color: var(--ink);
}

.contact-intro {
  margin: 0 auto 42px;
  text-align: center;
}

.contact h1 {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-intro p {
  margin: 0;
  color: rgba(251, 255, 250, 0.78);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
}

.contact-direct {
  display: grid;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
  color: rgba(251, 255, 250, 0.72);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 18px;
  color: rgba(251, 255, 250, 0.64);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-direct a,
.contact-social a {
  position: relative;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.contact-direct a {
  justify-self: center;
}

.contact-direct a:hover,
.contact-direct a:focus-visible,
.contact-social a:hover,
.contact-social a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 22px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.contact-form label span,
.form-note,
.form-status {
  color: rgba(251, 255, 250, 0.68);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(251, 255, 250, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 42px;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(251, 255, 250, 0.86);
}

.contact-form select option {
  background: #050604;
  color: var(--ink);
}

.privacy-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.privacy-check input {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.privacy-check span {
  text-transform: none;
}

.form-note {
  margin: -6px 0 0;
  text-transform: none;
}

.privacy-check a,
.form-note a {
  border-bottom: 1px solid currentColor;
}

.contact-submit {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 15px;
  margin: -6px 0 0;
}

.form-status[data-tone="error"] {
  color: #f9a417;
}

.form-status[data-tone="success"] {
  color: var(--ink);
}

.footer {
  position: relative;
  padding: 52px clamp(20px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background: #050604;
  color: var(--ink);
}

.footer-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 28px;
  grid-template-columns: 1fr 1.5fr;
}

.footer-actions {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  font-weight: 900;
  font-family: var(--font-main);
  font-size: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.imprint {
  color: var(--muted);
  margin-top: 30px;
  font-size: 8px;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-links {
  display: grid;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 42px;
  font-size: 8px;
  line-height: 1;
}

.legal-links a {
  display: inline-flex;
  min-height: 12px;
  align-items: center;
}

.player {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: clamp(18px, 4vw, 54px);
  backdrop-filter: blur(20px);
  background:
    radial-gradient(circle at 50% 35%, rgba(224, 253, 44, 0.08), transparent 28%),
    rgba(0, 0, 0, 0.88);
  color: var(--ink);
}

.player.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-shell {
  position: relative;
  width: min(1240px, 100%);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.player.is-open .player-shell {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.player-video {
  width: 100%;
  max-height: calc(100vh - 164px);
  border: 1px solid rgba(251, 255, 250, 0.18);
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
  object-fit: contain;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes aboutTextBuild {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10px);
  }

  55% {
    opacity: 0.78;
    filter: blur(1.5px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.close-player {
  position: absolute;
  top: -34px;
  right: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.player-controls {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.player-button {
  min-width: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.player-button[data-toggle-mute] {
  display: inline-flex;
  min-width: auto;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}

.player-time {
  display: flex;
  gap: 5px;
  min-width: 72px;
}

.player-range {
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.player-range::-webkit-slider-runnable-track {
  height: 1px;
  background: var(--line);
}

.player-range::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  margin-top: -4.5px;
  appearance: none;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
}

.player-range::-moz-range-track {
  height: 1px;
  background: var(--line);
}

.player-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
}

.player-title {
  margin-top: 14px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-header {
    padding: calc(env(safe-area-inset-top) + 16px) 18px 16px;
  }

  .nav {
    gap: clamp(22px, 7vw, 34px);
    font-size: 12px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 400svh;
    min-height: 400dvh;
    padding-top: 0;
  }

  .hero {
    min-height: 400svh;
    min-height: 400dvh;
  }

  .hero-video {
    height: 100dvh;
    object-position: center center;
  }

  .sound-toggle {
    left: max(18px, env(safe-area-inset-left));
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
    font-size: 10px;
  }

  .home-section-imprint.home-footer {
    width: 100vw;
    min-height: 100dvh;
    padding-bottom: 0;
  }

  .home-section-imprint.home-footer .footer-actions {
    top: clamp(116px, 20svh, 150px);
    top: clamp(116px, 20dvh, 150px);
    left: 50%;
    width: min(327px, calc(100% - 36px));
    gap: clamp(10px, 3.1vw, 16px);
    justify-content: space-between;
    font-size: clamp(23px, 6.65vw, 27px);
    transform: translateX(-50%);
  }

  .home-section-imprint.home-footer .imprint {
    top: clamp(206px, 35svh, 248px);
    top: clamp(206px, 35dvh, 248px);
    left: 50%;
    right: auto;
    width: min(280px, calc(100% - 48px));
    font-size: clamp(8px, 2.35vw, 9px);
    line-height: 1.32;
    transform: translateX(-50%);
  }

  .home-section-imprint.home-footer .legal-links {
    margin-top: clamp(34px, 7svh, 48px);
    margin-top: clamp(34px, 7dvh, 48px);
    font-size: inherit;
  }

  .home-section-imprint.home-footer .legal-links a {
    min-height: 13px;
  }

  .imprint-screen.global-footer {
    width: 100vw;
    min-height: 100dvh;
  }

  .imprint-screen.global-footer .footer-actions {
    top: clamp(116px, 20svh, 150px);
    top: clamp(116px, 20dvh, 150px);
    left: 50%;
    width: min(327px, calc(100% - 36px));
    gap: clamp(10px, 3.1vw, 16px);
    justify-content: space-between;
    font-size: clamp(23px, 6.65vw, 27px);
    transform: translateX(-50%);
  }

  .imprint-screen.global-footer .imprint {
    top: clamp(206px, 35svh, 248px);
    top: clamp(206px, 35dvh, 248px);
    left: 50%;
    right: auto;
    width: min(280px, calc(100% - 48px));
    font-size: clamp(8px, 2.35vw, 9px);
    line-height: 1.32;
    transform: translateX(-50%);
  }

  .imprint-screen.global-footer .legal-links {
    margin-top: clamp(34px, 7svh, 48px);
    margin-top: clamp(34px, 7dvh, 48px);
    font-size: inherit;
  }

  .imprint-screen.global-footer .legal-links a {
    min-height: 13px;
  }

  .project {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .work-bg-video {
    width: 100vw;
    height: auto;
    max-height: calc(100dvh - 90px);
  }

  .project-open {
    left: var(--work-sound-left);
    top: var(--work-sound-top);
    bottom: auto;
    font-size: 10px;
  }

  .work-progress {
    height: 30px;
  }

  .work-progress::-webkit-slider-thumb {
    height: 30px;
  }

  .work-progress::-moz-range-thumb {
    height: 30px;
  }

  .about-page {
    min-height: 200svh;
    min-height: 200dvh;
  }

  .about-bg-video {
    height: 100dvh;
    min-height: 100dvh;
    width: auto;
    min-width: 100%;
    object-position: center center;
  }

  .about-inner {
    width: min(330px, calc(100% - 32px));
    min-height: 100svh;
    min-height: 100dvh;
    padding: 72px 0 58px;
    transform: translateX(-10px);
  }

  .about-copy {
    min-height: 100svh;
    min-height: calc(100dvh - 130px);
    font-size: clamp(10px, 2.95vw, 11px);
    line-height: 1.38;
  }

  .about-copy p {
    margin-bottom: 12px;
  }

  .logo-card {
    width: min(66.2vw, 374px);
    height: auto;
  }

  .logo-card .brand-logo {
    width: 100%;
  }

  .film-link {
    margin-top: 0;
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.96;
  }

  .home-footer,
  .global-footer {
    margin-top: 0;
    width: min(330px, 100%);
  }

  .home-footer {
    padding-top: 0;
  }

  .project-meta {
    display: none;
  }

  .project-meta strong {
    font-size: 10px;
  }

  .global-footer {
    margin-top: 64px;
  }

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

  .footer-actions {
    flex-wrap: wrap;
  }

  .player {
    padding: 18px;
  }

  .player-video {
    max-height: calc(100vh - 176px);
  }

  .player-controls {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .player-time {
    display: none;
  }

  .legal {
    width: min(560px, 100%);
  }

  .legal h1 {
    margin-bottom: 26px;
    font-size: clamp(28px, 8vw, 38px);
  }

  .legal h2 {
    margin-top: 34px;
    font-size: 18px;
  }

  .legal p,
  .legal li {
    font-size: 15px;
    line-height: 1.58;
  }

  .contact {
    width: min(560px, 100%);
  }

  .contact-intro {
    margin-bottom: 34px;
  }

  .contact h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .nav {
    gap: 18px;
    font-size: 11px;
  }

  .home-section-imprint.home-footer .footer-actions,
  .imprint-screen.global-footer .footer-actions {
    width: min(300px, calc(100% - 28px));
    gap: 8px;
    font-size: clamp(21px, 6.45vw, 24px);
  }

  .home-section-imprint.home-footer .imprint,
  .imprint-screen.global-footer .imprint {
    width: min(268px, calc(100% - 36px));
    font-size: 8px;
  }

  .logo-card {
    width: min(66.2vw, 331px);
    height: auto;
  }

  .logo-card .brand-logo {
    width: 100%;
  }

  .mark {
    font-size: 17px;
  }

  .film-link {
    font-size: clamp(38px, 12.5vw, 46px);
  }

  .about-inner {
    width: min(304px, calc(100% - 28px));
    transform: translateX(-6px);
  }

  .about-copy {
    font-size: 10px;
    line-height: 1.34;
  }
}

@media (max-height: 640px) and (max-width: 760px) {
  .home-section-imprint.home-footer .footer-actions,
  .imprint-screen.global-footer .footer-actions {
    top: 96px;
  }

  .home-section-imprint.home-footer .imprint,
  .imprint-screen.global-footer .imprint {
    top: 176px;
    font-size: 8px;
    line-height: 1.24;
  }

  .home-section-imprint.home-footer .legal-links,
  .imprint-screen.global-footer .legal-links {
    margin-top: 28px;
  }

  .about-inner {
    padding: 64px 0 44px;
  }

  .about-copy {
    min-height: calc(100dvh - 108px);
    line-height: 1.3;
  }
}
