/* ============================================================
   JULIUS VIDEOGRAPHY — Rohfassung
   Monochrom, editorial, elegant. Fraunces + Hanken Grotesk.
   ============================================================ */

:root {
  --ink: #0b0b0c;
  --ink-2: #141416;
  --ink-3: #1d1d20;
  --paper: #f1efe9;
  --paper-2: #e9e6de;
  --line-dark: rgba(11, 11, 12, 0.14);
  --line-light: rgba(241, 239, 233, 0.16);
  --muted-dark: rgba(11, 11, 12, 0.62);
  --muted-light: rgba(241, 239, 233, 0.6);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--ink); color: var(--paper); }

a:focus-visible, button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- Korn ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.2%, -1.8%); }
  75% { transform: translate(-1.4%, -0.8%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Mikro-Label ---------- */
.micro-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.micro-label.light { color: var(--muted-light); }
.micro-label.center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
}
.nav.is-scrolled {
  padding: 0.85rem var(--pad);
  background: rgba(11, 11, 12, 0.38);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  backdrop-filter: blur(22px) saturate(1.1);
  border-bottom: 1px solid rgba(241, 239, 233, 0.08);
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; gap: 0.2rem; }
.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.75;
}
.nav-burger {
  width: 44px; height: 44px;
  background: none; border: 0;
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 7px;
}
.nav-burger span {
  display: block;
  width: 30px; height: 1.5px;
  background: var(--paper);
  transition: transform 0.45s var(--ease), width 0.45s var(--ease);
}
.nav-burger:hover span:nth-child(1) { width: 20px; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); width: 30px; }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ============================================================
   OVERLAY-MENÜ
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(11, 11, 12, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(1.15);
  backdrop-filter: blur(28px) saturate(1.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
  display: flex;
  align-items: center;
}
body.menu-open .menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s var(--ease);
}
.menu-inner {
  width: 100%;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
}
.menu-links { list-style: none; }
.menu-links a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.14;
  display: inline-flex;
  align-items: baseline;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s;
}
body.menu-open .menu-links a { opacity: 1; transform: none; }
.menu-links li:nth-child(1) a { transition: opacity 0.7s var(--ease) 0.1s, transform 0.7s var(--ease) 0.1s; }
.menu-links li:nth-child(2) a { transition: opacity 0.7s var(--ease) 0.18s, transform 0.7s var(--ease) 0.18s; }
.menu-links li:nth-child(3) a { transition: opacity 0.7s var(--ease) 0.26s, transform 0.7s var(--ease) 0.26s; }
.menu-links li:nth-child(4) a { transition: opacity 0.7s var(--ease) 0.34s, transform 0.7s var(--ease) 0.34s; }
.menu-links a em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  opacity: 0.5;
}
.menu-links a:hover { font-style: italic; }
.menu-meta { display: grid; gap: 2rem; padding-bottom: 0.8rem; }
.menu-meta-block { display: grid; gap: 0.4rem; }
.menu-meta-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 0.3rem;
}
.menu-meta-block a { font-size: 0.95rem; opacity: 0.85; }
.menu-meta-block a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   HERO — sticky, der Rest der Seite scrollt darüber
   ============================================================ */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.03);
  transition: opacity 1.4s ease, transform 8s linear;
}
.hero-video.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0.25) 34%, rgba(11,11,12,0.08) 55%, rgba(11,11,12,0.3) 100%);
}
.hero-content {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(4.5rem, 11vh, 7.5rem);
  z-index: 2;
}
.hero-kicker span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 7.2vw, 6.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 14em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(110%); }
.hero-title em { font-weight: 400; }
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.82;
  max-width: 34em;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.cta-ring {
  width: 44px; height: 44px;
  border: 1px solid rgba(241,239,233,0.5);
  border-radius: 50%;
  position: relative;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.cta-ring::after {
  content: "\2193";
  position: absolute; inset: 0;
  display: grid; place-content: center;
  font-size: 0.9rem;
  transition: transform 0.4s var(--ease);
}
.hero-cta:hover .cta-ring { background: var(--paper); transform: scale(1.08); }
.hero-cta:hover .cta-ring::after { color: var(--ink); transform: translateY(2px); }
.hero-caption {
  position: absolute;
  right: var(--pad);
  bottom: clamp(1.4rem, 4vh, 2.4rem);
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-caption-title { transition: opacity 0.5s; }
.hero-caption-index { font-variant-numeric: tabular-nums; }
.hero-scrollhint {
  position: absolute;
  left: var(--pad);
  bottom: clamp(1.4rem, 4vh, 2.4rem);
  z-index: 2;
  width: 1px; height: 52px;
  background: rgba(241,239,233,0.22);
  overflow: hidden;
}
.hero-scrollhint span {
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--paper);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* Hero-Titel Einblendung nach Load */
body.is-loaded .hero-title .line > span {
  transition: transform 1.1s var(--ease);
  transform: translateY(0);
}
body.is-loaded .hero-title .line:nth-child(1) > span { transition-delay: 0.15s; }
body.is-loaded .hero-title .line:nth-child(2) > span { transition-delay: 0.27s; }
body.is-loaded .hero-title .line:nth-child(3) > span { transition-delay: 0.39s; }
.hero-kicker span, .hero-sub, .hero-cta, .hero-caption, .hero-scrollhint {
  opacity: 0;
  transition: opacity 1.2s ease;
}
body.is-loaded .hero-kicker span { opacity: 0.8; transition-delay: 0.1s; }
body.is-loaded .hero-sub { opacity: 0.82; transition-delay: 0.55s; }
body.is-loaded .hero-cta { opacity: 1; transition-delay: 0.7s; }
body.is-loaded .hero-caption { opacity: 0.7; transition-delay: 0.9s; }
body.is-loaded .hero-scrollhint { opacity: 1; transition-delay: 0.9s; }

/* ============================================================
   PAGE-BODY — Vorhang, der über den Hero scrollt
   ============================================================ */
.page-body {
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  border-radius: clamp(1.2rem, 3vw, 2.4rem) clamp(1.2rem, 3vw, 2.4rem) 0 0;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.45);
}

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.reveal-line.in-view > span { transform: translateY(0); }

/* ============================================================
   WERK-BAND
   ============================================================ */
.band-section { padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem); }
.band-head {
  padding: 0 var(--pad);
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.band-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  color: var(--ink);
  text-align: right;
}
.band {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.band-track {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  width: max-content;
  animation: band-scroll 68s linear infinite;
}
.band:hover .band-track { animation-play-state: paused; }
@keyframes band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.werk {
  flex: 0 0 auto;
  height: clamp(200px, 30vw, 330px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
}
.werk.hoch { aspect-ratio: 3 / 4.4; }
.werk img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.7s ease, transform 0.7s var(--ease);
}
.werk:hover img { filter: grayscale(0); transform: scale(1.045); }

/* ============================================================
   NAMES-MARQUEE (Kunden / Events)
   ============================================================ */
.names-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.names-section .micro-label { margin-bottom: 1.6rem; }
.names-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(1.1rem, 2.4vw, 1.8rem) 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.names-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.4rem);
  width: max-content;
  animation: band-scroll 38s linear infinite;
}
.names-track span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11,11,12,0.55);
  transition: color 0.4s ease;
}
.names-track span:hover { color: var(--ink); }
.names-track i {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.4;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.section-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  margin: 1.1rem 0 1.4rem;
}
.section-title em { font-weight: 400; }
.section-intro {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 34em;
}
.leistung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  overflow: hidden;
}
.leistung-card {
  position: relative;
  background: var(--paper);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  padding-bottom: clamp(4.5rem, 6vw, 5.5rem);
  min-height: clamp(320px, 30vw, 420px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease);
}
.leistung-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: linear-gradient(to top, rgba(11,11,12,0.88), rgba(11,11,12,0.45)), var(--img);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.04);
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 0.65s ease, transform 1.4s var(--ease);
}
.leistung-card:hover::before { opacity: 1; transform: scale(1); }
.leistung-card:hover { color: var(--paper); }
.leistung-card:hover .micro-label { color: var(--muted-light); }
.leistung-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.45;
  margin-bottom: auto;
}
.leistung-card .micro-label { margin: 2rem 0 0.7rem; transition: color 0.5s; }
.leistung-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.8rem;
}
.leistung-card p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 30em;
}
@media (min-width: 901px) {
  /* gleiche Grundlinie für Label/Headline in allen drei Karten */
  .leistung-card p { min-height: 4.95em; }
}
@media (hover: none) {
  /* Touch-Geräte: Kartenbild dauerhaft sichtbar statt Hover-Reveal */
  .leistung-card { color: var(--paper); }
  .leistung-card::before { opacity: 1; transform: scale(1); }
  .leistung-card .micro-label { color: var(--muted-light); }
  .leistung-arrow { opacity: 0.8; }
}
.leistung-arrow {
  position: absolute;
  right: clamp(1.8rem, 3vw, 2.8rem);
  bottom: clamp(1.6rem, 2.6vw, 2.4rem);
  font-size: 1.3rem;
  opacity: 0.35;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}
