@font-face {
   font-family:'Coolvetica';
   font-style: normal;
   font-weight: 400;
   src: local('Coolvetica'), local('CoolveticaRg'),
    url('fonts/CoolveticaRg.woff') format('woff'),
    url('fonts/CoolveticaRg.woff2') format('woff2'); 
  }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #181818;
      --ink: #f5f5dc;
      --muted: #ADADA4;
      --accent: #ee7621;
      --line: #434343;
      --card-bg: #0D0D0D;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--ink);
        font-family: 'DM Mono', monospace;
        font-weight: 300;
        font-size: 13px;
        line-height: 1.7;
    }

    a {
      color: var(--muted)
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: black;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }
    
    nav .nav-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 32px;
      height: 56px; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { font-family: 'Coolvetica', serif; font-size: 18px; font-weight: 400; text-decoration: none; color: var(--ink); }
    .nav-back { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .nav-back:hover { color: var(--ink); }

    


    .site-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

    .project-hero { padding: 112px 0 64px; border-bottom: 1px solid var(--line); }
    .project-meta-top { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
    .project-num { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
    .project-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; background: #ede9e3; color: var(--muted); }
    
    .project-tag.studium {
        background: #1D3751; color: #C0D9FA;
    }

    .project-tag.privat  {
        background: #522D14; color: #FFCDAE;
    }

    .project-title { font-family: 'Coolvetica', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 24px; }
    .project-summary { font-size: 14px; color: #D1D0C0; line-height: 1.9; max-width: 600px; }
    .project-info-row { display: flex; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
    .info-item { display: flex; flex-direction: column; gap: 4px; }
    .info-label { font-size: 10px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
    .info-value { font-size: 12px; color: var(--ink); }

    .cover-image {
      position: relative;
      width: 100%; aspect-ratio: 16/7;
      overflow: hidden;
      background: linear-gradient(135deg, #e8e4de 0%, #d0c8be 100%);
      display: flex; align-items: center; justify-content: center;
      margin: 64px 0; position: relative; overflow: hidden;
    }
    .cover-image::after {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,0.025) 30px, rgba(0,0,0,0.025) 31px);
    }
    .cover-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
    .cover-placeholder { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }

    .airdrum {
      position: absolute;
      object-fit: cover;
      height: 100vw;
      top: -27vw;
    }

    .portraitcover {
      position: absolute;
      height: 60vw;
      object-fit: cover;
    }

    

    .project-content { padding: 0 0 30px; }
    .content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; margin-bottom: 64px; }
    .section-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .prose { font-size: 13px; color: #D1D0C0; line-height: 2.0; }
    .prose p + p { margin-top: 20px; }

    .sidebar-block + .sidebar-block { margin-top: 40px; }
    .sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .sidebar-list li { font-size: 12px; color: var(--muted); padding-left: 12px; position: relative; }
    .sidebar-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

    .gallery {
        margin-bottom: 50px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item {
      background: linear-gradient(135deg, #e8e4de 0%, #d8d0c8 100%);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .flower-recap {
        position: relative;
        top: 75px;
    }


    .garageband {
      position: absolute;
      width: 100vw;
      top: -2.5vw;
    }


    .gallery-item:first-child {
        grid-column: span 2;
        aspect-ratio: 16/7;
    }

    .gallery-item:last-child {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
    }

    .gallery-caption { font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }

    .gallery-item.ccvideo {
        aspect-ratio: 16/10.3;
    }

    .gallery-item.av-item {
        aspect-ratio: 16/8;
    }

    .gallery-item.webportrait {
        aspect-ratio: 16/10.3;
    }

    .gallery-item.portraitcode {
        aspect-ratio: 16/9.5;
    }

    .blspvideodiv {
      aspect-ratio: 16/8;
    }

    .blspvideo {
      position: absolute;
      width: 110%;
    }

    .gallery-item.bnbmockup {
      aspect-ratio: 4/2.5;
    }








     /* ── PROJECT NAV ── */
    .project-nav {
        display: grid;
        padding: 10px;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid var(--line);
        margin-bottom: 0;
    }

    .project-nav-item {
        text-decoration: none;
        color: var(--ink);
        transition: color 0.2s;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .project-nav-item:first-child {
        border-right: 1px solid var(--line);
        padding-right: 32px;
    }

    .project-nav-item:last-child  {
        padding-left: 32px;
        align-items: flex-end;
    }

    .project-nav-item:hover {
        color: var(--accent);
    }

    .nav-direction {
        font-size: 10px;
        color: var(--muted);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-title {
        font-family: 'Coolvetica', serif;
        font-size: 20px;
        font-weight: 400;
    }


    footer { border-top: 1px solid var(--line); padding: 24px 0; }
    footer .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; }
    footer p { font-size: 11px; color: var(--muted); }

    









    



    .booklet-link {
        text-decoration: underline;
        color: var(--ink);
    }

    .booklet-link:visited {
        color: (--ink);
    }

    /* ── SLIDER WRAPPER ── */
    .slider-section {
      width: 100%;
      padding: 0 0 0px;
    }

    .slider-title {
      font-family: 'Coolvetica', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 36px;
      color: var(--text);
    }
 
    /* ── STAGE ── */
    .slider-stage {
      position: relative;
      justify-content: center;
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--surface);
      border-radius: var(--radius);
      cursor: grab;
      user-select: none;
    }
    .slider-stage:active { cursor: grabbing; }
 
    /* ── SLIDES ── */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(60px);
      transition: opacity var(--transition), transform var(--transition);
      pointer-events: none;
    }
    .slide.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .slide.exit-left {
      opacity: 0;
      transform: translateX(-60px);
    }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* ── CONTROLS ── */
    .controls {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
    }
 
    .btn {
      width: 44px; height: 44px;
      border: 1px solid rgba(201,169,110,0.35);
      background: transparent;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, transform 0.18s;
      color: var(--accent);
      flex-shrink: 0;
    }
    .btn:hover {
      background: var(--accent-dim);
      border-color: var(--accent);
      transform: scale(1.06);
    }
    .btn:active { transform: scale(0.96); }
    .btn svg { width: 18px; height: 18px; }
 
    /* dots */
    .dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex: 1;
      z-index: 100;
    }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--muted);
      cursor: pointer;
      transition: background 0.25s, transform 0.25s, width 0.3s;
      border: none;
      padding: 0;
      flex-shrink: 0;
    }
    .dot.active {
      background: var(--accent);
      width: 22px;
      border-radius: 3px;
    }
 
    /* counter */
    .counter {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      font-weight: 300;
      margin-left: auto;
    }
    .counter span { color: var(--text); font-weight: 400; }


    @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    .project-hero > * { animation: fadeUp 0.7s ease both; }
    .project-hero > *:nth-child(2) { animation-delay: 0.1s; }
    .project-hero > *:nth-child(3) { animation-delay: 0.18s; }
    .project-hero > *:nth-child(4) { animation-delay: 0.26s; }

    @media (max-width: 768px) {
      .content-grid { grid-template-columns: 1fr; gap: 48px; }

      .gallery-grid { grid-template-columns: 1fr; gap: 8px; }

      .gallery-item:first-child {
        grid-column: span 1;
        aspect-ratio: 16/9;
      }

      .gallery-item:last-child {
        grid-column: span 1;
        aspect-ratio: 16/9;
      }

      .gallery-item.ccvideo {
        aspect-ratio: 16/10.3;
      }

      .flower-recap {
        top: 40px;
      }

      .project-nav { grid-template-columns: 1fr; }
      .project-nav-item:first-child { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; }
      .project-nav-item:last-child { padding-left: 0; align-items: flex-start; }

      .dots { display: none; }
      .counter { margin: auto; }
    }

    @media (max-width: 600px) {
      .magazine-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .magazine-meta { text-align: left; }
      .thumbs { display: none; }
    }