    /* ================================
      RESET & GLOBALS
    ================================ */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

html,
body {
  height: 100%;
  width: 100%;
  max-width: 100vw;
  background: #000;
  font-family: "Ronzino-Medium", "Arial", serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory; /* Scroll Snap (Desktop) */
}

    a {
      color: inherit;
      text-decoration: none;
    }
a:hover {
  color: #888;
  cursor: pointer;
}

    @font-face {
      font-family: "Ronzino-Medium";
      src: url("Ronzino-Medium.woff2") format("woff2");
      font-weight: 500;
    }

    /* ================================
      NAVIGATION
    ================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 12px 24px;
      z-index: 50;
      background: #ffffff;
      color: #000000;
      mix-blend-mode: normal;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: clamp(14px, 2vw, 18px);
    }

    .nav--intro {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      color: #000;
      z-index: 20;
    }

.nav--about {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 100;
}

    .nav__inner a {
      padding: 6px 8px;
      transition: color 0.25s ease-out;
    }

    .nav__left,
    .nav__right {
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      color: inherit;
    }

    /* ================================
      INDEX PAGE — PROJECT SECTIONS
    ================================ */
    .project {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .project--intro {
      background: #fff;
      color: #000;
      height: 100vh;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    /* Safari/iOS Fix */
    @supports (height: 100svh) {
      .project,
      .project--intro {
        height: 100svh;
        min-height: 100svh;
      }
    }
    @supports (height: 100dvh) {
      .project,
      .project--intro {
        height: 100dvh;
        min-height: 100dvh;
      }
    }

    .intro__text {
      text-align: center;
      line-height: 1.2;
      font-size: clamp(1rem, 2.5vw, 3rem);
    }

    /* ================================
      SCROLL HINT (Intro)
    ================================ */
    .scroll-hint {
      position: absolute;
      bottom: 18px;
      left: 18px;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: scroll-bob 1.8s ease-in-out infinite;
      cursor: pointer;
      z-index: 999; /* <<< WICHTIG: sichtbar */
    }

    .scroll-hint__arrow {
      width: 16px;
      height: 16px;
      border-left: 3px solid currentColor;
      border-bottom: 3px solid currentColor;
      transform: rotate(-45deg); /* zeigt nach unten */
    }

    @keyframes scroll-bob {
      0% { transform: translateY(0); }
      50% { transform: translateY(4px); }
      100% { transform: translateY(0); }
    }

    /* ================================
      BACK TO TOP — EIN PFEIL FÜR ALLE SECTIONS
    ================================ */
    .back-to-top {
      position: absolute;
        bottom: 18px;
      right: 18px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: scroll-bob 1.8s ease-in-out infinite;
      cursor: pointer;
      z-index: 999; /* <<< WICHTIG: sichtbar */
      color: #fff;
    }

    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;

      
    }

    .back-to-top .scroll-hint__arrow {
    opacity: 1;
      visibility: visible;
          border-left: 3px solid currentColor;
      border-bottom: 3px solid currentColor;
      transform: rotate(135deg); /* zeigt nach unten */
        width: 16px;
      height: 16px;
    }

    /* ================================
      SLIDER
    ================================ */
    .project__slider {
      position: relative;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .project__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .1s ease;
      will-change: opacity;
    }
    .project__image.active {
      opacity: 1;
    }

    .project__counter {
      position: absolute;
      bottom: 15px;
      left: 15px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      opacity: 0.9;
      z-index: 50;
      letter-spacing: 0.02em;
      cursor: pointer;
      touch-action: manipulation;
      
    }

    /* ================================
      TITLES
    ================================ */
    .project__left{
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 10;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #ffffff;
    }

    .project__right{
      position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #ffffff;
    }

  .title__left{
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 10;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #000;
  }
  .title__right{
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #000;
  }

    .project__info-button {
      background: none;
      border: none;
      color: inherit;
      cursor: pointer;
      color: #ffffff;
    }

    /* ================================
      OVERLAY
    ================================ */
    .project__overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 25%;
      height: 100%;
      background: #000;
      color: #fff;
      padding: 20px;
      transform: translateX(100%);
      transition: transform .45s ease-out;
      pointer-events: none;
    }

    .project__overlay p,
    .project__overlay a,
    .project__overlay span,
    .project__overlay strong {
      color: #fff;
    }

    .project__overlay.active {
      transform: translateX(0);
      pointer-events: auto;
    }

    .project__overlay p {
      line-height: 1.25;
      font-size: clamp(14px, 1.6vw, 16px);
    }

    /* ================================
      ABOUT PAGE
    ================================ */
    .about__content {
      color: #fff;
      display: grid;
      grid-template-columns: 3.75fr 2.25fr 1.25fr;
      gap: 30px;
      margin: 45px 15px 30px;
    }

    .about__column {
      font-size: 14px;
    }

    .about__column--bio {
      font-size: 16px;
      line-height: 1.1;
    }

    .about__image {
      width: 100%;
      object-fit: cover;
    }

    /* Divider */
    .about__divider {
      width: 100%;
      height: 1px;
      background: #0000;
      margin: 6px 0;
    }

    /* DETAILS (Work, Education, Exhibitions – kompakter) */
    .about__column--details ul {
      list-style: none;
      padding: 0;
      line-height: 1.3;
      font-size: clamp(14px, 2vw, 18px);
    }

    .about__column--details li {
      display: flex;
      gap: 14px;
      margin: 0;
      align-items: center;
    }

    .year {
      flex: 0 0 115px;
      opacity: .9;
    }

    .role {
      flex: 1;
    }

    /* CONTACT like WORK */
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin: 0;
    }

    .contact-row .year {
      flex: 0 0 300px;
    }

    .contact-row .role {
      flex: 1;
    }

    /* ================================
      BLUR-UP
    ================================ */
    .blur-up {
      filter: blur(20px);
      transform: scale(1.04);
      transition: filter .8s, transform .8s, opacity .8s;
    }

    .blur-up.loaded {
      filter: blur(0);
      transform: scale(1);
    }