.leistung-card:hover .leistung-arrow { transform: translateX(6px); opacity: 1; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 11vw, 9.5rem) var(--pad);
  overflow: hidden;
  border-radius: clamp(1.2rem, 3vw, 2.4rem);
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(1) blur(2px) brightness(0.7);
  transform: scale(1.05);
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 30% 20%, rgba(11,11,12,0.1), rgba(11,11,12,0.82) 70%);
}
.cta-inner { max-width: 1100px; }
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cta-title em { font-weight: 400; }
.cta-sub {
  margin-top: 1.8rem;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 36em;
}
.cta-panel {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(220px, auto));
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 3.4vw, 3rem);
  background: rgba(241, 239, 233, 0.055);
  border: 1px solid rgba(241, 239, 233, 0.12);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.cta-block { display: grid; gap: 0.5rem; align-content: start; }
.cta-block .micro-label { margin-bottom: 0.4rem; color: var(--muted-light); }
.cta-link {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  opacity: 0.9;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, opacity 0.3s;
}
.cta-link:hover { opacity: 1; border-color: rgba(241,239,233,0.5); }

/* ============================================================
   ÜBER / TEAM
   ============================================================ */
.ueber { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.ueber-text { position: sticky; top: 14vh; }
.ueber-text .section-title { margin-bottom: 2rem; }
.ueber-text p:not(:first-of-type) {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-dark);
  max-width: 36em;
  margin-bottom: 1.3rem;
}
.ueber-text p:first-of-type {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
  margin-bottom: 1.6rem;
}
.ueber-portrait, .ueber-bts {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.ueber-portrait img, .ueber-bts img {
  width: 100%;
  filter: grayscale(0.9) contrast(1.03);
  transition: filter 0.8s ease, transform 1.2s var(--ease);
}
.ueber-portrait:hover img, .ueber-bts:hover img { filter: grayscale(0); transform: scale(1.02); }
.ueber-portrait figcaption, .ueber-bts figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(11,11,12,0.82), transparent);
  color: var(--paper);
  display: grid;
  gap: 0.25rem;
}
.ueber-portrait strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
}
.ueber-portrait figcaption span, .ueber-bts figcaption span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}
.ueber-bts { grid-column: 2; margin-top: clamp(1.5rem, 3vw, 2.5rem); width: 82%; margin-left: auto; }
.ueber-extra {
  grid-column: 1;
  grid-row: 2;
  width: 78%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.ueber-extra img {
  width: 100%;
  filter: grayscale(0.9) contrast(1.03);
  transition: filter 0.8s ease, transform 1.2s var(--ease);
}
.ueber-extra:hover img { filter: grayscale(0); transform: scale(1.02); }
.ueber-extra figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(11,11,12,0.78), transparent);
  color: var(--paper);
}
.ueber-extra figcaption span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   PROJEKTE — horizontaler Scroll
   ============================================================ */
