/* ── Inter Variable Font ──────────────────────────────────── */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  --color-bg:      #f2efe9;
  --color-text:    #1a1a18;
  --color-brand:   #7d96a8;
  --color-subtle:  #9eaeb8;
  --color-rule:    rgba(125,150,168,0.2);
  --color-ph:      #e2dfd8;

  --font-main: 'Noctis', Georgia, serif;
  --font-text: 'Inter', Helvetica, sans-serif;

  --pad: 3rem;
  --gap: 1.5rem;
}

html {
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.65;
}

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

/* ── Nav ──────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.6rem var(--pad);
  mix-blend-mode: difference;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-name {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-claim {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.4;
  max-width: 200px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  padding-top: 0.4rem;
}

.nav-links a {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-brand); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem var(--pad) 6rem;
}

.hero-claim {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(4.5rem, 12vw, 13rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-brand);
  margin-bottom: 4rem;
}

.hero-below {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  border-top: 1px solid var(--color-rule);
  padding-top: 2rem;
  max-width: 1400px;
}

.hero-sub {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-subtle);
  line-height: 2;
}

.hero-intro {
  font-family: var(--font-text);
  font-weight: 700;
  color: var(--color-brand);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  max-width: 680px;
}

/* ── Intro Bild – volle Breite ────────────────────────────── */

.intro {
  padding: 3rem var(--pad) 0;
}

/* ── Placeholders ─────────────────────────────────────────── */

.placeholder {
  background: var(--color-ph);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder::after {
  content: attr(data-label);
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-subtle);
  text-align: center;
  padding: 1rem;
}

.placeholder--wide      { aspect-ratio: 16/9;  width: 100%; }
.placeholder--cinema    { aspect-ratio: 21/9;  width: 100%; }
.placeholder--square    { aspect-ratio: 1/1;   width: 100%; }
.placeholder--portrait  { aspect-ratio: 3/4;   width: 100%; }
.placeholder--tall      { aspect-ratio: 2/3;   width: 100%; }
.placeholder--map       { aspect-ratio: 4/3;   width: 100%; }

/* ── Section Label ────────────────────────────────────────── */

.section-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.5;
  margin-bottom: 3rem;
  padding-top: 5rem;
  border-top: 1px solid var(--color-rule);
}

/* ── Arbeiten ─────────────────────────────────────────────── */

.arbeiten {
  padding: 0 0 6rem;
}

.arbeiten-inner {
  padding: 0 var(--pad);
}

/* Projekt A: Bild fast volle Breite, Info darunter 3-spaltig */
.projekt-a {
  margin-bottom: 8rem;
}

.projekt-a .bild {
  width: 100%;
}

.projekt-a .info {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 2rem;
  margin-top: 1.2rem;
  padding: 0 0;
  align-items: start;
}

/* Projekt B: Bild links groß, Bild rechts klein + versetzt */








/* Projekt C: volle Breite ohne Padding, Info darunter eingerückt */
.projekt-c {
  margin-bottom: 8rem;
}

.projekt-c .bild {
  width: 100%;
  padding: 0;
}

.projekt-c .info {
  padding: 1.2rem var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

/* Projekt D: Text links, Bild rechts groß */
.projekt-d {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

/* Projekt E: drei gleiche Spalten */
.projekt-e {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 8rem;
}

/* Projekt F: 2/3 + 1/3 versetzt */
.projekt-f {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  align-items: start;
  margin-bottom: 8rem;
}

.projekt-f .bild-rechts {
  margin-top: 6rem;
}

/* Projekt Typografie */
.projekt-name {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
}

.projekt-kategorie {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-subtle);
  margin-top: 0.25rem;
}

.projekt-text {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 0.75rem;
}

.projekt-link {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-brand);
  border-bottom: 1px solid var(--color-brand);
  display: inline-block;
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}

.projekt-link:hover { opacity: 0.6; }

/* ── Kunden Panel ─────────────────────────────────────────── */

