@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@300;400;500;600;700&display=swap');



:root{
  --bg: #f6f7fb;
  --bg-soft: rgba(255,255,255,0.72);
  --ink: #0e0f14;
  --ink-soft: rgba(14,15,20,0.72);
  --line: rgba(14,15,20,0.08);
}

*{ box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Stage + Canvas */
.stage{
  position: static !important;
  min-height: 100vh;
  overflow: hidden;
  background:
   radial-gradient(900px circle at 15% 10%, #ffffff 0%, #f6f7fb 65%),
    radial-gradient(1200px circle at 80% 30%, #ffffff 0%, #f6f7fb 70%); 
}
#fx{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background: #ccc !important;
}


/* ------------------------------------------------------------- */
/*  EINHEITLICHER CONTENT-BLOCK                                 */
/* ------------------------------------------------------------- */

.page{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 140px auto 0 auto;
  padding: 0 40px;
}

.page h1{
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.copy{
  font-size: 16px;
  line-height: 1.75;
  max-width: 74ch;
  text-align: justify;
  text-justify: inter-word;
  white-space: normal;
}

.copy a {
  color: rgba(12,14,20,0.85);   /* gleiche Farbe wie deine Headlines / Text */
  text-decoration: none;        /* entfernt das Blau und die Unterstreichung */
  border-bottom: 1px solid rgba(12,14,20,0.25); /* dezente Linie unten – optional */
  transition: opacity .25s ease;
}

.copy a:hover {
  opacity: 0.6;                 /* exakt dein UI-Stil */
}


/* Home spezielle Abstände */
.content-home{
  padding-top: 0; /* Home nutzt dieselben Offsets wie alle Seiten */
}

/* ------------------------------------------------------------- */
/*  FLOATING NAV                                                 */
/* ------------------------------------------------------------- */

.nav-floating {
  position: fixed;
  top: 32px;
  right: 40px;
  display: flex;
  gap: 26px;
  z-index: 20;
  mix-blend-mode: multiply;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-floating .item {
  text-decoration: none;
  color: rgba(12,14,20,0.86);
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.nav-floating .item:hover {
  background: rgba(255,255,255,0.55);
  color: rgba(0,0,0,0.88);
}

/* Active state */
.nav-floating .item.active {
  background: rgba(255,255,255,0.65);
  color: rgba(0,0,0,0.92);
}

/* Mobile: dezent kleiner */
@media (max-width: 900px) {
  .nav-floating {
    top: 16px;
    right: 18px;
    gap: 16px;
  }

  .nav-floating .item {
    padding: 6px 10px;
    font-size: 12px;
    backdrop-filter: blur(4px);
  }
}

/* ------------------------------------------------------------- */
/*  FOOTER – unten rechts                                        */
/* ------------------------------------------------------------- */

.footer-corner {
  position: fixed;
  bottom: 18px;
  right: 24px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  z-index: 9999;
  pointer-events: auto;
  color: rgba(12,14,20,0.55);
  mix-blend-mode: multiply;
  opacity: 0.65;
  transition: opacity .25s ease;
}

.footer-corner:hover {
  opacity: 1;
}

.footer-corner a {
  text-decoration: none;
  color: inherit;
  transition: opacity .25s ease;
}

.footer-corner a:hover {
  opacity: 1;
}

@media (max-width: 900px){
  .footer-corner {
    bottom: 14px;
    right: 16px;
    font-size: 10px;
    gap: 12px;
  }
}

/* ------------------------------------------------------------- */
/*  LOGO FIXED                                                   */
/* ------------------------------------------------------------- */

.logo-fixed {
  position: fixed;
  top: 28px;
  left: 34px;
  width: 120px;
  
  z-index: 50;
  opacity: 0.75;
  mix-blend-mode: multiply;
}
.logo-fixed:hover { opacity: 1; }

@media (max-width: 900px){
  .logo-fixed {
    top: 16px;
    left: 16px;
    width: 90px;
  }
}

/* ------------------------------------------------------------- */
/*  GHOST PANEL (falls genutzt – keine Kollision)                */
/* ------------------------------------------------------------- */

.ghost-panel {
  position: fixed;
  top: 18%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(700px, 85vw);
  padding: 36px 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  color: #0e0f14;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.ghost-panel.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ghost-inner h1 {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ghost-inner p {
  margin: 0;
  white-space: pre-wrap;
}

/* ------------------------------------------ */
/*  MINIMAL SUBMENU (FDF STYLE)               */
/* ------------------------------------------ */

.nav-floating .item-wrap {
  position: relative;
  display: flex;
  align-items: center; /* hält Lab auf der Linie */
}

.nav-floating .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;

  padding: 10px 12px;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;

  border-radius: 0;     /* KEIN 90ER BULLSHIT */
  border: none;         /* keine Kanten */
  box-shadow: none;     /* kein Schatten */
}

.nav-floating .item-wrap:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-floating .sub-menu a {
  padding: 4px 6px;
  text-decoration: none;
  color: rgba(12,14,20,0.86);
  letter-spacing: 0.05em;
  font-size: 13px;
  border-radius: 0;
  transition: opacity .2s ease;
}

.nav-floating .sub-menu a:hover {
  opacity: 0.65;
}

/* TYPO LETTERSPACING FOR HANKEN GROTESK */

/* Headlines */
.page h1 {
  letter-spacing: -0.015em;
}

/* Main navigation */
.nav-floating .item {
  letter-spacing: 0.04em;
}

/* Submenu items */
.nav-floating .sub-menu a {
  letter-spacing: 0.02em;
}

/* Copy text */
.copy {
  letter-spacing: 0.005em;
}

/* ------------------------------------------ */
/*  HOVER-BUFFER / GRACE-ZONE FOR SUBMENU     */
/* ------------------------------------------ */

.nav-floating .item-wrap {
  position: relative;
}

.nav-floating .item-wrap::after {
  content: "";
  position: absolute;

  /* Bereich zwischen Hauptbutton und Submenu */
  top: 100%;
  left: 0;
  width: 100%;
  height: 22px;  /* vergrößert den Hover-Bereich */

  background: transparent;
  pointer-events: auto;
}

.nav-floating .item-wrap:hover .sub-menu,
.nav-floating .sub-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RELEASE GRID — OPTIMIERT / KOMPAKT / PREMIUM */
.releases-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
  margin-top: 55px;
}

.release-card {
  text-decoration: none;
  color: inherit;
}

.release-cover img {
  width: 100%;
  display: block;
  border-radius: 6px;

  /* dezenter B/W */
  filter: grayscale(100%) contrast(0.92);
  transform: scale(1.01);
  opacity: 0.92;

  transition:
    filter .35s ease,
    transform .35s ease,
    opacity .35s ease;
}

.release-card:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
  opacity: 1;
}

.release-meta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;

  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.release-title {
  font-weight: 600;
  line-height: 1.3;
}

.release-catalog,
.release-artist,
.release-year {
  opacity: 0.55;
  line-height: 1.3;
}
/* RELEASE SERIES NAVIGATION */
.release-series-nav {
  margin: 12px 0 28px 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.75;
}

.release-series-nav a {
  text-decoration: none;
  color: rgba(0,0,0,0.7);
  transition: opacity .25s ease, color .25s ease;
}

.release-series-nav a:hover {
  opacity: 1;
  color: rgba(0,0,0,0.9);
}

/* active state (kommt per PHP gleich) */
.release-series-nav a.active {
  color: rgba(0,0,0,1);
  opacity: 1;
  font-weight: 600;
}

/* ------------------------------------------------------------- */
/*  GLOBAL SUBHEADING (unterhalb jeder H1)                        */
/* ------------------------------------------------------------- */

.subheading {
  margin: 12px 0 42px 0;

  display: flex;
  gap: 22px;
  flex-wrap: wrap;

  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: rgba(0,0,0,0.7);
  opacity: 0.75;
}

.subheading a {
  text-decoration: none;
  color: rgba(0,0,0,0.7);
  transition: opacity .25s ease, color .25s ease;
}

.subheading a:hover {
  opacity: 1;
  color: rgba(0,0,0,0.9);
}

.subheading .active {
  color: rgba(0,0,0,1);
  opacity: 1;
  font-weight: 600;
}

.artists-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.artist-card {
  text-decoration: none;
  color: inherit;
}

.artist-photo img {
  width: 100%;
  display: block;
  border-radius: 8px;

  filter: grayscale(100%) contrast(0.9);
  transform: scale(1.02);
  opacity: 0.9;

  transition:
    filter .35s ease,
    transform .35s ease,
    opacity .35s ease;
}

.artist-card:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
  opacity: 1;
}

.artist-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;

  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.artist-name {
  font-weight: 600;
  color: rgba(0,0,0,0.88);
}

/* ========================================================== */
/* FDF – MOBILE FIX PACK (≤600px)                             */
/* Bewahrt den Look 1:1, fixt aber Navigation, Logo, Canvas   */
/* ========================================================== */

@media (max-width: 600px){

  /* 1) Page Abstand unter Logo + Nav */
  .page {
    margin-top: 180px;
  }

  /* 2) Navigation sichtbar halten */
  .nav-floating {
    top: 8px;
    right: 10px;
    padding: 4px 6px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    mix-blend-mode: normal;
  }

  /* 2b) Items */
  .nav-floating .item,
  .nav-floating .item-wrap {
    backdrop-filter: none;
    mix-blend-mode: normal;
  }

  /* 2c) Submenu repositionieren */
  .nav-floating .sub-menu {
    left: auto;
    right: 0;
  }

  /* 3) Logo nicht verdecken lassen */
  .logo-fixed {
    top: 14px;
    left: 14px;
    width: 80px;
    opacity: 0.9;
  }

  /* 4) Canvas wie Desktop */
  #fx {
    background:
      radial-gradient(600px circle at 15% 10%, #ffffff 0%, #f6f7fb 65%),
      radial-gradient(800px circle at 80% 30%, #ffffff 0%, #f6f7fb 70%);
  }
}

/* ============================= */
/* SHOP – ÜBERSICHT & PRODUKT    */
/* ============================= */

/* Übersicht: Grid mit Releases (Shop) */
.page.shop .releases-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.page.shop .release-card {
  text-decoration: none;
  color: inherit;
}

.page.shop .release-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* Produktseite: Layout + Bildgröße */
.page.product-detail .release-detail {
  max-width: 1100px;
  margin: 0 0 0 0;
  padding: 0rem 0;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.page.product-detail .release-cover-large {
  flex: 0 0 auto;
}

/* Bildgröße Produktseite */
.page.product-detail .release-cover-large img {
  display: block;
  width: 100%;
  max-width: 320px;  /* Reduzieren? → 280px / 260px */
  height: auto;
}

/* Textbereich rechts daneben */
.page.product-detail .release-info {
  flex: 1 1 260px;
  max-width: 480px;
}

/* ============================= */
/* SHOP – ZURÜCK-LINK            */
/* ============================= */

.page.product-detail .back-to-shop {
    margin-bottom: 1rem;
}

.page.product-detail .back-to-shop a {
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(0,0,0,0.75);
    opacity: 0.7;
    transition: opacity .2s ease;
}

.page.product-detail .back-to-shop a:hover {
    opacity: 1;
}

/* Shop – Zurück-Link unter dem Produktblock */
.page.product-detail .back-to-shop-bottom {
    margin-top: 24px;
    margin-bottom: 36px;
}

.page.product-detail .back-to-shop-bottom a {
    text-decoration: none;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.75);
    opacity: 0.75;
    transition: opacity .2s ease;
}

.page.product-detail .back-to-shop-bottom a:hover {
    opacity: 1;
}
/* ===================================== */
/* SHOP – PRODUKTSEITE TYPOGRAFIE FIX    */
/* ===================================== */

/* H2 (statt H1) – harmonisch zur Seite */
.page.product-detail h2.product-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

/* Produkt-Infotext etwas kleiner */
.page.product-detail .product-info-text {
    font-size: 14px;
    line-height: 1.55;
}

/* Buttons könnten hier ebenfalls kleiner, optional */
.page.product-detail .product-info-text .btn-buy {
    font-size: 14px;
    padding: 8px 14px;
}

/* ===================================== */
/* SHOP – PRODUKTSEITE: PREIS HERVORHEBEN */
/* ===================================== */

.price-highlight {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: rgba(0,0,0,0.9);
}

/* ============================= */
/* CONTACT PAGE – 3 COLUMN GRID  */
/* ============================= */

.contact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.contact-grid h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(0,0,0,0.55);
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.contact-grid p, 
.contact-grid a {
    font-size: 15px;
    line-height: 1.7;
}

.contact-grid a {
    color: rgba(0,0,0,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: opacity .2s ease;
}

.contact-grid a:hover {
    opacity: 0.6;
}

/* FRIENDS LIST */
.friends-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.friends-list li {
    font-size: 15px;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Mobile Fix */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ========================================= */
/* IMPRINT – GRID & TYPOGRAPHY (EIGENSTÄNDIG) */
/* ========================================= */

.page.imprint .copy {
    max-width: none;
}

/* 3-Spalten-Grid für Imprint */
.imprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
    margin-top: 10px;
    width: 100%;
}

/* Spaltenüberschriften */
.imprint-grid h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
    letter-spacing: 0.01em;
    text-transform: lowercase;
}

/* Text & Links */
.imprint-grid p,
.imprint-grid a {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.imprint-grid a {
    color: rgba(0,0,0,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    transition: opacity .2s ease;
}

.imprint-grid a:hover {
    opacity: 0.6;
}

/* Friends-Liste (falls nötig im Imprint) */
.imprint-grid .friends-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imprint-grid .friends-list li {
    font-size: 16px;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

/* Mobile */
@media (max-width: 900px) {
    .imprint-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/* Nie umbrechen für sensible Imprint-Zeilen */
.nowrap {
    white-space: nowrap;
}

/* CONTACT GRID – FINAL, 2 SPALTEN, MANUELLE POSITIONIERUNG */

.contact-grid {
    display: grid;
    grid-template-columns: 400px 400px; /* links | rechts */
    gap: 40px 80px; /* row-gap | col-gap */
    margin-top: 20px;
}

/* EXAKTE POSITIONEN (fix, eindeutig, funktioniert IMMER) */
.contact-grid .office     { grid-column: 1; grid-row: 1; }
.contact-grid .booking    { grid-column: 2; grid-row: 1; }

.contact-grid .warehouse  { grid-column: 1; grid-row: 2; }
.contact-grid .platforms  { grid-column: 2; grid-row: 2; }

.contact-grid .friends    { grid-column: 1; grid-row: 3; }

/* TYPO */
.contact-grid h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: lowercase;
    color: #000;
}

.contact-grid p,
.contact-grid a {
    font-size: 16px;
    line-height: 1.7;
}

.contact-grid a {
    text-decoration: none;
    color: rgba(0,0,0,0.75);
    border-bottom: 1px solid rgba(12,14,20,0.25);
}

.nowrap { white-space: nowrap; }

/* Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid .office,
    .contact-grid .booking,
    .contact-grid .warehouse,
    .contact-grid .platforms,
    .contact-grid .friends {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

/* ------------------------------------------
   CART – Bandcamp Style
------------------------------------------- */

.page.cart {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.cart-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.cart-empty {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cart-back {
    text-decoration: none;
    font-size: 1rem;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.cart-item {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.cart-item-meta {
    display: flex;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.cart-item-remove {
    margin-top: 6px;
}

.remove-button {
    background: none;
    border: none;
    color: #c00;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    text-decoration: underline;
}

.cart-summary {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.checkout-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    background: black;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 3px;
}



/* ------------------------------------------
   CHECKOUT – modern, zweispaltig, luftig
------------------------------------------- */

.page.checkout {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.checkout-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.checkout-col label {
    display: block;
    margin-bottom: 18px;
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkout-zip-city {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
}

.checkout-submit {
    align-self: flex-start;
    padding: 14px 30px;
    background: black;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
}

/* ----------------------------------------- */
/* FDF Evidence – Editorial Broken Grid       */
/* ----------------------------------------- */

.evidence-masonry {
  column-count: 3;
  column-gap: 40px;
  margin-top: 50px;
}

.evidence-item {
  break-inside: avoid;
  margin-bottom: 40px;
}

/* einzelne Bilder leicht größer/kleiner für Rhythmus */
.evidence-item:nth-child(4n) img { transform: scale(1.08); }
.evidence-item:nth-child(7n) img { transform: scale(0.92); }

/* Bildstil */
.evidence-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.92;
  transition: transform .3s ease, filter .3s ease, opacity .3s ease;
}

/* Hover */
.evidence-item:hover img {
  opacity: 1;
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}

/* Mobile: 1 Spalte */
@media (max-width: 900px){
  .evidence-masonry {
    column-count: 1;
    column-gap: 0;
  }
}


/* Mobile: 1 Spalte */
@media (max-width: 900px) {
    .evidence-masonry {
        column-count: 1;
    }
}

/* iOS FIX: Canvas-Flackern stoppen */
#fx {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: fixed;
}

/* iOS FIX: Navigation flüssig machen */
.nav-floating {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.nav-floating .sub-menu {
    transform: translateZ(0);
    will-change: opacity, transform;
}

/* ------------------------------------------------------- */
/* iOS FIX: Canvas darf NICHT fixed sein (Safari Bug Fix)  */
/* ------------------------------------------------------- */
@supports (-webkit-overflow-scrolling: touch) {
  #fx {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
}