.projects {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: clamp(1.2rem, 3vw, 2.4rem) clamp(1.2rem, 3vw, 2.4rem) 0 0;
  /* Höhe = Scrollstrecke; wird per JS gesetzt */
}
.projects-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects-head {
  position: absolute;
  top: clamp(4rem, 10vh, 6.5rem);
  left: var(--pad);
  right: var(--pad);
  display: grid;
  gap: 0.4rem;
  z-index: 3;
  pointer-events: none;
}
.projects-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}
.projects-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted-light);
  max-width: 30em;
  margin-top: 0.6rem;
}
.projects-track {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
  margin-top: clamp(4rem, 12vh, 8rem);
}
.project-item {
  flex: 0 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: filter 0.5s ease, transform 0.6s var(--ease);
}
.projects-track:hover .project-item:not(:hover) { filter: brightness(0.55) blur(1.5px); }
.project-item:hover { transform: scale(1.015); }
.size-xl { width: min(62vw, 780px); aspect-ratio: 16/9; }
.size-l { width: min(48vw, 600px); aspect-ratio: 16/9; }
.size-p { width: min(26vw, 330px); aspect-ratio: 9/16; }
.project-media { position: absolute; inset: 0; }
.project-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter 0.7s ease;
}
.project-item:hover .project-media video { filter: grayscale(0); }
.project-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,0.72) 0%, transparent 42%);
  pointer-events: none;
}
.project-meta {
  position: absolute;
  left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}
