  @font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 100 900;
    src: url('/assets/fonts/Fraunces-italic-400.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 100 900;
    src: url('/assets/fonts/Fraunces-normal-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/Fraunces-normal-700.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300 700;
    src: url('/assets/fonts/SpaceGrotesk-normal-400.woff2') format('woff2');
  }

  :root {
    --bg: #FAF9F4;
    --ink: #16150F;
    --ink-dim: #6B6A5F;
    --lime: #A9C52C;
    --lime-deep: #6E8C00;
    --dark: #14170C;
    --line: rgba(22, 21, 15, 0.14);
    --serif: 'Fraunces', 'Baskerville', serif;
    --sans: 'Space Grotesk', 'Avenir Next', sans-serif;
    --mono: ui-monospace, 'SF Mono', Menlo, monospace;
    --headerH: 92px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  ::selection { background: var(--lime); color: var(--ink); }
  body {
    background: var(--bg); color: var(--ink);
    font-family: var(--sans); line-height: 1.65; font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  img { display: block; }

  /* ============ Header + Session-Leiste ============ */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 249, 244, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 56px; }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
  .logo-word { font-weight: 700; font-size: 17px; letter-spacing: 0.01em; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { color: var(--ink-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--ink); }
  .lang { border: 1px solid var(--line); border-radius: 99px; padding: 3px 12px; font-size: 12px; color: var(--ink-dim); }
  .lang b { color: var(--ink); font-weight: 600; }

  .session-bar {
    display: flex; align-items: center; gap: 18px;
    height: 36px; border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  }
  .tc { color: var(--ink); min-width: 96px; }
  .tc-label { color: var(--ink-dim); margin-right: 8px; }
  .wave-box { position: relative; flex: 1; height: 22px; }
  .wave-box svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  #wavePlayed { clip-path: inset(0 100% 0 0); }
  #playhead {
    position: absolute; top: -2px; bottom: -2px; width: 2px;
    background: var(--lime-deep); left: 0%;
  }
  .rec { display: flex; align-items: center; gap: 7px; color: var(--ink-dim); white-space: nowrap; }
  .rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #E03E1F; animation: blink 1.6s infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

  main { padding-top: var(--headerH); }

  /* ============ Hero ============ */
  .hero { position: relative; height: calc(100svh - var(--headerH)); min-height: 560px; overflow: hidden; }
  .hero picture { display: block; width: 100%; height: 100%; }
  .hero picture img, .hero > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); }
  .hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(200deg, rgba(20,23,12,0) 30%, rgba(20,23,12,0.72) 78%, rgba(20,23,12,0.9) 100%);
  }
  .hero-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 32px 52px; max-width: 1240px; margin: 0 auto; color: #F6F5EC; }
  .hero-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
  h1 { font-size: clamp(44px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.01em; font-weight: 400; }
  h1 .l1 { font-family: var(--serif); font-style: italic; font-weight: 400; display: block; }
  h1 .l2 { font-family: var(--serif); font-style: normal; font-weight: 700; letter-spacing: -0.015em; display: block; padding-left: clamp(20px, 4vw, 90px); }
  .hero-row { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .play-btn {
    width: 74px; height: 74px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--lime); color: #14170C; font-size: 26px;
    display: flex; align-items: center; justify-content: center;
    transition: transform .15s; position: relative; flex-shrink: 0;
  }
  .play-btn:hover { transform: scale(1.06); }
  .play-btn svg { width: 26px; height: 26px; }
  .play-meta { line-height: 1.4; }
  .play-meta b { display: block; font-size: 19px; letter-spacing: 0.02em; }
  .play-meta em.you { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.2em; }
  .play-meta span { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,245,236,0.72); }
  .hero-badge {
    position: absolute; right: 32px; bottom: 52px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(246,245,236,0.85);
  }
  .hero-badge i { color: var(--lime); font-style: normal; }

  /* ============ Trust-Leiste ============ */
  .proof { border-bottom: 1px solid var(--line); }
  .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .proof-item { padding: 30px 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
  .proof-item:first-child { border-left: none; padding-left: 0; }
  .proof-item > span { margin-top: auto; }
  .proof-viz { height: 20px; display: block; margin: 0 0 10px; color: var(--lime-deep); }
  .proof-item b { display: block; font-family: var(--serif); font-style: normal; font-weight: 600; font-size: 24px; letter-spacing: -0.01em; }
  .amz { position: relative; display: inline-block; }
  .proof-smile { position: absolute; left: 0; bottom: -10px; width: 100%; height: auto; display: block; }
  .proof-item b { margin-bottom: 12px; }
  .proof-item span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }

  /* ============ Track-Header ============ */
  section { padding: 110px 0 0; }
  .track { display: flex; align-items: baseline; gap: 22px; margin-bottom: 54px; }
  .track-ch { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--lime-deep); white-space: nowrap; }
  .track h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
  .track h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
  .track-line { flex: 1; height: 1px; background: var(--line); align-self: center; min-width: 40px; }

  /* ============ Leistungen: Spuren ============ */
  .lane { display: grid; grid-template-columns: 5fr 6fr; gap: 60px; align-items: center; padding: 40px 0; border-top: 1px solid var(--line); }
  .lane:last-child { border-bottom: 1px solid var(--line); }
  .lane-img { aspect-ratio: 4/3; overflow: hidden; }
  .lane-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
  .lane:hover .lane-img img { transform: scale(1.025); }
  .lane.flip .lane-img { order: 2; }
  .lane h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.01em; }
  .lane .lane-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime-deep); margin: 6px 0 20px; }
  .lane ul { list-style: none; }
  .lane li { display: flex; gap: 18px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 15.5px; color: var(--ink-dim); }
  .lane li:first-child { border-top: none; }
  .lane li .idx { font-family: var(--mono); font-size: 11px; color: var(--lime-deep); padding-top: 4px; min-width: 22px; }
  .lane li b { color: var(--ink); font-weight: 500; }

  /* ============ Arbeiten: Featured + Tracklist ============ */
  .feat { text-decoration: none; color: inherit; display: block; }
  .feat-img { aspect-ratio: 21/9; overflow: hidden; }
  .feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
  .feat:hover .feat-img img { transform: scale(1.02); }
  .feat-body { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; padding: 30px 0 8px; align-items: start; }
  .feat-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime-deep); }
  .feat h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -0.015em; margin-top: 8px; line-height: 1.1; }
  .feat p { color: var(--ink-dim); margin-top: 14px; max-width: 560px; }
  .feat-side { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); line-height: 2.1; text-align: right; }
  .feat-side .role { color: var(--lime-deep); }
  .feat-side .go { color: var(--ink); font-weight: 500; }

  .tracklist { margin-top: 48px; border-top: 1px solid var(--line); }
  .trow {
    display: grid; grid-template-columns: 44px 150px 1fr auto; gap: 26px; align-items: center;
    padding: 18px 0; border-bottom: 1px solid var(--line);
    text-decoration: none; color: inherit; transition: background .2s;
  }
  .trow:hover { background: rgba(169, 197, 44, 0.07); }
  .trow-idx { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); }
  .trow-thumb { aspect-ratio: 16/9; overflow: hidden; }
  .trow-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .trow-main h4 { font-size: 18px; font-weight: 500; }
  .trow:hover .trow-main h4 { text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 4px; }
  .trow-main p { font-size: 13.5px; color: var(--ink-dim); margin-top: 3px; }
  .trow-main p b { color: var(--ink); font-weight: 700; }
  .trow-meta { text-align: right; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); line-height: 1.9; white-space: nowrap; }
  .trow-meta .role { color: var(--lime-deep); }
  .trow-meta div:last-child::after { content: " ↗"; opacity: 0.5; }
  .trow:hover .trow-meta div:last-child::after { opacity: 1; color: var(--lime-deep); }
  .contact-promise { margin-top: 22px; font-size: 15px; color: rgba(244,243,233,0.85); }

  /* ============ Award-Band ============ */
  .awards-band { background: var(--dark); padding: 52px 48px; margin-top: 84px; }
  .awards-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--lime); margin-bottom: 16px;
  }
  .awards-lead {
    font-family: var(--serif); font-style: normal; font-weight: 600;
    font-size: clamp(22px, 2.9vw, 34px); line-height: 1.22; color: #F4F3E9;
    letter-spacing: -0.01em; max-width: 820px; margin-bottom: 42px;
  }
  .awards-wall img.wl { height: 84px; opacity: 0.85; }
  .awards-wall img.ws { height: 50px; opacity: 0.55; }
  .awards-row { display: flex; flex-wrap: wrap; align-items: stretch; gap: 40px 56px; }
  .laurel { display: flex; align-items: center; gap: 12px; }
  .branch { width: 30px; height: 62px; color: rgba(244,243,233,0.5); flex-shrink: 0; }
  .branch.flip { transform: scaleX(-1); }
  .laurel-text { text-align: center; min-width: 150px; }
  .laurel-kicker { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); }
  .laurel-name { display: block; font-family: var(--serif); font-style: normal; font-size: 20px; font-weight: 600; line-height: 1.18; color: #F4F3E9; margin: 6px 0 4px; letter-spacing: 0.01em; }
  .laurel-year { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: rgba(244,243,233,0.6); }
  .awards-row img { height: 150px; width: auto; opacity: 0.95; }
  .awards-wall { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(244,243,233,0.14); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
  .awards-wall img { height: 64px; width: auto; opacity: 0.75; }
  .awards-note { margin-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,243,233,0.65); }
  @media (max-width: 880px) {
    .awards-band { padding: 36px 24px; }
    .awards-row { gap: 26px 30px; }
    .awards-row img { height: 100px; }
    .awards-wall { gap: 12px 16px; }
    .awards-wall img { height: 44px; }
  }


  /* Kommentar-Zitate im Featured-Case */
  .feat-quotes { margin-top: 16px; display: grid; gap: 9px; }
  .feat-quotes-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime-deep); }
  .feat-quotes div.fq { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
  .feat-quotes div.fq span { font-family: var(--mono); font-style: normal; font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-dim); }
  /* ============ Kundenzeile ============ */
  .clients { margin-top: 84px; }
  .clients-label { font-family: var(--mono); font-size: 40px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 50px; }
  .clients-label b { color: var(--lime-deep); font-weight: 700; }
  .clients-row { display: flex; flex-wrap: wrap; align-items: center; gap: 36px 56px; }
  .clients-row img { height: 52px; width: auto; max-width: 240px; object-fit: contain; filter: grayscale(1); opacity: 0.68; transition: filter .25s, opacity .25s; }
  .clients-row img:hover { filter: none; opacity: 1; }
  .clients-row img.inv { filter: grayscale(1) invert(0.75); }
  .clients-row img.inv:hover { filter: invert(0.9); opacity: 1; }
  .client-combo { display: flex; align-items: center; gap: 16px; }
  .client-combo img { height: 60px; width: auto; filter: grayscale(1); opacity: 0.68; transition: filter .25s, opacity .25s; }
  .client-combo img.combo-word { height: 28px; }
  .client-combo:hover img { filter: none; opacity: 1; }
  .client-text { font-size: 16px; font-weight: 500; color: var(--ink-dim); opacity: 0.75; letter-spacing: 0.04em; transition: color .25s, opacity .25s; }
  .client-text:hover { color: var(--ink); opacity: 1; }
  .client-more { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-dim); }

  /* ============ Studio ============ */
  .studio-full { position: relative; margin-top: 54px; height: 74vh; min-height: 420px; overflow: hidden; }
  .studio-full img { width: 100%; height: 100%; object-fit: cover; }
  .studio-full-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,23,12,0) 40%, rgba(20,23,12,0.65) 100%); }
  .studio-quote {
    position: absolute; left: 0; right: 0; bottom: 44px; text-align: center;
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: clamp(26px, 4vw, 48px); color: #F6F5EC; line-height: 1.25;
    padding: 0 24px;
  }
  .you { color: var(--lime); }
  .studio-caption {
    position: absolute; right: 20px; bottom: 14px;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(246,245,236,0.65);
  }
  .studio-below { display: grid; grid-template-columns: 6fr 5fr; gap: 64px; padding: 72px 0 0; align-items: start; }
  .studio-below p { color: var(--ink-dim); margin-top: 19px; line-height: 1.75; }
  .studio-below p b { color: var(--ink); font-weight: 500; }
  .studio-pics { display: grid; grid-template-columns: 1fr 1.3fr; gap: 20px; }
  .studio-pics img { width: 100%; object-fit: cover; }
  .studio-pics .tallpic { height: 340px; }
  .studio-pics .widepic { height: 340px; }
  .studio-person {
    display: flex; align-items: center; gap: 52px;
    margin-top: 80px; padding: 58px 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .studio-person img { width: 230px; height: 230px; border-radius: 50%; object-fit: cover; box-shadow: 0 20px 50px rgba(22,21,15,0.22); flex-shrink: 0; }
  .studio-person b { display: block; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 42px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; }
  .studio-person span { display: block; font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime-deep); margin-top: 10px; }
  .studio-person p { font-size: 18px; color: var(--ink-dim); margin-top: 16px; line-height: 1.7; max-width: 740px; }
  .studio-person p b { display: inline; font-family: var(--sans); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: 0; }
  @media (max-width: 880px) {
    .studio-person { flex-direction: column; align-items: flex-start; gap: 22px; padding: 34px 0; }
    .studio-person img { width: 156px; height: 156px; }
    .studio-person b { font-size: 27px; }
  }
  .contact-promise { display: flex; align-items: center; gap: 14px; }
  .promise-face { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,243,233,0.3); flex-shrink: 0; }

  /* ============ Kontakt (Dunkelblock bis Ende) ============ */
  .contact { margin-top: 120px; background: var(--dark); color: #F4F3E9; }
  .contact-inner { padding: 96px 32px 0; max-width: 1240px; margin: 0 auto; }
  .contact .track-ch { color: var(--lime); }
  .contact h2 { font-size: clamp(32px, 4.6vw, 60px); font-weight: 700; letter-spacing: -0.025em; color: #FCFBF1; line-height: 1.06; }
  .contact h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
  .contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; padding-bottom: 84px; }
  .contact-mail { display: inline-block; margin-top: 36px; font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.6vw, 46px); color: var(--lime); text-decoration: none; letter-spacing: -0.01em; }
  .contact-mail:hover { text-decoration: underline; text-underline-offset: 6px; }
  .contact-meta { margin-top: 24px; color: rgba(244,243,233,0.62); font-size: 15.5px; line-height: 2; }
  .contact-meta a { color: #F4F3E9; text-decoration: none; }
  .contact-coffee { text-align: center; }
  .contact-coffee img { width: 195px; height: 195px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(244,243,233,0.28); box-shadow: 0 18px 44px rgba(0,0,0,0.35); }
  .contact-coffee div { margin-top: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,243,233,0.7); }
  .foot { border-top: 1px solid rgba(244,243,233,0.16); padding: 26px 0 34px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(244,243,233,0.55); font-size: 13px; }
  .foot a { color: rgba(244,243,233,0.75); text-decoration: none; margin-left: 20px; }
  .foot a:hover { color: var(--lime); }

  /* ============ Motion ============ */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: none; }

  @media (max-width: 880px) {
    :root { --headerH: 88px; }
    .nav-links a:not(.lang) { display: none; }
    .tc-label, .rec span { display: none; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-item { padding: 20px 16px; }
    .proof-item:nth-child(odd) { border-left: none; padding-left: 0; }
    .lane, .feat-body, .studio-below, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .lane.flip .lane-img { order: 0; }
    .feat-side { text-align: left; }
    .trow { grid-template-columns: 30px 110px 1fr; }
    .trow-meta { display: block; grid-column: 3; text-align: left; white-space: normal; margin-top: 2px; line-height: 1.9; }
    section { padding: 72px 0 0; }
    .track { flex-wrap: wrap; gap: 10px 16px; }
    .studio-pics .tallpic, .studio-pics .widepic { height: 220px; }
    .clients-label { font-size: 21px; }
    .clients-row { gap: 26px 36px; }
    .clients-row img { height: 42px; }
    .client-combo img { height: 50px; }
    .client-combo img.combo-word { height: 22px; }
    .hero-badge { display: none; }
  }
  /* ============ Rechtsseiten ============ */
  .legal { max-width: 780px; margin: 0 auto; padding: 72px 28px 96px; }
  .legal h1 { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
  .legal h2 { font-size: 21px; font-weight: 600; margin: 38px 0 10px; }
  .legal p, .legal li { color: var(--ink-dim); margin-top: 10px; font-size: 15.5px; }
  .legal li { margin-left: 20px; }
  .legal a { color: var(--lime-deep); }
  .legal .back { display: inline-block; margin-bottom: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); text-decoration: none; }
  .legal .back:hover { color: var(--ink); }
