 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --bg-color: #fafafa;
      --text-color: #1a1a1a;
      --text-light: #666;
      --border-color: #e0e0e0;
      --font-heading: Georgia, 'Times New Roman', serif;
      --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    
    html { scroll-behavior: smooth; }
    
    body {
      min-height: 100vh;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-underline-offset: 0.18em;
    }

    a:focus-visible {
      outline: 2px solid currentColor;
      outline-offset: 4px;
    }

    img,
    picture,
    video {
        max-width: 100%;
        height: auto;
      }

    /* Container */
    .container {
      width: min(1100px, calc(100% - 3rem));
      margin: 0 auto;
    }
    
    /* Navigation */
    .site-nav {
      padding: 3rem 0 4rem;
    }
    
    .site-nav .container {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem 2rem;
    }
    
    .logo {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--text-color);
      text-decoration: none;
      margin-right: 1.5rem;
    }
    
    .nav-primary {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-left: auto;
    }
    
    .nav-primary a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    
    .nav-primary a:hover {
      color: var(--text-color);
    }
    
    .nav-divider {
      color: var(--border-color);
      font-size: 0.8rem;
    }
    
    /* Header */
   .site-header {
      padding: 0 0 5rem;
    }

    .site-header .container {
      display: block;
    }
    
    .header-text {
      max-width: 760px;
      font-family: var(--font-heading);
      font-size: 1.5rem;
      line-height: 1.65;
      color: var(--text-color);
      font-weight: 400;
      text-align: left;
      margin: 0;
    }

    /* Hero Image */
    .hero-image {
      max-width: 760px;
      margin: 0 0 3rem 0;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-caption {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: var(--text-light);
      text-align: right;
      line-height: 1.4;
    }

    /* Sections */
    section {
      padding: 0 0 5rem;
    }
    
    section h2 {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }
    
    /* Works List */
    .works-list {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    
    .work-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 1.5rem;
      align-items: baseline;
      text-decoration: none;
      color: inherit;
      transition: opacity 0.2s ease;
    }
    
    .work-item:hover {
      opacity: 0.7;
    }
    
    .work-year {
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: 400;
    }
    
    .work-info {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .work-title {
      font-family: var(--font-heading);
      font-size: 1.45rem;
      font-weight: 500;
    }
    
    .work-location {
      font-size: 0.85rem;
      color: var(--text-light);
    }
    
    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .bio h3 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }
    
    .bio p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--text-color);
    }
    
    .bio .website {
      margin-top: 0.75rem;
      font-size: 0.85rem;
    }
    
    .bio .website a {
      color: var(--text-light);
      text-decoration: none;
      border-bottom: 1px solid var(--border-color);
    }
    
    .bio .website a:hover {
      color: var(--text-color);
      border-bottom-color: var(--text-color);
    }
    
    /* Contact */
    .contact-line {
      font-size: 0.9rem;
      color: var(--text-light);
    }
    
    .contact-line a {
      color: var(--text-color);
      text-decoration: none;
      border-bottom: 1px solid var(--border-color);
    }
    
    .contact-line a:hover {
      border-bottom-color: var(--text-color);
    }
    
    /* Footer */
    .site-footer {
      padding: 3rem 0;
      border-top: 1px solid var(--border-color);
      margin-top: 2rem;
    }
    
    .site-footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .footer-copy {
      font-size: 0.75rem;
      color: var(--text-light);
    }
    
    .footer-links {
      display: flex;
      gap: 1.5rem;
    }
    
    .footer-links a {
      font-size: 0.75rem;
      color: var(--text-light);
      text-decoration: none;
    }
    
    .footer-links a:hover {
      color: var(--text-color);
    }
    
    /* Mobile */
    @media (max-width: 768px) {
      .site-nav .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      
      .nav-primary {
        gap: 0.75rem 1rem;
      }
      
      .nav-divider {
        display: none;
      }
      
      .header-text {
        font-size: 1.15rem;
      }
      
      .work-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
      }
      
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      
      .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .container {
        width: min(1100px, calc(100% - 2rem));
      }

      .site-nav {
        padding: 2rem 0 3rem;
      }

      section {
        padding: 0 0 4rem;
      }
    }

    @media (max-width: 420px) {
      body {
        font-size: 15px;
      }

      .header-text {
        font-size: 1.05rem;
      }

      .work-title {
        font-size: 1.3rem;
      }
    }

    /* Audio Page */
    .audio-page {
      padding: 4rem 0;
    }

    .audio-header {
      margin-bottom: 4rem;
    }

    .audio-header h1 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .audio-header p {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .audio-list {
      max-width: 760px;
    }

    .audio-item {
      padding: 2.5rem 0;
      border-top: 1px solid var(--border-color);
    }

    .audio-item:last-child {
      border-bottom: 1px solid var(--border-color);
    }

    .audio-item h2 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    /* Audio größer & touch-friendly */
    .audio-item audio {
      width: 100%;
      height: 48px;           /* größerer Player */
    }

    /* Mobile noch größer */
    @media (max-width: 768px) {
      .audio-item audio {
        height: 56px;
      }
    }
    /* Audio Navigation */
    .audio-nav {
      padding: 2rem 0 3rem;
    }

    .audio-nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .audio-home {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      text-decoration: none;
      color: var(--text-color);
    }

    .audio-lang a {
      font-size: 0.8rem;
      color: var(--text-light);
      text-decoration: none;
    }

    .audio-lang a:hover {
      color: var(--text-color);
    }
    .legal-page {
      padding: 4rem 0;
    }

    .legal-page h1 {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 2rem;
    }
    .legal-page h2 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: normal;
      text-transform: none;
      color: var(--text-color);
      margin-top: 2rem;
      margin-bottom: 0.75rem;
      padding-bottom: 0;
      border-bottom: none;
    }

    .legal-page p {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }