*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: #050308; overflow-x: hidden; }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .cv-hero {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 90px 24px 130px;
      background: linear-gradient(160deg, #050308 0%, #0c0418 50%, #080612 100%);
      overflow: hidden;
      text-align: center;
    }
    .cv-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }
    /* For mouse events on canvas */
    .cv-hero .cv-canvas { pointer-events: auto; }

    .cv-blob {
      position: absolute; border-radius: 50%;
      filter: blur(90px); pointer-events: none;
      animation: blobDrift 20s ease-in-out infinite alternate;
    }
    .cv-blob--1 { width: 520px; height: 520px; top: -160px; left: -130px; background: radial-gradient(circle, rgba(201,132,122,.12) 0%, transparent 70%); animation-duration: 22s; }
    .cv-blob--2 { width: 420px; height: 420px; bottom: -100px; right: -80px; background: radial-gradient(circle, rgba(155,137,196,.11) 0%, transparent 70%); animation-duration: 26s; animation-delay: -9s; }
    .cv-blob--3 { width: 280px; height: 280px; top: 38%; left: 58%; background: radial-gradient(circle, rgba(201,168,85,.07) 0%, transparent 70%); animation-duration: 17s; animation-delay: -4s; }
    @keyframes blobDrift {
      0%   { transform: translate(0,0) scale(1); }
      100% { transform: translate(45px, 35px) scale(1.1); }
    }

    .cv-hero__inner { position: relative; z-index: 1; max-width: 780px; }

    /* Logo orbit */
    .cv-logo-orbit {
      position: relative; width: 72px; height: 72px;
      margin: 0 auto 30px; perspective: 300px;
    }
    .cv-logo-orbit img {
      width: 72px; height: 72px; border-radius: 50%;
      object-fit: contain; position: relative; z-index: 2;
      box-shadow: 0 4px 30px rgba(201,168,85,.45), 0 0 0 3px rgba(255,255,255,.06);
    }
    .cv-ring {
      position: absolute; border-radius: 50%;
      top: 50%; left: 50%; transform-origin: center center; pointer-events: none;
    }
    .cv-ring--1 { width: 96px; height: 96px; margin: -48px 0 0 -48px; border: 1px solid rgba(201,132,122,.6); animation: cvOrbit 7s linear infinite; }
    .cv-ring--2 { width: 126px; height: 126px; margin: -63px 0 0 -63px; border: 1px solid rgba(201,168,85,.4); animation: cvOrbit 11s linear infinite reverse; }
    .cv-ring--3 { width: 158px; height: 158px; margin: -79px 0 0 -79px; border: 1px solid rgba(155,137,196,.22); animation: cvOrbit 18s linear infinite; animation-delay: -6s; }
    @keyframes cvOrbit {
      0%   { transform: rotateX(72deg) rotateZ(0deg); }
      100% { transform: rotateX(72deg) rotateZ(360deg); }
    }

    .cv-label {
      display: block; font-size: .69rem; letter-spacing: .25em; font-weight: 500;
      color: #C9A855; text-transform: uppercase; margin-bottom: 20px; opacity: .88;
    }
    .cv-title {
      font-family: var(--font-h);
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 500; font-style: italic;
      color: #fff; line-height: 1.15; margin-bottom: 8px;
      position: relative;
    }
    .cv-title em { font-style: normal; color: #C9A855; }
    .cv-title.glitching { animation: glitch 220ms steps(2) forwards; }
    @keyframes glitch {
      0%   { text-shadow: 2px 0 rgba(255,50,50,.75), -2px 0 rgba(50,50,255,.75); transform: translate(0,0); }
      25%  { text-shadow: -2px 0 rgba(255,50,50,.75), 2px 0 rgba(50,50,255,.75); transform: translate(2px,-1px); }
      50%  { text-shadow: 1px 0 rgba(255,50,50,.75), -1px 0 rgba(50,50,255,.75); transform: translate(-1px,1px); }
      75%  { text-shadow: -1px 0 rgba(255,50,50,.75), 1px 0 rgba(50,50,255,.75); transform: translate(1px,0); }
      100% { text-shadow: none; transform: translate(0,0); }
    }
    .cv-title-x {
      display: inline-block; font-style: normal;
      font-family: var(--font-b); font-size: .55em; font-weight: 300;
      color: rgba(255,255,255,.3); letter-spacing: .18em;
      margin: 0 12px; vertical-align: middle;
    }
    .cv-sub {
      font-size: .95rem; color: rgba(255,255,255,.48);
      line-height: 1.78; max-width: 540px; margin: 16px auto 38px;
    }
    .cv-chips {
      display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    }
    .cv-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(201,168,85,.28);
      border-radius: 999px; padding: 5px 15px;
      font-size: .77rem; color: rgba(255,255,255,.65); letter-spacing: .04em;
    }

    /* ══════════════════════════════════════
       IMAGE SECTION
    ══════════════════════════════════════ */
    .cv-image-section {
      background: #050308; padding: 0 24px 80px;
      display: flex; flex-direction: column; align-items: center;
      position: relative; z-index: 1;
    }
    .cv-image-wrap {
      position: relative; max-width: 560px; width: 100%; margin: 0 auto;
    }
    .cv-ink-splatter {
      position: absolute; inset: -30px;
      pointer-events: none; z-index: 0; opacity: .5;
    }
    .cv-card {
      position: relative; z-index: 1; border-radius: 14px; overflow: hidden;
      transform-style: preserve-3d;
      transition: transform .15s ease-out, box-shadow .15s ease-out;
      will-change: transform;
      box-shadow: 0 32px 90px rgba(0,0,0,.75), 0 0 0 1px rgba(201,168,85,.14), 0 0 70px rgba(201,168,85,.07);
      cursor: pointer;
    }
    .cv-card:hover {
      box-shadow: 0 44px 110px rgba(0,0,0,.85), 0 0 0 1px rgba(201,168,85,.38), 0 0 90px rgba(201,168,85,.2);
    }
    .cv-card img { display: block; width: 100%; height: auto; border-radius: 14px; }
    .cv-card__shimmer {
      position: absolute; inset: 0;
      background: linear-gradient(115deg, transparent 20%, rgba(201,168,85,.16) 50%, transparent 80%);
      transform: translateX(-100%); transition: none;
      pointer-events: none; border-radius: 14px;
    }
    .cv-card:hover .cv-card__shimmer {
      transform: translateX(100%); transition: transform .6s ease;
    }
    .cv-caption {
      margin-top: 30px; text-align: center;
      font-family: var(--font-h);
      font-size: clamp(1.1rem, 2.5vw, 1.45rem);
      font-style: italic; color: rgba(255,255,255,.65);
      letter-spacing: .02em; max-width: 520px;
    }
    .cv-caption em { font-style: normal; color: #C9A855; }

    /* Wave dark → cream */
    .cv-wave-cream {
      display: block; width: 100%; color: #FDFAF8;
      margin-top: -2px; background: #050308;
    }

    /* ══════════════════════════════════════
       CREAM SECTIONS
    ══════════════════════════════════════ */
    /* ══════════════════════════════════════
       DARK PREMIUM EDITORIAL SECTIONS
    ══════════════════════════════════════ */
    .cv-section {
      background: #0C0807;
      padding: 130px 40px;
      color: #F5EFE8;
      position: relative;
    }
    .cv-section--alt { background: #0F0B0A; }
    .cv-section__inner { max-width: 1280px; margin: 0 auto; position: relative; }

    /* Tiny metadata label (top-left, like editorial magazine) */
    .cv-section-label {
      display: inline-block;
      font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
      font-weight: 500; color: rgba(245,239,232,.4);
      margin-bottom: 60px; padding-left: 22px; position: relative;
    }
    .cv-section-label::before {
      content: ''; position: absolute; left: 0; top: 50%;
      width: 14px; height: 1px; background: #C9A855; opacity: .75;
    }

    /* Editorial section title — big italic display */
    .cv-section-title {
      font-family: var(--font-h);
      font-size: clamp(2.8rem, 7vw, 6.2rem);
      font-weight: 500; font-style: italic;
      color: #F5EFE8;
      letter-spacing: -.025em; line-height: .98;
      margin-bottom: 32px;
      max-width: 1080px;
    }
    .cv-section-title em { color: #C9A855; font-style: italic; font-weight: 400; }
    .cv-section-title .rose { color: #C9847A; font-style: italic; }

    .cv-section-intro {
      font-family: var(--font-b);
      font-size: clamp(1rem, 1.4vw, 1.18rem);
      color: rgba(245,239,232,.55);
      line-height: 1.7; max-width: 640px;
      margin: 0 0 90px; font-weight: 300;
    }

    /* Dot-grid overlay for premium depth */
    .cv-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(201,168,85,.055) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 40%, transparent 85%);
      -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 40%, transparent 85%);
      opacity: .7;
    }
    .cv-section__inner { z-index: 1; }

    /* Vertical section marker (right side) */
    .cv-vmark {
      position: absolute; right: 28px; top: 50%;
      transform: translateY(-50%) rotate(180deg);
      writing-mode: vertical-rl;
      font-size: .64rem; letter-spacing: .35em; text-transform: uppercase;
      color: rgba(245,239,232,.22); font-weight: 500;
      pointer-events: none;
    }

    /* ══════════════════════════════════════
       EDITORIAL DISPLAY LIST
       (Event items + Press-on points)
    ══════════════════════════════════════ */
    .cv-edlist { margin-top: 20px; }
    .cv-edrow {
      display: grid;
      grid-template-columns: 80px 1fr minmax(0, 320px);
      gap: 40px; align-items: baseline;
      padding: 38px 0;
      border-top: 1px solid rgba(245,239,232,.08);
      opacity: 0; transform: translateY(32px);
      transition: opacity .8s cubic-bezier(.22,.68,0,1.1), transform .8s cubic-bezier(.22,.68,0,1.1);
    }
    .cv-edrow:last-child { border-bottom: 1px solid rgba(245,239,232,.08); }
    .cv-edrow.is-visible { opacity: 1; transform: translateY(0); }
    .cv-edrow__num {
      font-family: var(--font-b);
      font-size: .72rem; letter-spacing: .28em; font-weight: 500;
      color: rgba(201,168,85,.65); padding-top: 18px;
    }
    .cv-edrow__word {
      font-family: var(--font-h); font-style: italic; font-weight: 500;
      font-size: clamp(2.6rem, 7.8vw, 6.4rem);
      color: #F5EFE8; line-height: .96; letter-spacing: -.025em;
      transition: color .35s ease, transform .45s cubic-bezier(.22,.68,0,1.15);
    }
    .cv-edrow:hover .cv-edrow__word { color: #C9A855; transform: translateX(10px); }
    .cv-edrow--accent .cv-edrow__word { color: #C9847A; }
    .cv-edrow--accent:hover .cv-edrow__word { color: #E0A79C; }
    .cv-edrow__caption {
      font-family: var(--font-b); font-size: .88rem; font-weight: 300;
      color: rgba(245,239,232,.48); line-height: 1.6;
      text-align: right; padding-top: 18px;
    }

    /* ══════════════════════════════════════
       BESUCHERINFOS — CINEMATIC DATE
    ══════════════════════════════════════ */
    .cv-visit {
      display: grid; grid-template-columns: 1.2fr .8fr;
      gap: 80px; align-items: start; margin-top: 30px;
    }
    .cv-visit__date {
      font-family: var(--font-h); font-weight: 500; font-style: italic;
      font-size: clamp(7rem, 20vw, 18rem);
      line-height: .82; letter-spacing: -.04em;
      color: #F5EFE8;
      opacity: 0; transform: translateY(40px);
      transition: opacity 1s cubic-bezier(.22,.68,0,1.1), transform 1s cubic-bezier(.22,.68,0,1.1);
    }
    .cv-visit__date.is-visible { opacity: 1; transform: none; }
    .cv-visit__date .cv-visit__slash { color: #C9A855; font-weight: 400; display: inline-block; transform: translateY(-.05em); padding: 0 .03em; }
    .cv-visit__monthyear {
      display: block; font-family: var(--font-b); font-style: normal;
      font-size: clamp(.82rem, 1.1vw, 1rem);
      letter-spacing: .5em; text-transform: uppercase;
      color: rgba(245,239,232,.55); font-weight: 400;
      margin-top: 24px; padding-left: 6px;
    }
    .cv-visit__side { padding-top: 32px; }
    .cv-visit__row {
      display: grid; grid-template-columns: 92px 1fr;
      gap: 20px; padding: 22px 0;
      border-top: 1px solid rgba(245,239,232,.09);
      opacity: 0; transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .cv-visit__row:last-child { border-bottom: 1px solid rgba(245,239,232,.09); }
    .cv-visit__row.is-visible { opacity: 1; transform: none; }
    .cv-visit__label {
      font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
      font-weight: 500; color: rgba(201,168,85,.7);
      padding-top: 4px;
    }
    .cv-visit__value {
      font-family: var(--font-h); font-style: italic; font-weight: 500;
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      color: #F5EFE8; line-height: 1.25;
    }
    .cv-visit__sub {
      display: block; font-family: var(--font-b); font-style: normal;
      font-size: .82rem; font-weight: 300;
      color: rgba(245,239,232,.45); line-height: 1.6;
      margin-top: 6px;
    }
    .cv-visit__sub a { color: #C9847A; text-decoration: none; border-bottom: 1px solid rgba(201,132,122,.4); padding-bottom: 1px; }
    .cv-visit__sub a:hover { color: #C9A855; border-color: #C9A855; }
    .cv-visit__insta {
      display: inline-flex; align-items: center; gap: 8px;
      color: #F5EFE8; text-decoration: none;
      font-family: var(--font-h); font-style: italic;
      font-size: clamp(1.1rem, 1.7vw, 1.5rem);
      transition: color .25s;
    }
    .cv-visit__insta:hover { color: #C9A855; }
    .cv-visit__insta svg { opacity: .75; }

    /* ── Event tag chips ── */
    .cv-tag-grid {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center; margin-top: 36px;
    }
    .cv-tag {
      display: inline-flex; align-items: center; gap: 7px;
      background: #fff;
      border: 1px solid rgba(201,132,122,.2);
      border-radius: 999px; padding: 8px 18px;
      font-size: .88rem; color: var(--text-2);
      box-shadow: 0 2px 8px rgba(44,34,32,.05);
      transition: border-color .2s, box-shadow .2s, transform .2s;
      opacity: 0; transform: translateY(16px);
      transition: opacity .4s ease, transform .4s ease, border-color .2s, box-shadow .2s;
    }
    .cv-tag.is-visible { opacity: 1; transform: translateY(0); }
    .cv-tag:hover {
      border-color: rgba(201,132,122,.5);
      box-shadow: 0 4px 16px rgba(201,132,122,.12);
      transform: translateY(-2px);
    }
    .cv-tag__dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--rose); flex-shrink: 0; opacity: .7;
    }

    /* ── Svenja vor Ort — 4 points ── */
    .cv-points-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px; margin-top: 44px;
    }
    .cv-point {
      background: #fff; border: 1px solid rgba(201,132,122,.15);
      border-radius: 18px; padding: 28px 20px;
      text-align: center;
      box-shadow: 0 2px 16px rgba(44,34,32,.06);
      opacity: 0; transform: translateY(28px);
      transition: opacity .5s ease, transform .5s ease, box-shadow .2s, border-color .2s;
    }
    .cv-point.is-visible { opacity: 1; transform: none; }
    .cv-point:hover {
      box-shadow: 0 8px 32px rgba(201,132,122,.15);
      border-color: rgba(201,132,122,.35);
      transform: translateY(-3px);
    }
    .cv-point__num {
      font-family: var(--font-h);
      font-size: 2.2rem; font-weight: 600; font-style: italic;
      color: rgba(201,132,122,.25); line-height: 1; margin-bottom: 10px;
    }
    .cv-point__title {
      font-family: var(--font-h);
      font-size: 1.05rem; font-weight: 600;
      color: var(--text-1); margin-bottom: 6px;
    }
    .cv-point__text {
      font-size: .84rem; color: var(--text-2); line-height: 1.6;
    }

    /* ── Ink divider ── */
    .cv-divider {
      display: flex; align-items: center; gap: 18px;
      margin: 64px 0;
    }
    .cv-divider::before, .cv-divider::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,132,122,.3), transparent);
    }
    .cv-divider__mark {
      font-family: var(--font-h); font-size: 1.2rem;
      color: rgba(201,132,122,.4); font-style: italic;
      white-space: nowrap;
    }

    /* ── Für wen (dark editorial cards) ── */
    .cv-fuer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0; margin-top: 40px;
      border-top: 1px solid rgba(245,239,232,.08);
    }
    .cv-fuer-card {
      padding: 40px 28px 38px;
      border-bottom: 1px solid rgba(245,239,232,.08);
      border-right: 1px solid rgba(245,239,232,.08);
      position: relative;
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease, background .3s;
    }
    .cv-fuer-card:nth-child(3n) { border-right: none; }
    .cv-fuer-card.is-visible { opacity: 1; transform: none; }
    .cv-fuer-card:hover { background: rgba(201,168,85,.04); }
    .cv-fuer-card__icon {
      font-size: 1.5rem; margin-bottom: 18px; display: block;
      filter: grayscale(.3);
    }
    .cv-fuer-card__title {
      font-family: var(--font-h); font-style: italic;
      font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500;
      color: #F5EFE8; margin-bottom: 10px; line-height: 1.15;
    }
    .cv-fuer-card__text { font-size: .88rem; color: rgba(245,239,232,.5); line-height: 1.65; font-weight: 300; }

    /* Haltedauer — editorial dark */
    .cv-dauer-row {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; margin-top: 60px;
      border-top: 1px solid rgba(245,239,232,.08);
      border-bottom: 1px solid rgba(245,239,232,.08);
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s ease .1s, transform .6s ease .1s;
    }
    .cv-dauer-row.is-visible { opacity: 1; transform: none; }
    .cv-dauer-item {
      padding: 40px 28px;
      border-right: 1px solid rgba(245,239,232,.08);
      position: relative;
    }
    .cv-dauer-item:last-child { border-right: none; }
    .cv-dauer-item__days {
      font-family: var(--font-h); font-style: italic; font-weight: 500;
      font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1;
      color: #C9A855; display: block; margin-bottom: 14px;
      letter-spacing: -.02em;
    }
    .cv-dauer-item__label {
      font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
      font-weight: 500; color: rgba(245,239,232,.55); display: block; margin-bottom: 14px;
    }
    .cv-dauer-item__text { font-size: .86rem; color: rgba(245,239,232,.45); line-height: 1.65; font-weight: 300; }

    /* ── Besucherinfos — elegant row list ── */
    .cv-info-list {
      margin-top: 44px;
      border: 1px solid rgba(201,132,122,.15);
      border-radius: 18px; overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 16px rgba(44,34,32,.06);
    }
    .cv-info-row {
      display: flex; align-items: flex-start; gap: 18px;
      padding: 22px 28px;
      border-bottom: 1px solid rgba(201,132,122,.1);
      opacity: 0; transform: translateX(-16px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .cv-info-row:last-child { border-bottom: none; }
    .cv-info-row.is-visible { opacity: 1; transform: none; }
    .cv-info-row__icon {
      font-size: 1.4rem; flex-shrink: 0; width: 36px;
      text-align: center; margin-top: 1px;
    }
    .cv-info-row__body { flex: 1; }
    .cv-info-row__label {
      font-size: .67rem; letter-spacing: .2em; text-transform: uppercase;
      font-weight: 500; color: var(--rose); display: block; margin-bottom: 4px;
    }
    .cv-info-row__value {
      font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
      color: var(--text-1); line-height: 1.25; margin-bottom: 3px;
    }
    .cv-info-row__sub { font-size: .85rem; color: var(--text-2); line-height: 1.6; }
    .cv-info-row__sub a { color: var(--rose); text-decoration: none; }
    .cv-info-row__sub a:hover { text-decoration: underline; }

    /* Donation strip */
    .cv-donation-strip {
      margin-top: 16px;
      background: linear-gradient(135deg, rgba(201,132,122,.08), rgba(201,168,85,.06));
      border: 1px solid rgba(201,132,122,.22);
      border-radius: 14px; padding: 18px 24px;
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(14px);
      transition: opacity .5s ease .25s, transform .5s ease .25s;
    }
    .cv-donation-strip.is-visible { opacity: 1; transform: none; }
    .cv-donation-strip__text { flex: 1; font-size: .88rem; color: var(--text-2); line-height: 1.6; }
    .cv-donation-strip__text strong { color: var(--text-1); font-weight: 500; }
    .cv-donation-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(201,132,122,.12); border: 1px solid rgba(201,132,122,.3);
      border-radius: 999px; padding: 6px 16px;
      font-size: .82rem; color: var(--text-1); font-weight: 500; white-space: nowrap;
    }

    /* ── Hinweis (dark editorial footnote) ── */
    .cv-hinweis {
      background: #0C0807;
      padding: 20px 40px 90px;
    }
    .cv-hinweis__inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: flex-start; gap: 18px;
      padding: 26px 0 0;
      border-top: 1px solid rgba(245,239,232,.08);
      opacity: 0; transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .cv-hinweis__inner.is-visible { opacity: 1; transform: none; }
    .cv-hinweis__icon {
      font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
      font-weight: 500; color: rgba(201,168,85,.65);
      flex-shrink: 0; min-width: 80px; padding-top: 3px;
    }
    .cv-hinweis__text { font-size: .88rem; color: rgba(245,239,232,.5); line-height: 1.75; font-weight: 300; max-width: 780px; }
    .cv-hinweis__text strong { color: #F5EFE8; font-weight: 500; }

    /* ── CTA hidden (merged into finale) ── */
    .cv-cta { display: none; }

    /* Book button — editorial arrow style */
    .btn-convention {
      display: inline-flex; align-items: center; gap: 18px;
      padding: 20px 40px 20px 0;
      background: none; border: none; border-bottom: 1px solid rgba(245,239,232,.25);
      color: #F5EFE8; cursor: pointer; text-decoration: none;
      font-family: var(--font-b); font-size: .8rem; font-weight: 500;
      letter-spacing: .28em; text-transform: uppercase;
      white-space: nowrap;
      transition: border-color .3s, color .3s, gap .35s cubic-bezier(.22,.68,0,1.2);
      position: relative;
    }
    .btn-convention:hover {
      color: #C9A855; border-color: #C9A855; gap: 28px;
    }
    .btn-convention__arrow {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(245,239,232,.25);
      flex-shrink: 0; transition: border-color .3s, background .3s;
    }
    .btn-convention:hover .btn-convention__arrow {
      border-color: #C9A855; background: rgba(201,168,85,.12);
    }

    /* ── Footer (dark) ── */
    .cv-footer {
      background: #0C0807; border-top: 1px solid rgba(245,239,232,.08);
      padding: 36px 40px; text-align: center;
      font-size: .78rem; color: rgba(245,239,232,.4); font-weight: 300;
      letter-spacing: .06em;
    }
    .cv-footer a { color: rgba(245,239,232,.7); text-decoration: none; transition: color .2s; }
    .cv-footer a:hover { color: #C9A855; }
    .cv-footer__sep { margin: 0 12px; opacity: .3; }

    /* ── Hero inner smooth transition for parallax ── */
    .cv-hero__inner { transition: transform .2s ease-out; }
    .cv-geo-wrap { transition: transform .3s ease-out; }

    /* ── Floating 3D geometric shapes in hero ── */
    .cv-geo-wrap {
      position: absolute; inset: 0; pointer-events: none;
      z-index: 0; overflow: hidden;
    }
    .cv-geo { position: absolute; pointer-events: none; }
    .cv-geo--d1 {
      width: 58px; height: 58px; top: 15%; left: 8%;
      clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
      background: rgba(201,168,85,.07);
      animation: cvGeoF1 18s ease-in-out infinite;
    }
    .cv-geo--d2 {
      width: 38px; height: 38px; top: 64%; left: 11%;
      clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
      background: rgba(155,137,196,.08);
      animation: cvGeoF2 24s ease-in-out infinite;
    }
    .cv-geo--d3 {
      width: 78px; height: 78px; top: 18%; right: 9%;
      clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
      background: rgba(201,132,122,.05);
      animation: cvGeoF3 21s ease-in-out infinite;
    }
    .cv-geo--d4 {
      width: 30px; height: 30px; top: 72%; right: 14%;
      clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
      background: rgba(201,168,85,.09);
      animation: cvGeoF2 15s ease-in-out infinite; animation-delay: -7s;
    }
    .cv-geo--tri {
      width: 48px; height: 48px; top: 42%; left: 4%;
      clip-path: polygon(50% 0%,100% 100%,0% 100%);
      background: rgba(201,132,122,.04);
      animation: cvGeoF3 28s ease-in-out infinite; animation-delay: -12s;
    }
    .cv-geo--ring1 {
      width: 108px; height: 108px; top: 10%; left: 74%;
      border-radius: 50%; background: transparent;
      border: 1px solid rgba(201,168,85,.07);
      animation: cvGeoSpin 30s linear infinite;
    }
    .cv-geo--ring2 {
      width: 68px; height: 68px; top: 72%; left: 76%;
      border-radius: 50%; background: transparent;
      border: 1px solid rgba(155,137,196,.09);
      animation: cvGeoSpin 20s linear infinite reverse;
    }
    .cv-geo--ring3 {
      width: 188px; height: 188px; top: 40%; left: 1%;
      border-radius: 50%; background: transparent;
      border: 1px solid rgba(201,132,122,.04);
      animation: cvGeoSpin 45s linear infinite;
    }
    @keyframes cvGeoF1 {
      0%,100% { transform: translateY(0) rotate(0deg); opacity: .55; }
      50%      { transform: translateY(-22px) rotate(180deg); opacity: 1; }
    }
    @keyframes cvGeoF2 {
      0%,100% { transform: translateY(0) translateX(0) rotate(0deg); }
      33%      { transform: translateY(-14px) translateX(9px) rotate(120deg); }
      66%      { transform: translateY(-7px) translateX(-7px) rotate(240deg); }
    }
    @keyframes cvGeoF3 {
      0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
      50%      { transform: translateY(-17px) rotate(180deg) scale(1.08); }
    }
    @keyframes cvGeoSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ══════════════════════════════════════
       ARTIST SECTION (dark)
    ══════════════════════════════════════ */
    .cv-artists {
      background: #050308;
      padding: 80px 24px 90px;
    }
    .cv-artists__inner { max-width: 960px; margin: 0 auto; }
    .cv-artists__eyebrow {
      display: block; text-align: center;
      font-size: .69rem; letter-spacing: .25em; text-transform: uppercase;
      font-weight: 500; color: #C9A855; margin-bottom: 14px; opacity: .88;
    }
    .cv-artists__title {
      font-family: var(--font-h);
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 500; font-style: italic;
      color: #fff; text-align: center; margin-bottom: 12px;
    }
    .cv-artists__sub {
      text-align: center; font-size: .9rem; color: rgba(255,255,255,.38);
      line-height: 1.75; max-width: 520px; margin: 0 auto 52px;
    }

    /* Scrolling ticker */
    .cv-ticker-wrap {
      overflow: hidden; margin-bottom: 52px;
      border-top: 1px solid rgba(201,168,85,.1);
      border-bottom: 1px solid rgba(201,168,85,.1);
      padding: 12px 0;
      -webkit-mask-image: linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%);
      mask-image: linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%);
    }
    .cv-ticker {
      display: flex; width: max-content;
      animation: cvTicker 36s linear infinite;
    }
    .cv-ticker:hover { animation-play-state: paused; }
    .cv-ticker-item {
      padding: 4px 24px;
      font-family: var(--font-h); font-style: italic;
      font-size: 1rem; color: rgba(255,255,255,.35);
      white-space: nowrap; align-self: center;
    }
    .cv-ticker-sep {
      color: rgba(201,168,85,.4); font-size: .65rem;
      align-self: center; flex-shrink: 0; padding: 0 2px;
    }
    @keyframes cvTicker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Artist grid */
    .cv-artist-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .cv-artist-card {
      --gx: 50%; --gy: 50%; --go: 0;
      position: relative; overflow: hidden;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 14px; padding: 22px 20px 18px;
      opacity: 0; transform: translateY(18px);
      transition: opacity .4s ease, transform .4s ease,
                  border-color .3s, background .3s;
    }
    .cv-artist-card.is-visible { opacity: 1; transform: none; }
    .cv-artist-card::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle at var(--gx) var(--gy), rgba(201,168,85,.16) 0%, transparent 65%);
      opacity: var(--go);
      transition: opacity .3s;
      border-radius: inherit;
    }
    .cv-artist-card:hover {
      border-color: rgba(201,168,85,.24);
      background: rgba(255,255,255,.055);
    }
    .cv-artist-card__name {
      font-family: var(--font-h);
      font-size: 1.05rem; font-weight: 500; font-style: italic;
      color: rgba(255,255,255,.82); line-height: 1.3;
      margin-bottom: 9px; position: relative; z-index: 1;
    }
    .cv-artist-card__rule {
      width: 26px; height: 1px; margin-bottom: 8px;
      background: linear-gradient(to right,rgba(201,168,85,.5),transparent);
      position: relative; z-index: 1;
    }
    .cv-artist-card__tag {
      font-size: .65rem; letter-spacing: .17em; text-transform: uppercase;
      font-weight: 500; color: rgba(201,168,85,.5);
      position: relative; z-index: 1;
    }

    /* ══════════════════════════════════════
       CONCERT LINEUP POSTER
    ══════════════════════════════════════ */
    .cv-lineup { margin-top: 52px; }
    .cv-lineup-item {
      display: flex; align-items: center; gap: 14px;
      padding: 8px 0; border-bottom: 1px solid rgba(201,132,122,.1);
      cursor: default; position: relative; overflow: hidden;
      opacity: 0; transform: translateX(-22px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .cv-lineup-item::after {
      content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, #C9A855, #C9847A, transparent);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s cubic-bezier(.22,.68,0,1.1);
    }
    .cv-lineup-item:hover::after { transform: scaleX(1); }
    .cv-lineup-item.is-visible { opacity: 1; transform: none; }
    .cv-lineup-item__name {
      font-family: var(--font-h); font-style: italic;
      color: var(--text-1); line-height: 1.05; flex: 1;
      transition: color .25s, transform .25s;
    }
    .cv-lineup-item:hover .cv-lineup-item__name { transform: translateX(4px); }
    .cv-lineup-item__tag {
      font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
      color: rgba(201,132,122,.36); font-weight: 500; flex-shrink: 0;
      font-family: var(--font-b);
    }
    .cv-li--xl .cv-lineup-item__name { font-size: clamp(2rem,5.2vw,4rem); }
    .cv-li--lg .cv-lineup-item__name { font-size: clamp(1.5rem,3.6vw,2.9rem); }
    .cv-li--md .cv-lineup-item__name { font-size: clamp(1.1rem,2.5vw,2.1rem); }
    .cv-li--sm .cv-lineup-item__name { font-size: clamp(.88rem,1.7vw,1.4rem); }
    .cv-li--gold .cv-lineup-item__name { color: #C9A855; }
    .cv-li--rose .cv-lineup-item__name { color: var(--rose); }
    .cv-li--dim  .cv-lineup-item__name { color: var(--text-2); }
    .cv-li--r { justify-content: flex-end; }
    .cv-li--r .cv-lineup-item__name { text-align: right; }
    .cv-li--r::after { transform-origin: right; }
    .cv-li--c { justify-content: center; }
    .cv-li--c .cv-lineup-item__name { text-align: center; }

    /* ══════════════════════════════════════
       BENTO GRID  (4 PRESS-ON PUNKTE)
    ══════════════════════════════════════ */
    .cv-bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
    .cv-bc {
      background: #fff; border: 1px solid rgba(201,132,122,.15);
      border-radius: 20px; padding: 24px 22px; position: relative; overflow: hidden;
      box-shadow: 0 2px 14px rgba(44,34,32,.06);
      opacity: 0; transform: translateY(22px);
      transition: opacity .5s ease, transform .5s ease, box-shadow .25s, border-color .25s;
    }
    .cv-bc.is-visible { opacity: 1; transform: translateY(0); }
    .cv-bc.is-visible:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,132,122,.14); border-color: rgba(201,132,122,.3); }
    .cv-bc--hero {
      grid-column: span 2; padding: 36px 30px;
      background: linear-gradient(135deg, #fff 0%, rgba(201,132,122,.05) 100%);
    }
    .cv-bc--hero::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, #C9A855, #C9847A 60%, transparent);
    }
    .cv-bc--wide { grid-column: span 2; }
    .cv-bc__n {
      font-family: var(--font-h); font-size: 4rem; font-weight: 600;
      font-style: italic; color: rgba(201,132,122,.1); line-height: 1;
      margin-bottom: 12px; display: block; transition: color .3s;
    }
    .cv-bc--hero .cv-bc__n { font-size: 5.5rem; }
    .cv-bc.is-visible:hover .cv-bc__n { color: rgba(201,132,122,.2); }
    .cv-bc__t { font-family: var(--font-h); font-size: 1.08rem; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
    .cv-bc--hero .cv-bc__t { font-size: 1.4rem; }
    .cv-bc__p { font-size: .86rem; color: var(--text-2); line-height: 1.65; }

    /* ══════════════════════════════════════
       INFO BENTO  (BESUCHERINFOS)
    ══════════════════════════════════════ */
    .cv-ibento { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
    .cv-ic {
      background: #fff; border: 1px solid rgba(201,132,122,.14);
      border-radius: 18px; padding: 24px 22px; position: relative; overflow: hidden;
      box-shadow: 0 2px 12px rgba(44,34,32,.05);
      opacity: 0; transform: translateY(16px);
      transition: opacity .5s ease, transform .5s ease, box-shadow .2s, border-color .2s;
    }
    .cv-ic.is-visible { opacity: 1; transform: translateY(0); }
    .cv-ic:hover { box-shadow: 0 8px 28px rgba(201,132,122,.11); border-color: rgba(201,132,122,.25); }
    .cv-ic--date {
      grid-row: span 2;
      background: linear-gradient(150deg, rgba(201,132,122,.05) 0%, rgba(201,168,85,.03) 100%);
      padding: 30px 26px; display: flex; flex-direction: column; justify-content: space-between;
    }
    .cv-ic--date::before {
      content: ''; position: absolute;
      top: 0; left: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, #C9A855, #C9847A);
      border-radius: 18px 0 0 18px;
    }
    .cv-ic--wide { grid-column: span 2; }
    .cv-ic__icon { font-size: 1.35rem; margin-bottom: 10px; display: block; }
    .cv-ic__label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--rose); display: block; margin-bottom: 6px; }
    .cv-ic__val { font-family: var(--font-h); color: var(--text-1); font-weight: 500; line-height: 1.2; margin-bottom: 3px; font-size: 1.05rem; }
    .cv-ic--date .cv-ic__val { font-size: clamp(1.6rem,3vw,2.5rem); font-style: italic; }
    .cv-ic__big { font-family: var(--font-h); font-size: clamp(1.7rem,3.2vw,2.6rem); font-style: italic; color: var(--text-1); line-height: 1; margin-bottom: 3px; display: block; }
    .cv-ic__sub { font-size: .82rem; color: var(--text-2); line-height: 1.65; }
    .cv-ic__sub a { color: var(--rose); text-decoration: none; }
    .cv-ic__sub a:hover { text-decoration: underline; }
    .cv-ic__weekday { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; color: rgba(201,168,85,.75); display: block; margin-top: 6px; }
    .cv-ic--contact { flex-direction: column; align-items: flex-start; }
    .cv-ic__insta {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-h); font-style: italic; font-size: clamp(1.1rem,2.4vw,1.6rem);
      color: var(--rose); text-decoration: none; font-weight: 500;
      transition: color .25s, letter-spacing .25s;
    }
    .cv-ic__insta:hover { color: #C9A855; letter-spacing: .02em; }
    .cv-ic__insta svg { flex-shrink: 0; opacity: .85; }

    /* ══════════════════════════════════════
       FINALE — dark editorial close
    ══════════════════════════════════════ */
    .cv-finale {
      background: #0C0807;
      padding: clamp(100px, 16vh, 160px) 40px clamp(80px, 12vh, 120px);
      position: relative; overflow: hidden;
    }
    /* dot grid texture */
    .cv-finale::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(201,168,85,.06) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
    }
    /* top gold rule */
    .cv-finale::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,85,.4) 30%, rgba(201,168,85,.4) 70%, transparent);
    }
    .cv-finale__inner {
      max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
    }

    /* the three big words */
    .cv-stmt-eyebrow {
      font-family: var(--font-b); font-size: .68rem; letter-spacing: .4em;
      text-transform: uppercase; font-weight: 500;
      color: rgba(201,168,85,.65); margin-bottom: 52px; display: block;
      opacity: 0; transform: translateY(14px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .cv-stmt-eyebrow.is-visible { opacity: 1; transform: none; }
    .cv-stmt-line {
      font-family: var(--font-h); font-style: italic; font-weight: 500;
      font-size: clamp(3.5rem, 12vw, 10rem);
      line-height: .92; letter-spacing: -.035em;
      display: block;
      opacity: 0; transform: translateY(52px);
      transition: opacity 1.1s cubic-bezier(.22,.68,0,1.15), transform 1.1s cubic-bezier(.22,.68,0,1.15);
    }
    .cv-stmt-line.is-visible { opacity: 1; transform: translateY(0); }
    .cv-stmt-line--1 { color: #F5EFE8; }
    .cv-stmt-line--2 { color: #C9847A; padding-left: 8vw; transition-delay: .18s; }
    .cv-stmt-line--3 { color: #C9A855; padding-left: 16vw; transition-delay: .36s; }

    /* divider between words and booking pitch */
    .cv-finale__rule {
      height: 1px; margin: 70px 0 64px;
      background: linear-gradient(to right, rgba(245,239,232,.12) 0%, rgba(201,168,85,.3) 45%, transparent 100%);
      opacity: 0; transform: scaleX(.2); transform-origin: left;
      transition: opacity .7s ease .5s, transform .9s cubic-bezier(.22,.68,0,1.1) .5s;
    }
    .cv-finale__rule.is-visible { opacity: 1; transform: scaleX(1); }

    /* booking pitch row */
    .cv-finale__pitch {
      display: grid; grid-template-columns: 1fr auto;
      gap: 48px; align-items: center;
      opacity: 0; transform: translateY(22px);
      transition: opacity .8s ease .7s, transform .8s ease .7s;
    }
    .cv-finale__pitch.is-visible { opacity: 1; transform: none; }
    .cv-finale__pitch-text {
      font-family: var(--font-b); font-size: clamp(.9rem, 1.2vw, 1.05rem);
      color: rgba(245,239,232,.55); line-height: 1.72; font-weight: 300;
      max-width: 560px;
    }
    .cv-finale__pitch-text strong { color: #F5EFE8; font-weight: 500; }

    /* ── Cursor follower ── */
    .cv-cursor {
      position: fixed; width: 22px; height: 22px; border-radius: 50%;
      background: rgba(201,168,85,.22); pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%); mix-blend-mode: screen;
      transition: opacity .3s;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .cv-section { padding: 100px 32px; }
      .cv-edrow { grid-template-columns: 60px 1fr minmax(0, 260px); gap: 24px; }
      .cv-visit { grid-template-columns: 1fr; gap: 40px; }
      .cv-vmark { display: none; }
    }
    @media (max-width: 768px) {
      .cv-finale { padding: 90px 24px 80px; }
      .cv-finale__pitch { grid-template-columns: 1fr; gap: 32px; }
      .cv-stmt-line--2 { padding-left: 4vw; }
      .cv-stmt-line--3 { padding-left: 8vw; }
      .cv-section { padding: 80px 24px; }
      .cv-section-title { font-size: clamp(2.2rem, 9vw, 3.8rem); }
      .cv-section-intro { margin-bottom: 60px; }
      .cv-edrow {
        grid-template-columns: 1fr; gap: 14px;
        padding: 30px 0;
      }
      .cv-edrow__num { padding-top: 0; }
      .cv-edrow__caption { text-align: left; padding-top: 4px; }
      .cv-edrow__word { font-size: clamp(2.4rem, 10vw, 4.4rem); }
      .cv-visit__date { font-size: clamp(6rem, 28vw, 13rem); }
      .cv-visit__row { grid-template-columns: 80px 1fr; gap: 14px; padding: 20px 0; }
      .cv-fuer-grid { grid-template-columns: repeat(2, 1fr); }
      .cv-fuer-card:nth-child(3n) { border-right: 1px solid rgba(245,239,232,.08); }
      .cv-fuer-card:nth-child(2n) { border-right: none; }
      .cv-dauer-row { grid-template-columns: 1fr; }
      .cv-dauer-item { border-right: none; border-bottom: 1px solid rgba(245,239,232,.08); }
      .cv-dauer-item:last-child { border-bottom: none; }
      .cv-geo--ring3, .cv-geo--tri { display: none; }
      .cv-statement { padding: 90px 24px 100px; }
      .cv-stmt-line--2 { padding-left: 0; }
      .cv-hinweis { padding: 20px 24px 70px; }
      .cv-cta { padding: 0 24px 90px; }
    }
    @media (max-width: 500px) {
      .cv-hero { padding: 80px 20px 110px; }
      .cv-chips { display: none; }
      .cv-cursor { display: none; }
      .cv-section { padding: 70px 22px; }
      .cv-fuer-grid { grid-template-columns: 1fr; }
      .cv-fuer-card { border-right: none !important; }
      .cv-artists { padding: 60px 20px 70px; }
      .cv-geo--d1, .cv-geo--d2, .cv-geo--d3, .cv-geo--d4 { display: none; }
      .cv-finale { padding: 70px 22px 70px; }
      .cv-stmt-line { font-size: clamp(2.8rem, 14vw, 5rem); }
      .cv-stmt-line--2 { padding-left: 0; }
      .cv-stmt-line--3 { padding-left: 0; }
      .cv-visit__row { grid-template-columns: 1fr; gap: 6px; }
      .cv-visit__label { padding-top: 0; }
    }