.kunden-panel {
  background: var(--color-brand);
  padding: 6rem var(--pad);
}

.kunden-panel-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.kunden-panel-liste {
  font-family: 'Noctis', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.55;
  color: #ffffff;
}

/* ── Büro ─────────────────────────────────────────────────── */

.buero {
  padding: 0 var(--pad) 6rem;
}

.buero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 8rem;
}

.buero-name {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.buero-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.buero-sub {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-subtle);
  line-height: 1.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-rule);
}

.buero-duo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
}

/* ── Kontakt ──────────────────────────────────────────────── */

.kontakt {
  padding: 0 var(--pad) 6rem;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-name {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.kontakt-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.kontakt-link {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-brand);
  display: inline-block;
  width: fit-content;
  transition: color 0.2s;
}

.kontakt-link:hover { color: var(--color-brand); }

.kontakt-adresse {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brand);
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--color-rule);
  padding: 1.5rem var(--pad);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-brand);
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a,
.footer-copy {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--color-subtle);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-text); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --pad: 1.5rem; }

  .hero-below,
  .projekt-c .info,
  .projekt-d,
  .projekt-e,
  .projekt-f,
  .buero-grid,
  .buero-duo,
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .projekt-a .info { grid-template-columns: 1fr; }
  .projekt-f .bild-rechts { margin-top: 0; }

  .nav-claim { display: none; }

  .kunden-panel-liste { font-size: 1.3rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── Slider ───────────────────────────────────────────────── */

.slider {
  position: relative;
}

.slider-slide {
  display: block;
}

.slider-slide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

.slider-slide video {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  display: block;
  margin: 0 auto;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text);
  font-family: var(--font-text);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-btn:hover { color: var(--color-brand); }

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.slider-counter {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--color-subtle);
  letter-spacing: 0.1em;
}

html, body {
  overflow-x: hidden;
}

/* ── NFL Projekt ──────────────────────────────────────────── */

.projekt-nfl {
  padding: 0 var(--pad);
  margin-bottom: 8rem;
}

.nfl-info {
  margin-top: 1rem;
}

/* ── Trio: NFL 2 Spalten + 2x 1 Spalte ───────────────────── */

.projekt-trio {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 8rem;
}

@media (max-width: 900px) {
  .projekt-trio {
    grid-template-columns: 1fr;
  }
}

/* ── Duo Wide: 2fr + 1fr ──────────────────────────────────── */

.projekt-duo-wide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  margin-bottom: 8rem;
}

@media (max-width: 900px) {
  .projekt-duo-wide {
    grid-template-columns: 1fr;
  }
}

/* ── Duo Equal: 1fr 1fr ───────────────────────────────────── */

.projekt-duo-equal {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap);
  align-items: start;
  margin-bottom: 8rem;
}

@media (max-width: 900px) {
  .projekt-duo-equal {
    grid-template-columns: 1fr;
  }
}

/* ── Slider Video ─────────────────────────────────────────── */



/* ── Kontakt Claim ────────────────────────────────────────── */

.kontakt-claim {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* ── Footer Claim ─────────────────────────────────────────── */

.footer-claim {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--color-subtle);
}

/* ── Slider Small (Frigisinga) ────────────────────────────── */

.slider--small .slider-slide img {
  height: 75vh;
}

/* ── Mobile Slider Fix ────────────────────────────────────── */

@media (max-width: 900px) {
  .slider-slide img {
    height: 50vw;
  }

  .slider--small .slider-slide img {
    height: 50vw;
  }

  .bild-klein {
    margin-top: 0;
  }
}

/* ── Zehntelsekunde: 9:16 Frame ───────────────────────────── */

.bild-klein .slider {
  width: auto;
  display: inline-block;
}

