body {
  background-color: black;
  color: #eee;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

#perlin-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: perlinPulse 14s ease-in-out infinite;
}

@keyframes perlinPulse {
  0%, 100% { opacity: 0.03; }
  50%      { opacity: 0.11; }
}

.site-top {
  position: relative;
  z-index: 2;
  padding: 22px 1.25rem 0;
}

.site-top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.site-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eee;
  text-decoration: none;
  justify-self: start;
}

.site-title:hover {
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  justify-self: center;
  margin-top: -0.4rem;
}

.main-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-self: center;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.35rem;
}

.project-filters button {
  background: none;
  border: none;
  color: #666;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.1rem 0.2rem;
  font-family: inherit;
  transition: color 0.2s ease;
}

.project-filters button:hover,
.project-filters button.is-active {
  color: #fff;
}

.project-filters .filter-sep {
  color: #444;
  font-size: 0.72rem;
  user-select: none;
  pointer-events: none;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.about-social {
  justify-content: center;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.social-nav svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  display: block;
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.about-page {
  padding: 2.5rem 0 4rem;
}

html.page-about,
body.page-about {
  min-height: 100%;
}

body.page-about {
  background-color: #000;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.72) 55%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    url("/images/about-bg.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.page-about #perlin-bg {
  opacity: 0.02;
}

.about-content {
  width: 100%;
  max-width: none;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  gap: 2rem 4rem;
  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-portrait-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  justify-self: end;
  align-self: center;
}

.about-portrait {
  width: 100%;
  max-width: 280px;
  min-width: 0;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.92;
  display: block;
}

.about-content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.44rem, 3.2vw, 1.92rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content p {
  margin: 0 0 1rem;
  color: #ccc;
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-content a {
  color: #eee;
}

.about-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

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

.about-clients {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-clients h2,
.about-supported h2 {
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.about-clients h2 {
  margin: 0 0 -1.25rem;
  line-height: 1;
}

.about-clients .client-logos {
  margin-top: -0.75rem;
}

.client-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}

.client-logos li {
  display: flex;
  align-items: center;
}

.client-logos img {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.client-logos img.logo-google {
  height: 1.65rem;
}

.client-logos img.logo-snap {
  height: 1.35rem;
}

.client-logos img.logo-meta {
  height: 1.256rem;
}

.client-logos img.logo-spectacles {
  height: 1.45rem;
  max-width: 9.5rem;
}

.client-logos img.logo-heartland {
  height: 6.791rem;
  max-width: 25.872rem;
}

.client-logos img.logo-copenhagen-light-festival {
  height: 3.513rem;
  max-width: 12.548rem;
}

.client-logos img.logo-saga {
  height: 1.33rem;
  max-width: 6.175rem;
}

.client-logos img.logo-soundboks {
  height: 1.283rem;
  max-width: 8.075rem;
}

.client-logos img.logo-fremstillinger {
  height: 3.127rem;
  max-width: 3.127rem;
}

.client-logos img.logo-dtu {
  height: 2.645rem;
}

.client-logos img.logo-antler {
  height: 1.45rem;
}

.client-logos img.logo-innovationsfonden {
  height: 1.323rem;
  max-width: 12.65rem;
}

.client-logos img.logo-maker {
  height: 1.2rem;
}

.client-logos img.logo-elevenlabs {
  height: 1.17rem;
  max-width: 9rem;
}

img.logo-light {
  filter: brightness(0) invert(1);
}

.client-logos li:hover img {
  opacity: 1;
}

.about-achievements {
  margin-top: 0;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-achievements h2 {
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.about-supported {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.achievement-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.achievement-item {
  display: grid;
  grid-template-rows: 2rem auto;
  gap: 0.55rem;
  align-items: center;
  justify-items: center;
  min-width: 9rem;
}

.achievement-item img {
  display: block;
  width: auto;
  max-height: 2rem;
  object-fit: contain;
  object-position: center bottom;
  align-self: end;
  justify-self: center;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.achievement-item img.logo-atech {
  max-height: 1.863rem;
}

.achievement-item img.logo-snap {
  max-height: 1.35rem;
}

.achievement-item img.logo-ar-house {
  max-height: 2.4rem;
  border-radius: 0.35rem;
}

.achievement-item img.logo-awe {
  max-height: 2.046rem;
}

.achievement-item img.logo-fmx {
  max-height: 1.85rem;
  max-width: 8.5rem;
}

.achievement-item img.logo-dtu {
  max-height: 2.645rem;
}

.achievement-item img.logo-dtu-skylab {
  max-height: 2.645rem;
  max-width: 1.852rem;
}

.achievement-item span {
  color: #aaa;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.achievement-item:hover img {
  opacity: 1;
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}

.project-modal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.65rem;
  min-height: 2rem;
}

.project-modal-title {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #eee;
  letter-spacing: 0.02em;
}

.project-modal-hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: #888;
  text-align: center;
}

.video-modal-close {
  position: static;
  flex-shrink: 0;
  border: none;
  background: none;
  color: #eee;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.video-modal-close:hover {
  color: #fff;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal.is-preview .video-modal-frame {
  aspect-ratio: auto;
  height: min(75vh, 720px);
}

.video-modal.is-preview .video-modal-dialog {
  width: min(1100px, 100%);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .site-top-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "nav";
    align-items: center;
  }

  .site-title {
    grid-area: title;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
  }

  .nav-center,
  .main-nav {
    grid-area: nav;
    justify-self: stretch;
    width: 100%;
  }

  .nav-center {
    align-items: flex-start;
    gap: 1.15rem;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .project-filters {
    justify-content: flex-start;
    row-gap: 0.35rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-portrait-block {
    justify-self: start;
  }

  .about-portrait {
    max-width: min(100%, 280px);
  }
}

@media (max-width: 768px) {
  .site-top {
    padding: 14px 0.85rem 10px;
  }

  .site-title {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .main-nav {
    gap: 1.15rem;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .project-filters button,
  .project-filters .filter-sep {
    font-size: 0.8rem;
  }

  .page-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .about-page {
    padding: 1.5rem 0 2.5rem;
  }

  .about-content p {
    font-size: 0.98rem;
  }

  .client-logos {
    gap: 1rem 1.35rem;
  }

  .video-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .video-modal-close {
    top: -1.75rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .site-top-inner {
    gap: 0.65rem;
  }

  .about-social {
    gap: 0.5rem;
  }

  .about-social a {
    width: 1.75rem;
    height: 1.75rem;
  }

  .about-social svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .project-filters {
    gap: 0.2rem 0.4rem;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .project-filters button,
  .project-filters .filter-sep {
    font-size: 0.78rem;
  }

  .client-logos img.logo-spectacles {
    max-width: 7.5rem;
  }
}
