    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #080608;
      --black-rich: #0a070b;
      --off-white: #f0ece8;
      --red: #c0333d;
      --text-muted: #6b6570;
      --font-display: 'Anton', sans-serif;
      --font-body: 'Inter', sans-serif;
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
    }

    body {
      background: var(--black);
      color: var(--off-white);
      font-family: var(--font-body);
      line-height: 1.7;
      min-height: 100vh;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 3rem;
      height: 80px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 2.5rem;
      background: rgba(8,6,8,0.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transform: translateZ(0);
      border-bottom: 1px solid rgba(232,64,78,0.15);
    }
    .nav-links-left { display: flex; gap: 2.5rem; list-style: none; justify-content: flex-end; }
    .nav-links-right { display: flex; gap: 2.5rem; list-style: none; justify-content: flex-start; align-items: center; }
    .nav-links-left a, .nav-links-right a {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      text-decoration: none; transition: color 0.3s ease;
    }
    .nav-links-left a:hover, .nav-links-right a:hover { color: var(--off-white); }
    .nav-book {
      padding: 0.5rem 1.2rem;
      border: 1px solid rgba(232,64,78,0.5);
      color: var(--red) !important;
      transition: background 0.3s ease, border-color 0.3s ease !important;
    }
    .nav-book:hover { background: var(--red); color: var(--black) !important; border-color: var(--red) !important; }
    .nav-logo { display: flex; justify-content: center; }
    .nav-logo img { height: 62px; width: auto; transition: transform 0.3s var(--ease-spring); }
    .nav-logo img:hover { transform: scale(1.06); }
    .nav-menu-btn { display: none; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; padding: 4px; color: var(--off-white); transition: color 0.2s ease; }
    .nav-menu-btn:hover { color: var(--red); }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
      background: #0d0a0e; border-left: 1px solid rgba(232,64,78,0.15);
      z-index: 200; transition: right 0.4s var(--ease-smooth);
      display: flex; flex-direction: column; padding: 6rem 2.5rem 2.5rem; gap: 1rem;
    }
    .mobile-nav.open { right: 0; }
    .mobile-nav a { font-size: 1.1rem; font-weight: 300; color: var(--off-white); text-decoration: none; letter-spacing: 0.05em; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.3s ease; }
    .mobile-nav a:hover { color: var(--red); }
    .overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .overlay.active { opacity: 1; pointer-events: all; }

    /* ── HERO ── */
    .band-hero {
      position: relative;
      margin-top: 80px;
    }
    .band-hero-img {
      width: 100%; height: auto;
      display: block;
    }
    .band-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(8,6,8,0.1) 0%, rgba(8,6,8,0.5) 70%, rgba(8,6,8,1) 100%);
    }
    .band-hero-content {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      width: 100%; max-width: 1200px;
      padding: 0 2rem;
    }
    .band-hero-label {
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
    }
    .band-hero-label::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--red); }
    .band-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 5.5rem);
      line-height: 1;
      text-transform: uppercase;
    }

    /* ── CONTENT ── */
    main {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem 6rem;
    }

    .band-intro {
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--off-white);
      line-height: 1.8;
      margin-bottom: 3.5rem;
      border-left: 2px solid var(--red);
      padding-left: 1.5rem;
    }

    .band-section { margin-bottom: 3rem; contain: layout style; }

    .band-stats {
      padding-bottom: 3rem;
      margin-bottom: 3rem;
      border-bottom: 1px solid rgba(232,64,78,0.15);
    }

    h2 {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.75rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    h2::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--red); }

    p { color: #ccc9d0; font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.8; }

    /* Listen & Links aus dem WYSIWYG-Editor */
    .band-section ul,
    .band-section ol {
      color: #ccc9d0;
      font-size: 0.9rem;
      line-height: 1.8;
      margin: 0 0 0.75rem;
      padding-left: 1.4rem;
    }
    .band-section li { margin-bottom: 0.35rem; }
    .band-section li::marker { color: var(--red); }
    .band-section p a:not(.btn),
    .band-section li a:not(.btn) {
      color: var(--red);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .band-section p a:not(.btn):hover,
    .band-section li a:not(.btn):hover { color: var(--off-white); }

    .band-genres {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      margin-top: 1rem;
    }
    .band-genre-tag {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 0.35rem 0.85rem;
      border: 1px solid rgba(192,51,61,0.4); color: var(--red);
      border-radius: 2px;
    }

    .band-members-wrap { overflow: hidden; margin-top: 1.5rem; touch-action: pan-y; }
    .band-members {
      display: flex; gap: 1.25rem;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .band-member {
      flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
      min-width: 0;
      background: #0f0c10; border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px; overflow: hidden;
    }
    .band-member-header {
      display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem;
    }
    .band-member-header h2 { margin-bottom: 0; }
    .band-member-dots-wrap { display: flex; justify-content: center; margin-top: 1.75rem; }
    .band-member-dots { display: flex; gap: 6px; }
    .band-member-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.18); transition: background 0.3s ease, transform 0.3s ease;
      cursor: pointer;
    }
    .band-member-dot.active { background: var(--red); transform: scale(1.3); }
    .band-member-arrows { display: flex; gap: 0.4rem; }
    .band-member-arrow {
      background: none; border: none;
      cursor: pointer; color: var(--off-white); padding: 5px 7px;
      display: flex; align-items: center; transition: color 0.2s;
    }
    .band-member-arrow:hover { color: var(--red); }
    .slider-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.2); align-self: center; }
    @media (max-width: 900px) {
      .band-member { flex: 0 0 calc((100% - 1.25rem) / 2); }
    }
    @media (max-width: 540px) {
      .band-member { flex: 0 0 100%; }
    }
    .band-member-photo {
      position: relative; aspect-ratio: 3 / 4;
      background: linear-gradient(160deg, #1c1620 0%, #100d12 100%);
      overflow: hidden;
    }
    .band-member-photo img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: top center;
      transition: opacity 0.4s ease;
    }
    .member-img-hover { opacity: 0; }
    .band-member:hover .member-img-hover { opacity: 1; will-change: opacity; }
    .band-member:hover .member-img-default { opacity: 0; will-change: opacity; }
    .band-member-photo img ~ .band-member-initials { display: none; }
    .band-member-initials {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: var(--font-display); font-size: 4rem;
      color: rgba(255,255,255,0.07); letter-spacing: 0.05em;
      user-select: none; pointer-events: none;
    }
    .band-member-icon-badge {
      position: absolute; bottom: 0.8rem; right: 0.8rem;
      width: 36px; height: 36px; background: var(--red); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    /* Eigenes SVG-Icon (Rollen-Pflege): per Mask einfarbig weiß, wie die eingebauten Icons */
    .band-member-icon-badge .role-icon-custom {
      display: block;
      width: 18px; height: 18px;
      background: #fff;
      -webkit-mask: var(--icon-url) center / contain no-repeat;
      mask: var(--icon-url) center / contain no-repeat;
    }
    .band-member-info {
      padding: 1rem 1.1rem 1.1rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .band-member-name {
      font-size: 0.9rem; font-weight: 600; color: var(--off-white);
      margin-bottom: 0.25rem; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }
    .band-member-role {
      font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--red);
    }

    .band-cta {
      margin-top: 3.5rem; padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    }
    .band-cta p { margin: 0; font-size: 0.85rem; }
    .btn {
      display: inline-block; font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      text-decoration: none; padding: 0.75rem 1.75rem;
      transition: all 0.3s ease; white-space: nowrap;
    }
    .btn-primary { background: var(--red); color: var(--off-white); }
    .btn-primary:hover { background: #a82a33; }
    .btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--off-white); }
    .btn-outline:hover { border-color: var(--off-white); }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(14px);
      transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0; transform: translateY(14px);
      transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
    }
    .reveal-left.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }

    /* Hero text entrance */
    .band-hero-label { opacity: 0; transform: translateY(8px); animation: heroFadeUp 0.6s 0.2s var(--ease-smooth) forwards; }
    .band-hero-title { opacity: 0; transform: translateY(8px); animation: heroFadeUp 0.6s 0.35s var(--ease-smooth) forwards; }
    @keyframes heroFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Member card hover */
    .band-member {
      transition: border-color 0.3s ease, transform 0.3s var(--ease-spring);
    }
    .band-member:hover { border-color: rgba(192,51,61,0.4); }

    /* Genre tag hover */
    .band-genre-tag {
      transition: background 0.25s ease, color 0.25s ease;
      cursor: default;
    }
    .band-genre-tag:hover { background: var(--red); color: var(--black); }

    /* ── FOOTER ── */
    footer {
      background: var(--black-rich);
      border-top: 1px solid rgba(232,64,78,0.1);
      padding: 3rem 0;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
    }
    .footer-logo img { height: 36px; filter: brightness(0.7); }
    .footer-copy { font-size: 0.75rem; color: var(--text-muted); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-decoration: none; transition: color 0.3s ease; }
    .footer-links a:hover { color: var(--red); }

    @media (max-width: 768px) {
      .nav-links-left, .nav-links-right { display: none; }
      nav { grid-template-columns: auto 1fr; padding: 0 1.25rem; gap: 0; height: 64px; }
      .nav-logo { justify-content: flex-start; }
      .nav-logo img { height: 44px; padding-top: 4px; }
      .nav-menu-btn { display: flex; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); }

      .band-hero { margin-top: 64px; }
      .band-hero-content {
        position: relative;
        bottom: auto; left: auto; transform: none;
        padding: 1.5rem 1.25rem 0;
      }

      .band-stats { grid-template-columns: repeat(3, 1fr); }
      .band-member-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .band-member-arrows { align-self: flex-end; }
      .band-member-initials { font-size: 3rem; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .band-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    }