/* ================================
   MOBILE CLEAN FULLBLEED SLIDER
================================ */

/* ================================
   MOBILE: Intro bleibt gross + Projekte: 1 Slider + 2 Medien
================================ */
@media (max-width: 900px) {

  /* back-to-top weg */
  .back-to-top { display: none !important; }

  /* INTRO wieder gross / fullscreen */
  .project--intro {
    height: 100svh !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 18px !important;
  }
  .project--intro .intro__text {
    font-size: clamp(1.4rem, 6vw, 3rem) !important;
    line-height: 1.15 !important;
    max-width: 18ch;
    margin: 0 auto;
  }

  /* NUR echte Projekte anpassen (nicht Intro) */
  .project:not(.project--intro) {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Slider container fullbleed */
  .project:not(.project--intro) .project__slider {
    width: 100vw !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
  }

  /* alle Medien im Projekt: NICHT absolute (sonst überlappen) */
  .project:not(.project--intro) .project__image {
    position: static !important;
    inset: auto !important;
    width: 100vw !important;
    height: auto !important;
    display: none !important;         /* JS setzt 3x active */
    opacity: 1 !important;
    transition: none !important;
    object-fit: cover !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .project:not(.project--intro) .project__image.active {
    display: block !important;
  }

  /* keine "Rahmen" durch inline gaps */
  .project:not(.project--intro) img,
  .project:not(.project--intro) video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Counter: optional (du kannst ihn auch ausblenden) */
  .project__counter {
    position: sticky !important;
    top: 12px !important;
    left: 12px !important;
    width: fit-content;

    margin: 12px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;

    background: rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999 !important;
  }

  /* Overlay: mobile bottom sheet */
  .project__overlay {
    width: 100% !important;
    max-height: 70vh !important;

    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;

    transform: translateY(110%) !important;
    transition: transform .35s ease-out !important;

    padding: 18px !important;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;

    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    z-index: 99999 !important;
  }
  .project__overlay.active { transform: translateY(0) !important; }
}
/* ================================
  MOBILE FIXES: no counter, no back-to-top, fullbleed slider
================================ */

/* Counter überall aus */
.project__counter { display: none !important; }

/* ================================
  MOBILE (single source of truth)
  - Intro gross
  - Projekte fullbleed (bis zum Rand)
  - Counter aus
  - Back-to-top aus
  - Overlay als ausklappbares Bottom-Sheet
  - About mobile repair
================================ */

/* Counter überall aus */
.project__counter { display: none !important; }

@media (max-width: 900px) {

  /* Scroll snap auf Mobile aus (hast du früher schon gemacht, hier sauber) */
  html, body { scroll-snap-type: none !important; }

  /* back-to-top weg */
  .back-to-top { display: none !important; }

  /* INTRO bleibt gross / fullscreen */
  .project--intro {
    height: 100svh !important;
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 18px !important;
  }

  .project--intro .intro__text {
    font-size: clamp(1.4rem, 6vw, 3rem) !important;
    line-height: 1.15 !important;
    max-width: 18ch;
    margin: 0 auto;
    text-align: center;
  }

  /* NUR echte Projekte: normaler Flow (kein 100vh) */
  .project:not(.project--intro) {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important; /* wichtig: damit nichts abgeschnitten wird */
  }

  /* Slider fullbleed */
  .project:not(.project--intro) .project__slider {
    width: 100vw !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    cursor: pointer;
  }

  /* Medien dürfen nicht absolute sein (sonst überlappen) */
  .project:not(.project--intro) .project__image {
    position: static !important;
    inset: auto !important;
    width: 100vw !important;
    height: auto !important;

    display: none !important; /* JS setzt active für "oben" + "unten" */
    opacity: 1 !important;
    transition: none !important;
    object-fit: cover !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .project:not(.project--intro) .project__image.active {
    display: block !important;
  }

  /* keine Inline-Gaps / “Rahmen” */
  .project:not(.project--intro) img,
  .project:not(.project--intro) video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* OVERLAY als einklappbares Bottom-Sheet */
  .project__overlay {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;

    width: 100% !important;
    max-height: 70vh !important;

    background: #000 !important;
    color: #fff !important;

    transform: translateY(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;

    padding: 18px !important;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;

    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;

    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    transition: transform .28s ease, opacity .22s ease !important;
    z-index: 99999 !important;
  }

  .project__overlay.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .project__overlay p {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  /* ABOUT PAGE mobile repair */
  .about__content {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin: 70px 18px 30px !important;
  }

  .about__image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .about__column {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .about__column--bio {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }

  .about__column--details ul {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .about__column--details li {
    padding: 6px 0 !important;
  }

  .year {
    flex: 0 0 92px !important;
  }
}