.bild-klein .slider-slide img,
.bild-klein .slider-slide video {
  width: auto;
  height: 90vh;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

/* ── Frigisinga + NFL: gleiche Höhe ───────────────────────── */

.projekt-duo-equal .slider-slide img {
  height: 75vh;
  width: 100%;
  object-fit: cover;
  display: block;
}

.projekt-duo-equal .slider--small .slider-slide img {
  height: 75vh;
}





/* ── Mobile: design.s Bildhöhe auto ──────────────────────── */

@media (max-width: 900px) {
  .bild-gross .slider-slide img {
    height: auto !important;
    max-height: 70vw;
    object-fit: cover;
  }
}

/* ── Garnfarm Panel ───────────────────────────────────────── */

.garnfarm-panel {
  background: #a28f79;
  padding: 8rem var(--pad);
}

.garnfarm-inner {
  max-width: 800px;
  text-align: center;
}

.garnfarm-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.garnfarm-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.garnfarm-text {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

/* ── Garnfarm Panel ───────────────────────────────────────── */

.garnfarm-panel {
  background: #a28f79;
  padding: 8rem var(--pad);
}

.garnfarm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.garnfarm-logo {
  width: 260px;
  display: block;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.garnfarm-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.garnfarm-text {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  text-align: center;
}

.garnfarm-link {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.9rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.2rem;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  transition: border-color 0.2s;
}

.garnfarm-link:hover {
  border-color: #ffffff;
}

.slider--garnfarm .slider-slide img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  display: block;
}

.slider--garnfarm .slider-btn {
  color: rgba(255,255,255,0.7);
}

.slider--garnfarm .slider-btn:hover {
  color: #ffffff;
}

.slider--garnfarm .slider-counter {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .garnfarm-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── Projekt B: design.s + Zehntelsekunde ────────────────── */

.projekt-b {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 8rem;
}

.bild-gross {
  min-width: 0;
}

.bild-gross .slider-slide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

.bild-klein {
  padding-top: 15%;
}

.bild-klein .slider-slide img,
.bild-klein .slider-slide video {
  width: 100%;
  height: 90vh;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .projekt-b {
    grid-template-columns: 1fr;
  }
  .bild-klein {
    padding-top: 0;
  }
  .bild-gross .slider-slide img {
    height: 60vw;
  }
  .bild-klein .slider-slide img,
  .bild-klein .slider-slide video {
    height: auto;
    aspect-ratio: 9/16;
  }
}

/* ── Legal Pages ──────────────────────────────────────────── */

.legal-page {
  padding: 12rem var(--pad) 8rem;
}

.legal-title {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-brand);
  font-style: italic;
  margin-bottom: 5rem;
}

.legal-block {
  max-width: 720px;
  margin-bottom: 3rem;
  border-top: 1px solid var(--color-rule);
  padding-top: 2rem;
}

.legal-heading {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 1rem;
}

.legal-subheading {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-block p {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.legal-block a {
  color: var(--color-brand);
  border-bottom: 1px solid var(--color-brand);
}

/* ── Mobile Nav & Abstände ────────────────────────────────── */

@media (max-width: 900px) {
  nav {
    align-items: center;
  }

  .nav-links {
    gap: 1rem;
    padding-top: 0;
  }

  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  /* Mehr Abstand design.s / Zehntelsekunde */
  .projekt-b {
    gap: 2.5rem;
  }

  /* Mehr Abstand Frigisinga / NFL */
  .projekt-duo-equal {
    gap: 2.5rem;
  }
}

/* ── Websites Liste ───────────────────────────────────────── */

.websites { padding-bottom: 0; }

.website-list {
  display: flex;
  flex-direction: column;
}

.website-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-rule);
  text-decoration: none;
  transition: color 0.2s;
}

.website-link:first-child {
  border-top: 1px solid var(--color-rule);
}

.website-link:hover {
  color: var(--color-brand);
}

.website-name {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text);
}

.website-link:hover .website-name {
  color: var(--color-brand);
}

.website-url {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-subtle);
  letter-spacing: 0.03em;
}

/* ── Logos Marquee ────────────────────────────────────────── */

.logos-section {
  padding: var(--space-xl) 0 0;
}

.logos-sub {
  font-family: var(--font-main);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--color-subtle);
  margin-bottom: 3rem;
}