.project-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  line-height: 1.15;
}
.project-endcap {
  flex: 0 0 auto;
  width: min(40vw, 460px);
  display: grid;
  gap: 1.6rem;
  padding: 2rem;
}
.project-endcap p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.25;
}
.endcap-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(241,239,233,0.35);
  padding-bottom: 0.5rem;
  width: fit-content;
  transition: border-color 0.3s;
}
.endcap-link:hover { border-color: var(--paper); }
.projects-progress {
  position: absolute;
  left: var(--pad); right: var(--pad);
  bottom: clamp(1.6rem, 5vh, 3rem);
  height: 1px;
  background: rgba(241, 239, 233, 0.16);
}
.projects-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--paper);
  transition: width 0.15s linear;
}

/* ============================================================
   FOOTER — Curtain-Reveal
   ============================================================ */
.footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: var(--ink-2);
  color: var(--paper);
}
.footer.is-static { position: static; }
.footer-inner {
  padding: clamp(4rem, 8vw, 7rem) var(--pad) clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}
.footer-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.footer-word em { font-weight: 300; opacity: 0.55; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(2rem, 4.5vw, 4rem);
}
.footer-col { display: grid; gap: 0.55rem; align-content: start; }
.footer-col .micro-label { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.92rem;
  font-weight: 300;
  opacity: 0.8;
  width: fit-content;
  transition: opacity 0.3s;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(241,239,233,0.1);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .menu-inner { grid-template-columns: 1fr; align-items: start; align-content: center; }
  .leistung-grid { grid-template-columns: 1fr; }
  .leistung-card { min-height: 0; padding-bottom: 3.6rem; }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-text { position: static; }
  .ueber-bts { width: 100%; grid-column: auto; }
  .ueber-extra { width: 100%; grid-column: auto; grid-row: auto; }
  .band-line { text-align: left; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr; }

  /* Projekte: nativer Horizontal-Scroll statt Scroll-Jacking */
  .projects { height: auto !important; }
  .projects-sticky {
    position: relative;
    height: auto;
    padding: clamp(4rem, 10vw, 6rem) 0 3.5rem;
    overflow: visible;
  }
  .projects-head { position: static; margin-bottom: 2.2rem; padding: 0 var(--pad); }
  .projects-track {
    overflow-x: auto;
    width: auto;
    margin-top: 0;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .projects-track::-webkit-scrollbar { display: none; }
  .project-item { scroll-snap-align: center; }
  .size-xl, .size-l { width: 78vw; }
  .size-p { width: 56vw; }
  .project-endcap { width: 70vw; }
  .projects-progress { display: none; }
  .projects-track:hover .project-item:not(:hover) { filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .band-track, .names-track, .grain, .hero-scrollhint span { animation: none; }
  .reveal, .reveal-line > span, .hero-title .line > span { transition: none; transform: none; opacity: 1; }
  .hero-video { transition: opacity 1.4s ease; transform: none; }
  html { scroll-behavior: auto; }
}