.logos-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 8rem;
  width: max-content;
  animation: logoLoop 60s linear infinite;
}

.logos-track img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(17%) sepia(18%) saturate(1156%) hue-rotate(176deg) brightness(93%) contrast(89%);
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes logoLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Websites + Logos Side by Side ───────────────────────── */

.ws-logos-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

/* Websites Box */
.ws-box {
  background: #ede9e1;
  padding: 6rem var(--pad);
}

.ws-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 2.5rem;
  display: block;
}

.ws-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ws-list a {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-brand);
  text-decoration: none;
  transition: opacity 0.2s;
  display: flex;
  align-items: baseline;
}

.ws-list a:hover {
  color: var(--color-brand);
}

/* Logo Box */
.logo-box {
  background: #ffffff;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logo-crossfade {
  position: relative;
  width: 100%;
  height: 50%;
  min-height: 200px;
  margin-top: 2rem;
  flex: 1;
}

.logo-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
  filter: brightness(0) saturate(100%) invert(59%) sepia(19%) saturate(502%) hue-rotate(163deg) brightness(89%) contrast(86%);
}

.logo-slide.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .ws-logos-section {
    grid-template-columns: 1fr;
  }
  .logo-box {
    min-height: 40vh;
  }
}

.ws-name {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-brand);
}

.ws-url {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  color: var(--color-subtle);
  margin-left: 1rem;
}

/* ── Mobile: Logos größer ─────────────────────────────────── */

@media (max-width: 900px) {
  .logo-crossfade {
    min-height: 70vw;
  }

  .logo-slide {
    max-width: 70vw;
    max-height: 60vw;
  }
}

/* ── Raus: Mobile Bild ────────────────────────────────────── */

.raus-mobile { display: none; }
.raus-desktop { display: block; }

@media (max-width: 900px) {
  .raus-mobile { display: block; width: 100%; }
  .raus-desktop { display: none; }
}

/* ── Scroll Fade In ───────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Raus Maus Overlay ────────────────────────────────────── */

.raus-bild-wrapper {
  position: relative;
}

.raus-maus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .raus-maus {
    width: 25%;
    height: auto;
  }
}

/* ── Raus Bild Wrapper Fix ────────────────────────────────── */

.raus-bild-wrapper {
  position: relative;
  display: block;
}

.raus-bild-wrapper picture {
  display: block;
}

.raus-bild-wrapper picture img {
  display: block;
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

.raus-bild-wrapper picture,
.raus-bild-wrapper picture img {
  display: block;
  width: 100%;
}

/* ── Raus Video Fill ──────────────────────────────────────── */

.projekt-c .slider-slide video {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}



/* ── Scroll Progress ──────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-brand);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ── Garnfarm Left: Link unten ausrichten ─────────────────── */

.garnfarm-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.garnfarm-link {
  margin-top: auto;
}

/* ── Muschler Vimeo Embed ─────────────────────────────────── */

.vimeo-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  width: 100%;
}

.vimeo-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* ── Muschler Slider: Bild im 16:9 wie Video ──────────────── */

.projekt-a .slider-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* ── Muschler Slider: feste Höhe für beide Slides ─────────── */

.projekt-a .slider-track {
  aspect-ratio: 16/9;
}

.projekt-a .slider-slide {
  height: 100%;
}

.projekt-a .slider-slide img {
  height: 100%;
  aspect-ratio: unset;
}

.projekt-a .vimeo-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

/* ── Vimeo Sound Toggle ───────────────────────────────────── */

.vimeo-sound-toggle {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.vimeo-sound-toggle:hover {
  background: rgba(0,0,0,0.75);
}

.vimeo-sound-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

/* ── Raus Mobile: einheitliche Höhe für Bild und Video ────── */

@media (max-width: 900px) {
  .projekt-c .slider-slide picture img {
    height: 70vw;
    width: 100%;
    object-fit: cover;
  }

  .projekt-c .slider-slide video {
    height: 70vw;
  }
}
